Skip to content

Commit

Permalink
Merge pull request #10 from cdsap/update_tests_gradle_8_0_1
Browse files Browse the repository at this point in the history
update integration tests with Gradle 8.0.1
  • Loading branch information
cdsap authored Feb 22, 2023
2 parents ef7572e + d70741b commit 101f418
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ java {

dependencies {
implementation("com.jakewharton.picnic:picnic:0.6.0")
implementation("com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.11.1")
implementation("com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.12.3")
testImplementation("junit:junit:4.13.2")
}

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.5.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class InfoKotlinProcessPluginTest {
}
""".trimIndent()
)
listOf("7.5.1", "7.6").forEach {
listOf("7.5.1", "7.6", "8.0.1").forEach {
val build = GradleRunner.create()
.withProjectDir(testProjectDir.root)
.withArguments("compileKotlin", "--info")
Expand Down Expand Up @@ -55,7 +55,7 @@ class InfoKotlinProcessPluginTest {
""".trimIndent()
)
listOf("7.5.1", "7.6").forEach {
listOf("7.5.1", "7.6", "8.0.1").forEach {
val firstBuild = GradleRunner.create()
.withProjectDir(testProjectDir.root)
.withArguments("compileKotlin", "--configuration-cache")
Expand Down Expand Up @@ -110,7 +110,7 @@ class InfoKotlinProcessPluginTest {
""".trimIndent()
)
listOf("7.5.1", "7.6").forEach {
listOf("7.5.1", "7.6", "8.0.1").forEach {
val firstBuild = GradleRunner.create()
.withProjectDir(testProjectDir.root)
.withArguments("compileKotlin", "--configuration-cache")
Expand Down

0 comments on commit 101f418

Please sign in to comment.