Creates a self-extracting install script.

This commit is contained in:
Markil3
2021-09-15 09:03:48 -06:00
parent 90f82cb05d
commit f7370ba08a
9 changed files with 210 additions and 9 deletions

View File

@@ -15,6 +15,13 @@ repositories {
}
}
configurations {
install {
canBeConsumed = true
canBeResolved = false
}
}
// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
@@ -46,3 +53,7 @@ targetCompatibility = JavaVersion.VERSION_16
// Define the main class for the application
mainClassName = defaultPackage + '.PlayerEnvironment'
//mainClassName = defaultPackage + '.localPlayer.Player'
artifacts {
install(distTar)
}