forked from DukeNLIDB/NLIDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (38 loc) · 1.16 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.7.RELEASE'
classpath 'de.dynamicfiles.projects.gradle.plugins:javafx-gradle-plugin:8.8.2'
}
}
apply plugin: 'application'
apply plugin: 'idea'
apply plugin: 'org.springframework.boot'
apply plugin: 'javafx-gradle-plugin'
mainClassName = "com.dukenlidb.nlidb.main.Application"
bootRun {
systemProperties = System.properties
}
jar {
baseName = 'nlidb-service'
version = '0.1.0'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.16.18'
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'redis.clients:jedis:2.9.0'
compile 'com.fasterxml.jackson.core:jackson-core:2.9.1'
compile 'edu.stanford.nlp:stanford-corenlp:3.6.0'
compile 'edu.stanford.nlp:stanford-corenlp:3.6.0:models-english'
compile 'edu.mit:jwi:2.2.3'
compile 'org.postgresql:postgresql:42.1.4'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile 'junit:junit:4.12'
}