-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
47 lines (41 loc) · 1.45 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
group 'org.dbpedia.spotlight'
version '1.0.0'
buildscript {
ext {
springBootVersion = '2.0.2.RELEASE'
}
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("io.spring.gradle:dependency-management-plugin:0.5.2.RELEASE")
classpath("info.robotbrain.gradle.lombok:lombok-gradle:1.1")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'info.robotbrain.lombok'
configurations {
provided
}
repositories {
mavenCentral()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:2.0.2.RELEASE")
compile group: 'com.robbypond', name: 'boilerpipe', version: '1.2.3'
compile group: 'com.netflix.feign', name: 'feign-gson', version: '8.18.0'
compile group: 'io.github.openfeign.form', name:'feign-form', version: '2.0.6'
compile group: 'com.optimaize.languagedetector', name: 'language-detector', version: '0.6'
compile group: 'org.nlp2rdf', name:'nif', version: '0.4.1'
compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version: '2.1'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test'
}
jar {
baseName = 'dbpedia-spotlight-services'
version = '1.0.0'
}