forked from RSPSi/RSPSi
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
70 lines (47 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
plugins {
id 'java'
id 'io.franzbecker.gradle-lombok' version '3.3.0'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.7'
id 'org.beryx.runtime' version '1.2.0' apply false
}
wrapper {
gradleVersion = '6.1'
}
group = 'RSPSi Editor'
version = '1.16.1'
allprojects {
repositories {
mavenCentral()
mavenLocal()
maven { url "http://repo.maven.apache.org/maven2" }
maven { url "https://repo.adobe.com/nexus/content/repositories/public/"}
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'io.franzbecker.gradle-lombok'
apply plugin: 'org.openjfx.javafxplugin'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
// https://mvnrepository.com/artifact/com.google.code.gson/gson
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
// https://mvnrepository.com/artifact/org.checkerframework/checker-qual
compile group: 'org.checkerframework', name: 'checker-qual', version: '2.9.0'
compile group: 'com.google.guava', name: 'guava', version: '28.0-jre'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
}
lombok { // optional: values below are the defaults
version = "1.18.12"
sha256 = "49381508ecb02b3c173368436ef71b24c0d4418ad260e6cc98becbcf4b345406"
}
compileJava {
options.fork = true
options.incremental = true
}
javafx {
version = "11.0.1"
modules = [ 'javafx.fxml', 'javafx.controls', 'javafx.media', 'javafx.swing']
}
}