Removes unnecessary build directives.
This commit is contained in:
parent
96d4c1aabe
commit
b6b9c5eb93
2 changed files with 2 additions and 22 deletions
|
@ -74,23 +74,3 @@ sqldelight {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// nixpacks looks in build/libs
|
||||
//tasks.register<Copy>("copyJarToRoot") {
|
||||
// from("./build/libs")
|
||||
// into("../build/libs")
|
||||
// include("*.jar")
|
||||
// dependsOn(":app:build")
|
||||
//}
|
||||
//
|
||||
//tasks.build {
|
||||
// finalizedBy("copyJarToRoot")
|
||||
//}
|
||||
//
|
||||
//tasks.build {
|
||||
// finalizedBy("shadowJar")
|
||||
//}
|
||||
//
|
||||
//tasks.jar {
|
||||
// finalizedBy("copyJarToRoot")
|
||||
//}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
providers = ["java"]
|
||||
|
||||
[phases.build]
|
||||
cmds = ["chmod +x gradlew", "./gradlew clean build shadowJar -x check -x test"]
|
||||
cmds = ["chmod +x gradlew", "./gradlew clean shadowJar -x check -x test"]
|
||||
|
||||
[start]
|
||||
cmd = "java $JAVA_OPTS -jar app/build/libs/app-all.jar"
|
||||
cmd = "java $JAVA_OPTS -jar app/build/libs/app-all.jar"
|
||||
|
|
Loading…
Reference in a new issue