Add a package for the installer

This commit is contained in:
Username404-59 2021-04-08 11:45:30 +02:00
parent d4198589e4
commit 1c22266d7c
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
2 changed files with 3 additions and 1 deletions

View File

@ -35,7 +35,7 @@ allprojects {
relocate("${rootProject.group}.${rootProject.name.toLowerCase()}", "${rootProject.group}.${rootProject.name.toLowerCase()}.${this@allprojects.name}") relocate("${rootProject.group}.${rootProject.name.toLowerCase()}", "${rootProject.group}.${rootProject.name.toLowerCase()}.${this@allprojects.name}")
} }
withType(Jar::class) { withType(Jar::class) {
manifest.attributes["Main-Class"] = "$groupAndName.installer.InstallerKt" manifest.attributes["Main-Class"] = "$groupAndName.exec.InstallerKt"
from("$rootDir/LICENSE") from("$rootDir/LICENSE")
archiveBaseName.set("${rootProject.name}-${rootProject.version}") archiveBaseName.set("${rootProject.name}-${rootProject.version}")
} }

View File

@ -0,0 +1,2 @@
package fr.username404.snowygui.exec