2023-08-07 13:39:39 +00:00
|
|
|
plugins {
|
2023-08-14 15:58:57 +00:00
|
|
|
id 'java'
|
|
|
|
id 'groovy'
|
2023-08-07 13:39:39 +00:00
|
|
|
id 'application'
|
|
|
|
id 'org.openjfx.javafxplugin' version '0.0.14'
|
2023-08-14 12:33:48 +00:00
|
|
|
id 'com.google.osdetector' version '1.7.3'
|
|
|
|
id 'org.beryx.jlink' version '2.26.0'
|
2023-08-07 13:39:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-14 12:33:48 +00:00
|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
|
|
|
|
2023-08-07 13:39:39 +00:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
mavenLocal()
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
}
|
|
|
|
|
2023-08-14 15:58:57 +00:00
|
|
|
application {
|
|
|
|
mainModule = 'biz.nellemann.mdexpl'
|
|
|
|
mainClass = 'biz.nellemann.mdexpl.App'
|
|
|
|
}
|
|
|
|
|
2023-08-07 13:39:39 +00:00
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2023-08-14 17:19:36 +00:00
|
|
|
toolchain {
|
|
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
}
|
2023-08-07 13:39:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This is to be able to build with a JDK not bundled with JavaFX */
|
|
|
|
javafx {
|
2023-08-14 12:33:48 +00:00
|
|
|
version = '17.0.8'
|
2023-08-07 13:39:39 +00:00
|
|
|
modules = [ 'javafx.controls', 'javafx.fxml' ]
|
|
|
|
// platform("linux-aarch64")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.slf4j:slf4j-api:2.0.7' // Logging API
|
|
|
|
runtimeOnly 'org.slf4j:slf4j-simple:2.0.7' // Logging API
|
|
|
|
|
2023-08-14 12:33:48 +00:00
|
|
|
implementation 'javax.inject:javax.inject:1'
|
|
|
|
implementation 'javax.annotation:javax.annotation-api:1.3.2'
|
2023-08-07 13:39:39 +00:00
|
|
|
implementation 'org.jmdns:jmdns:3.5.8'
|
|
|
|
|
|
|
|
testImplementation 'org.spockframework:spock-core:2.3-groovy-3.0'
|
|
|
|
testImplementation 'org.slf4j:slf4j-simple:2.0.7'
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
2023-08-14 12:33:48 +00:00
|
|
|
jlink {
|
|
|
|
|
|
|
|
forceMerge 'slf4j'
|
|
|
|
|
|
|
|
options = [
|
|
|
|
'--strip-debug',
|
|
|
|
'--compress', '2',
|
|
|
|
'--no-header-files',
|
|
|
|
'--no-man-pages'
|
|
|
|
]
|
|
|
|
|
|
|
|
launcher {
|
|
|
|
name = 'mDNS-Explorer'
|
|
|
|
noConsole = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only works with Java 14 (and later)
|
|
|
|
jpackage {
|
|
|
|
imageName = "mDNS-Explorer"
|
|
|
|
skipInstaller = true
|
|
|
|
installerName = "mDNS-Explorer-${osdetector.arch}"
|
|
|
|
installerOptions += [
|
|
|
|
'--vendor', 'Nellemann Data',
|
|
|
|
'--description', 'mDNS Explorer',
|
|
|
|
'--copyright', 'Mark Nellemann <mark.nellemann@gmail.com>',
|
|
|
|
'--app-version', version
|
|
|
|
]
|
|
|
|
|
|
|
|
// Requires: https://wixtoolset.org/ to create installer on Windows
|
|
|
|
if(osdetector.os == 'windows') {
|
|
|
|
installerType = 'msi'
|
|
|
|
skipInstaller = false
|
|
|
|
installerOptions += [
|
|
|
|
'--win-per-user-install',
|
|
|
|
'--win-dir-chooser',
|
|
|
|
'--win-menu',
|
|
|
|
// '--icon', 'src/main/resources/icon.ico'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Requires: xcode-select --install
|
|
|
|
if(osdetector.os == 'osx') {
|
|
|
|
installerType = 'dmg'
|
|
|
|
skipInstaller = false
|
|
|
|
installerOptions += [
|
|
|
|
//'--icon', 'src/main/resources/icon.icns'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
if(osdetector.os == 'linux') {
|
2023-08-14 17:35:20 +00:00
|
|
|
skipInstaller = false
|
2023-08-14 12:33:48 +00:00
|
|
|
installerOptions += [
|
|
|
|
'--linux-menu-group', 'Internet',
|
|
|
|
'--linux-shortcut',
|
2023-08-14 17:35:20 +00:00
|
|
|
'--linux-deb-maintainer', 'mark.nellemann@gmail.com',
|
|
|
|
'--linux-rpm-license-type', 'APACHE-20',
|
|
|
|
'--icon', 'src/main/resources/icon.png',
|
2023-08-14 12:33:48 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-08-14 15:58:57 +00:00
|
|
|
|
|
|
|
tasks.processResources {
|
|
|
|
filesMatching('**/configuration.properties') {
|
|
|
|
filter(ReplaceTokens, tokens: [copyright: '2023', version: System.env.BITBUCKET_BUILD_NUMBER ?: 'development' ])
|
|
|
|
}
|
|
|
|
}
|