-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
52 lines (39 loc) · 1.33 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
buildscript {
ext {
springBootVersion = '2.0.0.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'idea'
group = ''
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'org.slf4j:slf4j-simple:1.7.25'
compile 'org.mongodb:mongodb-driver-sync:3.7.0'
compile 'org.mongodb:mongodb-driver:3.7.0'
compile 'org.mongodb:mongo-java-driver:3.7.0'
compile "com.sparkjava:spark-core:2.7.2" // add to build.gradle (for Java users)
// compile('org.springframework.boot:spring-boot-starter-webflux')
compile('com.ibm.watson.developer_cloud:java-sdk:5.1.1')
compile 'edu.stanford.nlp:stanford-corenlp:3.9.1'
compile 'edu.stanford.nlp:stanford-corenlp:3.9.1:models'
compile 'org.neo4j.driver:neo4j-java-driver:1.6.0-alpha02'
compile 'com.google.guava:guava:24.1-jre'
compile group: 'org.apache.opennlp', name: 'opennlp-tools', version: '1.8.4'
compile group: 'org.apache.commons', name: 'commons-text', version: '1.3'
// testCompile('org.springframework.boot:spring-boot-starter-test')
// testCompile('io.projectreactor:reactor-test')
}