Newer
Older
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
plugins {
id 'java'
}
plugins {
id 'application'
id "org.openjfx.javafxplugin" version "0.0.8"
}
javafx {
version = "11"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
version '1.0-SNAPSHOT'
sourceCompatibility = "11"
targetCompatibility = "11"
repositories {
mavenCentral()
maven {
url 'http://pageperso.lif.univ-mrs.fr/~bertrand.estellon/maven'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'org.hamcrest:hamcrest-library:1.3'
implementation 'org.info:painter:1.0'
}
mainClassName = "shape.App"
test {
useJUnitPlatform()
}