added old executable-jar plugin prototype (excluded from build)

This commit is contained in:
2021-09-25 21:33:03 +02:00
parent 87d040d125
commit f45e25bcd3
12 changed files with 225 additions and 53 deletions

View File

@@ -1,5 +1,4 @@
plugins {
id 'maven-publish'
id 'java-gradle-plugin'
}
@@ -23,6 +22,11 @@ tasks.named("processResources") {
inputs.files(copyLauncher)
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
jar {
manifest {
attributes "version" : archiveVersion.get()
@@ -38,8 +42,8 @@ jar {
gradlePlugin {
plugins {
create("JlinkPlugin") {
id = "net.woggioni.gradle.executable.jar"
create("ExecutableJarPlugin") {
id = "net.woggioni.gradle.executable-jar"
implementationClass = "net.woggioni.gradle.executable.jar.ExecutableJarPlugin"
}
}