Fix a relocate statement
This commit is contained in:
parent
08f0a50a55
commit
892e01df21
|
@ -31,7 +31,7 @@ allprojects {
|
||||||
tasks {
|
tasks {
|
||||||
withType(com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar::class) {
|
withType(com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar::class) {
|
||||||
relocate("kotlin", "${rootProject.group}.kotlin")
|
relocate("kotlin", "${rootProject.group}.kotlin")
|
||||||
relocate("fr.username404.sharplapis", "${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.installer.InstallerKt"
|
||||||
|
|
Loading…
Reference in New Issue