Skip to content

Commit

Permalink
Issue #116: fix syntax error in Gradle 8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cfig committed Mar 14, 2023
1 parent cb192ee commit 95ee9b6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ tasks {
}
val unpackTask by register<JavaExec>("unpack") {
group = GROUP_ANDROID
main = "cfig.packable.PackableLauncherKt"
mainClass.value("cfig.packable.PackableLauncherKt")
classpath = files("bbootimg/build/libs/bbootimg.jar")
this.maxHeapSize = "128m"
enableAssertions = true
Expand All @@ -44,7 +44,7 @@ tasks {

val packTask by register<JavaExec>("pack") {
group = GROUP_ANDROID
main = "cfig.packable.PackableLauncherKt"
mainClass.value("cfig.packable.PackableLauncherKt")
classpath = files("bbootimg/build/libs/bbootimg.jar")
this.maxHeapSize = "512m"
enableAssertions = true
Expand All @@ -54,7 +54,7 @@ tasks {

val flashTask by register("flash", JavaExec::class) {
group = GROUP_ANDROID
main = "cfig.packable.PackableLauncherKt"
mainClass.value("cfig.packable.PackableLauncherKt")
classpath = files("bbootimg/build/libs/bbootimg.jar")
this.maxHeapSize = "512m"
enableAssertions = true
Expand All @@ -65,7 +65,7 @@ tasks {

val pullTask by register("pull", JavaExec::class) {
group = GROUP_ANDROID
main = "cfig.packable.PackableLauncherKt"
mainClass.value("cfig.packable.PackableLauncherKt")
classpath = files("bbootimg/build/libs/bbootimg.jar")
this.maxHeapSize = "512m"
enableAssertions = true
Expand All @@ -75,7 +75,7 @@ tasks {

val clearTask by register("clear", JavaExec::class) {
group = GROUP_ANDROID
main = "cfig.packable.PackableLauncherKt"
mainClass.value("cfig.packable.PackableLauncherKt")
classpath = files("bbootimg/build/libs/bbootimg.jar")
this.maxHeapSize = "512m"
enableAssertions = true
Expand Down

0 comments on commit 95ee9b6

Please sign in to comment.