-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
38 lines (34 loc) · 1.15 KB
/
build.gradle.kts
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
plugins {
id("org.openstreetmap.josm") version "0.7.1"
id("org.openjfx.javafxplugin") version "0.0.9"
}
version = "v0.0.1"
// archivesBaseName = "PublicTransportEditor"
repositories {
jcenter()
}
javafx {
modules("javafx.controls", "javafx.graphics", "javafx.swing")
}
josm {
// debugport = ‹insertDebugPortNumber›
josmCompileVersion = "17084"
manifest {
description = "The description of my awesome plugin"
mainClass = "PublicTransportEditor.PublicTransportEditorPlugin"
minJosmVersion = "17084"
author = "tntchn"
canLoadAtRuntime = true
// iconPath = 'path/to/my/icon.svg'
// loadEarly = false
// loadPriority = 50
// pluginDependencies << 'apache-commons' << 'apache-http'
// website = new URL('https://example.org')
// oldVersionDownloadLink 123, 'v1.2.0', new URL('https://example.org/download/v1.2.0/MyAwesomePlugin.jar')
// oldVersionDownloadLink 42, 'v1.0.0', new URL('https://example.org/download/v1.0.0/MyAwesomePlugin.jar')
}
// i18n {
// bugReportEmail = 'me@example.com'
// copyrightHolder = 'John Doe'
// }
}