forked from kdports/TextGameEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (40 loc) · 1.07 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
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.10'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
}
sourceSets {
main {
java {
srcDirs = ['src/main/java']
}
}
}
javafx {
version = "17"
modules = [ 'javafx.controls','javafx.fxml']
}
dependencies {
testImplementation "org.slf4j:slf4j-simple:1.6.1"
testImplementation "org.testfx:testfx-core:4.0.+"
testImplementation "org.testfx:testfx-junit5:4.0.16-alpha"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
// https://mvnrepository.com/artifact/org.apache.jena/jena-core
implementation ('org.apache.jena:jena-core:4.2.0') {
exclude group: 'commons-logging', module: 'commons-logging'
}
implementation('org.apache.jena:jena-arq:4.2.0') {
exclude group: 'commons-logging', module: 'commons-logging'
}
}
test {
useJUnitPlatform()
systemProperty 'testfx.robot', 'awt'
}