Skip to content

Commit

Permalink
Upgrade to gradle 8.3 and fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Monkopedia committed Sep 12, 2023
1 parent 5b4e16f commit b6bae27
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions csgs/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ application {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_1_8
}

javafx {
Expand All @@ -28,7 +28,7 @@ repositories {
}

tasks.register("fatJar", type = Jar::class) {
baseName = "${project.name}-all"
archiveBaseName = "${project.name}-all"
manifest {
attributes["Implementation-Title"] = "CSGS Script Executor"
attributes["Implementation-Version"] = version
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion kcsg-dsl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ group = "com.monkopedia"
description = "DSL wrappers and utilities for KCSG"

java {
sourceCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_1_8
withJavadocJar()
withSourcesJar()
}
Expand Down
2 changes: 1 addition & 1 deletion kcsg/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ group = "com.monkopedia"
description = "Kotlin port of the JCSG library"

java {
sourceCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_1_8
withJavadocJar()
withSourcesJar()
}
Expand Down
2 changes: 1 addition & 1 deletion samples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ application {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_1_8
}

javafx {
Expand Down

0 comments on commit b6bae27

Please sign in to comment.