-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
29 lines (25 loc) · 932 Bytes
/
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
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
google()
}
dependencies {
implementation 'commons-io:commons-io:2.6'
implementation 'com.github.javaparser:javaparser-core:3.20.0'
implementation 'com.github.javaparser:javaparser-symbol-solver-core:3.20.0'
implementation 'org.codehaus.groovy:groovy-astbuilder:3.0.2'
implementation 'com.google.guava:guava:29.0-jre'
implementation 'org.apache.commons:commons-text:1.9'
implementation 'org.deeplearning4j:deeplearning4j-core:1.0.0-beta7'
implementation 'org.deeplearning4j:deeplearning4j-nlp:1.0.0-beta7'
implementation 'org.nd4j:nd4j-native-platform:1.0.0-beta7'
implementation 'org.apache.maven.shared:maven-invoker:3.0.1'
implementation 'org.apache.maven:maven-model:3.6.3'
implementation 'org.jdom:jdom2:2.0.6'
testImplementation 'junit:junit:4.12'
}