-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (28 loc) · 930 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
30
31
32
33
34
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.10'
id 'java'
}
group 'com.shehab'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
String dl4j = "1.0.0-M1"
dependencies {
implementation "org.deeplearning4j:deeplearning4j-core:$dl4j"
implementation "org.nd4j:nd4j-native:$dl4j"
implementation 'ch.qos.logback:logback-classic:1.2.3'
implementation "org.nd4j:nd4j-native-platform:$dl4j"
// implementation group: 'org.bytedeco', name: 'javacv-platform', version: '1.5.6'
implementation "org.jetbrains.kotlin:kotlin-stdlib"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
implementation group: 'org.deeplearning4j', name: 'deeplearning4j-ui', version: dl4j
}
task runMain(type: JavaExec) {
main = 'school.Main'
classpath = sourceSets.main.runtimeClasspath
}
test {
useJUnitPlatform()
}