-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
45 lines (36 loc) · 944 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.12"
id 'application'
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenCentral()
flatDir {
dirs 'lib'
}
}
jar {
manifest {
attributes "Main-Class": "softwaredesign.AppLauncher"
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
application {
mainClassName = 'softwaredesign.AppLauncher'
}
dependencies {
implementation name: 'GPXParser'
implementation group: 'com.dlsc', name: 'GMapsFX', version: '11.0.6'
implementation 'com.sothawo:mapjfx:2.13.0'
implementation 'org.json:json:20211205'
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
}
javafx {
version = "17"
modules = ['javafx.controls', 'javafx.fxml', 'javafx.base', 'javafx.graphics', 'javafx.media', 'javafx.web']
}