-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (34 loc) · 963 Bytes
/
build.gradle
File metadata and controls
43 lines (34 loc) · 963 Bytes
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
System.setProperty("file.encoding", "UTF-8")
buildscript {
repositories {
jcenter()
gradlePluginPortal()
maven {
url "https://sandec.jfrog.io/artifactory/repo"
}
}
dependencies {
classpath "one.jpro:jpro-gradle-plugin:$JPRO_VERSION"
classpath "SANDEC:simplefx-plugin-gradle:$SIMPLEFX_VERSION"
classpath 'org.openjfx:javafx-plugin:0.1.0'
}
}
repositories {
jcenter()
maven {
url "https://sandec.jfrog.io/artifactory/repo"
}
}
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'de.sandec.simplefx'
apply plugin: 'jpro-gradle-plugin'
apply plugin: 'org.openjfx.javafxplugin'
targetCompatibility = "17"
sourceCompatibility = "17"
javafx {
version = '17.0.2'
modules = [ 'javafx.base', 'javafx.graphics', 'javafx.controls', 'javafx.fxml', 'javafx.media', 'javafx.web' ]
configuration = "api"
}
mainClassName = 'hello.world.Main'