Build doesn't build a fat jar, so this was still failing.
This commit is contained in:
parent
264c01facb
commit
25e871fb97
1 changed files with 9 additions and 0 deletions
|
@ -2,6 +2,7 @@ plugins {
|
||||||
id("buildsrc.convention.kotlin-jvm")
|
id("buildsrc.convention.kotlin-jvm")
|
||||||
alias(libs.plugins.tempolin)
|
alias(libs.plugins.tempolin)
|
||||||
id("app.cash.sqldelight") version "2.0.2"
|
id("app.cash.sqldelight") version "2.0.2"
|
||||||
|
id("com.github.johnrengelman.shadow") version "8.1.1"
|
||||||
application
|
application
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,3 +86,11 @@ tasks.register<Copy>("copyJarToRoot") {
|
||||||
tasks.build {
|
tasks.build {
|
||||||
finalizedBy("copyJarToRoot")
|
finalizedBy("copyJarToRoot")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//tasks.build {
|
||||||
|
// finalizedBy("jar")
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//tasks.jar {
|
||||||
|
// finalizedBy("copyJarToRoot")
|
||||||
|
//}
|
||||||
|
|
Loading…
Reference in a new issue