-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (29 loc) · 825 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
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.9'
}
plugins {
id 'java'
}
group 'net.bean,java.hello.word'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
javafx {
version = "16"
modules = [ 'javafx.controls', 'javafx.fxml']
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testImplementation 'org.assertj:assertj-core:3.11.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
implementation("com.google.guava:guava:30.1.1-jre")
implementation("org.controlsfx:controlsfx:8.40.14")
implementation("org.apache.logging.log4j:log4j-api:2.15.0")
implementation("org.apache.logging.log4j:log4j-core:2.15.0")
}
test {
useJUnitPlatform()
}
mainClassName = 'net.bean.java.gui.GeneticAlgorithmMain'