Skip to content

Commit 2a944e8

Browse files
committed
Gradle 8.5-rc-1
1 parent 39f531a commit 2a944e8

21 files changed

+91
-118
lines changed

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-rc-1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

src/integTest/groovy/nebula/plugin/resolutionrules/AbstractAlignAndMigrateSpec.groovy

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ class AbstractAlignAndMigrateSpec extends AbstractAlignRulesSpec {
2727
implementation 'other:e:4.0.0'
2828
}
2929
""".stripIndent()
30-
31-
debug = true
3230
}
3331

3432
private void createTestDependencies() {

src/integTest/groovy/nebula/plugin/resolutionrules/AbstractAlignRulesSpec.groovy

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
package nebula.plugin.resolutionrules
22

3-
import nebula.test.IntegrationTestKitSpec
43

5-
abstract class AbstractAlignRulesSpec extends IntegrationTestKitSpec {
4+
abstract class AbstractAlignRulesSpec extends AbstractIntegrationTestKitSpec {
65
def rulesJsonFile
76

87
def setup() {
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package nebula.plugin.resolutionrules
2+
3+
import nebula.test.IntegrationTestKitSpec
4+
5+
abstract class AbstractIntegrationTestKitSpec extends IntegrationTestKitSpec {
6+
def setup() {
7+
// Enable configuration cache :)
8+
new File(projectDir, 'gradle.properties') << '''org.gradle.configuration-cache=true'''.stripIndent()
9+
}
10+
}

src/integTest/groovy/nebula/plugin/resolutionrules/AbstractRulesWithSpringBootPluginSpec.groovy

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
package nebula.plugin.resolutionrules
22

3-
import nebula.test.IntegrationTestKitSpec
43

5-
class AbstractRulesWithSpringBootPluginSpec extends IntegrationTestKitSpec {
4+
class AbstractRulesWithSpringBootPluginSpec extends AbstractIntegrationTestKitSpec {
65
File rulesJsonFile
76

87
def setup() {
98
rulesJsonFile = new File(projectDir, "rules.json")
10-
11-
debug = true
129
keepFiles = true
1310
}
1411

src/integTest/groovy/nebula/plugin/resolutionrules/AlignAndLockWithDowngradedTransitiveDependenciesSpec.groovy

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
package nebula.plugin.resolutionrules
22

3-
import nebula.test.IntegrationTestKitSpec
43
import nebula.test.dependencies.DependencyGraphBuilder
54
import nebula.test.dependencies.GradleDependencyGenerator
65
import nebula.test.dependencies.ModuleBuilder
76
import spock.lang.Ignore
87
import spock.lang.Unroll
98

10-
class AlignAndLockWithDowngradedTransitiveDependenciesSpec extends IntegrationTestKitSpec {
9+
class AlignAndLockWithDowngradedTransitiveDependenciesSpec extends AbstractIntegrationTestKitSpec {
1110
def rulesJsonFile
1211
static def STATIC_MAJOR_MINOR_PATCH_2_9_9 = "2.9.9"
1312
static def STATIC_MAJOR_MINOR_PATCH_MICRO_PATCH_2_9_9_3 = "2.9.9.3"
@@ -38,7 +37,6 @@ class AlignAndLockWithDowngradedTransitiveDependenciesSpec extends IntegrationTe
3837
""".stripIndent()
3938

4039
keepFiles = true
41-
debug = true
4240

4341
rulesJsonFile << jacksonAlignmentAndSubstitutionRule()
4442
}

src/integTest/groovy/nebula/plugin/resolutionrules/AlignAndSubstituteRulesSpec.groovy

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package nebula.plugin.resolutionrules
22

3-
import nebula.test.IntegrationTestKitSpec
43
import nebula.test.dependencies.DependencyGraphBuilder
54
import nebula.test.dependencies.GradleDependencyGenerator
65
import nebula.test.dependencies.ModuleBuilder
@@ -10,7 +9,7 @@ import nebula.test.dependencies.repositories.MavenRepo
109
import spock.lang.Ignore
1110
import spock.lang.Issue
1211

13-
class AlignAndSubstituteRulesSpec extends IntegrationTestKitSpec {
12+
class AlignAndSubstituteRulesSpec extends AbstractIntegrationTestKitSpec {
1413
File rulesJsonFile
1514
File mavenrepo
1615
String reason = "★ custom reason"
@@ -75,8 +74,6 @@ class AlignAndSubstituteRulesSpec extends IntegrationTestKitSpec {
7574
mavenrepo = new GradleDependencyGenerator(graph, "${projectDir}/testrepogen").generateTestMavenRepo()
7675

7776
buildFile << baseBuildGradleFile()
78-
79-
debug = true
8077
keepFiles = true
8178
}
8279

src/integTest/groovy/nebula/plugin/resolutionrules/AlignAndSubstituteRulesWithSpringBoot1xPluginSpec.groovy

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ class AlignAndSubstituteRulesWithSpringBoot1xPluginSpec extends AbstractRulesWit
1212
def setup() {
1313
System.setProperty('ignoreDeprecations', 'true')
1414
rulesJsonFile = new File(projectDir, "rules.json")
15-
16-
debug = true
1715
keepFiles = true
1816
}
1917

src/integTest/groovy/nebula/plugin/resolutionrules/AlignAndSubstituteRulesWithSpringBoot2xPluginAndManagedDepsSpec.groovy

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ class AlignAndSubstituteRulesWithSpringBoot2xPluginAndManagedDepsSpec extends Ab
88

99
def setup() {
1010
rulesJsonFile = new File(projectDir, "rules.json")
11-
12-
debug = true
1311
keepFiles = true
1412
System.setProperty('ignoreDeprecations', 'true')
1513
}

src/integTest/groovy/nebula/plugin/resolutionrules/AlignAndSubstituteRulesWithSpringBoot2xPluginWithoutManagedDepsSpec.groovy

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ class AlignAndSubstituteRulesWithSpringBoot2xPluginWithoutManagedDepsSpec extend
88

99
def setup() {
1010
rulesJsonFile = new File(projectDir, "rules.json")
11-
12-
debug = true
1311
keepFiles = true
1412
System.setProperty('ignoreDeprecations', 'true')
1513
}

0 commit comments

Comments
 (0)