-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (31 loc) · 927 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
35
36
37
38
39
40
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.9'
}
compileJava.options.encoding = 'UTF-8'
javafx {
version = "17"
modules = [ 'javafx.controls', 'javafx.fxml']
}
mainClassName = 'DiceChess'
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'junit:junit:4.13.1'
implementation 'junit:junit:4.13.1'
implementation 'org.junit.jupiter:junit-jupiter:5.7.0'
// testImplementation 'junit:junit:4.13'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.0'
implementation "org.deeplearning4j:deeplearning4j-core:1.0.0-beta6"
implementation "org.nd4j:nd4j-native-platform:1.0.0-beta6"
implementation 'org.jfree:jfreechart:1.5.3'
implementation 'com.opencsv:opencsv:5.5.2'
}
test {
useJUnitPlatform()
}