-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
64 lines (56 loc) · 2.11 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
buildscript {
ext {
// springBootVersion = '1.5.10.RELEASE'
springBootVersion = '2.0.0.RELEASE'
}
repositories {
mavenCentral()
maven {
url "https://repo.spring.io/libs-snapshot-local"
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("org.springframework:springloaded:1.2.6.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'cz.melkamar.andruian'
version = '1.1.3'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "https://repo.spring.io/libs-local"
}
maven {
url "https://dl.bintray.com/andruian/releases"
}
}
idea {
module {
inheritOutputDirs = false
outputDir = file("$buildDir/classes/java/main/")
}
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:2.0.0.RELEASE")
compile("org.springframework.boot:spring-boot-starter-security:2.0.0.RELEASE")
compile("org.springframework.boot:spring-boot-starter-thymeleaf:2.0.0.RELEASE")
compile("org.springframework.boot:spring-boot-configuration-processor:2.0.0.RELEASE")
compile("org.springframework.boot:spring-boot-devtools:2.0.0.RELEASE")
// https://mvnrepository.com/artifact/org.apache.jena/apache-jena-libs
compile group: 'org.apache.jena', name: 'apache-jena-libs', version: '3.6.0' // TODO remove dependency - SparqlConnector
testCompile('org.springframework.boot:spring-boot-starter-test:2.0.0.RELEASE')
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.6'
compile("org.springframework.boot:spring-boot-starter-data-solr:2.0.0.RELEASE")
compile("org.springframework.boot:spring-boot-starter-data-mongodb:2.0.0.RELEASE")
// https://mvnrepository.com/artifact/org.json/json
compile group: 'org.json', name: 'json', version: '20180130'
compile('cz.melkamar.andruian:ddfparser:1.0.7')
}