Skip to content

Commit

Permalink
Downgrade to Gradle 8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Jan 22, 2025
1 parent 70b75ec commit a2f0dee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion jib/src/test/kotlin/com/bakdata/gradle/JibPluginIT.kt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import java.nio.file.Path
internal class JibPluginIT {
private fun GradleRunner.withProjectPluginClassPath(): GradleRunner {
val classpath = System.getProperty("java.class.path")
return withPluginClasspath(classpath.split(":").map { File(it) })
return withPluginClasspath(classpath.split(File.pathSeparator).map { File(it) })
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion sonar/src/test/kotlin/com/bakdata/gradle/SonarPluginIT.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ internal class SonarPluginIT {

private fun GradleRunner.withProjectPluginClassPath(): GradleRunner {
val classpath = System.getProperty("java.class.path")
return withPluginClasspath(classpath.split(":").map { File(it) })
return withPluginClasspath(classpath.split(File.pathSeparator).map { File(it) })
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ internal class SonatypePluginIT {

private fun GradleRunner.withProjectPluginClassPath() : GradleRunner {
val classpath = System.getProperty("java.class.path")
return withPluginClasspath(classpath.split(":").map { File(it) })
return withPluginClasspath(classpath.split(File.pathSeparator).map { File(it) })
}

@Test
Expand Down

0 comments on commit a2f0dee

Please sign in to comment.