-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (36 loc) · 908 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
37
38
39
40
41
42
43
44
45
plugins {
id 'java'
id 'org.openjfx.javafxplugin' version "0.0.7"
id 'edu.sc.seis.launch4j' version '2.4.4'
id 'edu.sc.seis.macAppBundle' version '2.3.0'
}
javafx {
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
launch4j {
mainClassName = 'miranda.Main'
}
macAppBundle {
mainClassName = 'miranda.Main'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation 'org.apache.commons:commons-lang3:3.6'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.2'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.4.2'
}
test {
testLogging {
showStandardStreams = true
}
}
apply plugin: 'application'
apply plugin: 'edu.sc.seis.launch4j'
apply plugin: 'edu.sc.seis.macAppBundle'
version '1.0'
sourceCompatibility = 1.8
mainClassName = 'miranda.Main'