-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
57 lines (42 loc) · 1.93 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
plugins {
id 'java'
}
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/edu.stanford.nlp/stanford-corenlp
compile group: 'edu.stanford.nlp', name: 'stanford-corenlp', version: '3.9.1'
compile group: 'edu.stanford.nlp', name: 'stanford-corenlp', version: '3.9.1', classifier: 'models'
compile group: 'org.nd4j', name: 'nd4j-native-platform', version: '0.8.0'
compile group: 'org.deeplearning4j', name: 'deeplearning4j-nlp', version: '0.8.0'
compile group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '0.8.0'
compile group: 'com.massisframework', name: 'j-text-utils', version: '0.3.4'
// https://mvnrepository.com/artifact/com.google.guava/guava-concurrent
compile group: 'com.google.guava', name: 'guava', version: '14.0'
// https://mvnrepository.com/artifact/log4j/log4j
compile group: 'log4j', name: 'log4j', version: '1.2.17'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-simple
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
// https://mvnrepository.com/artifact/net.sf.extjwnl/extjwnl
compile group: 'net.sf.extjwnl', name: 'extjwnl', version: '1.9.4'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-simple
testCompile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
// https://mvnrepository.com/artifact/com.sparkjava/spark-core
compile group: 'com.sparkjava', name: 'spark-core', version: '2.7.2'
}
task run (type: JavaExec){
description = "executing!!!"
main = 'helpers.FeaturizerServer'
classpath = sourceSets.main.runtimeClasspath
//args = ["$conll_text"]
}
task runSpExtorService (type: JavaExec){
description = "executing!!!"
main = 'helpers.HelperServer'
classpath = sourceSets.main.runtimeClasspath
//args = ["$conll_text"]
}