Skip to content

Commit 216eb1d

Browse files
committed
Gradle 8.2-rc-1
1 parent 8ccd104 commit 216eb1d

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import org.gradle.util.GradleVersion
1717

1818
plugins {
19-
id 'com.netflix.nebula.plugin-plugin' version '20.8.0'
19+
id 'com.netflix.nebula.plugin-plugin' version '20.8.1'
2020
id 'com.netflix.nebula.optional-base' version '9.0.0'
2121
id "org.jetbrains.kotlin.jvm" version "1.7.20"
2222
id 'java-gradle-plugin'

gradle.lockfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ com.jcraft:jsch.agentproxy.svnkit-trilead-ssh2:0.0.7=integTestRuntimeClasspath,t
2222
com.jcraft:jsch.agentproxy.usocket-jna:0.0.7=integTestRuntimeClasspath,testRuntimeClasspath
2323
com.jcraft:jsch.agentproxy.usocket-nc:0.0.7=integTestRuntimeClasspath,testRuntimeClasspath
2424
com.jcraft:jzlib:1.1.2=integTestRuntimeClasspath,testRuntimeClasspath
25-
com.netflix.nebula:gradle-contacts-plugin:7.0.0=integTestRuntimeClasspath,testRuntimeClasspath
25+
com.netflix.nebula:gradle-contacts-plugin:7.0.1=integTestRuntimeClasspath,testRuntimeClasspath
2626
com.netflix.nebula:gradle-git-scm-plugin:6.0.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
27-
com.netflix.nebula:gradle-info-plugin:12.0.0=integTestRuntimeClasspath,testRuntimeClasspath
27+
com.netflix.nebula:gradle-info-plugin:12.1.4=integTestRuntimeClasspath,testRuntimeClasspath
2828
com.netflix.nebula:gradle-scm-plugin:7.0.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2929
com.netflix.nebula:nebula-dependencies-comparison:0.2.1=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
3030
com.netflix.nebula:nebula-gradle-interop:2.1.1=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
31-
com.netflix.nebula:nebula-project-plugin:10.1.2=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
32-
com.netflix.nebula:nebula-publishing-plugin:19.1.0=integTestRuntimeClasspath,testRuntimeClasspath
31+
com.netflix.nebula:nebula-project-plugin:10.1.4=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
32+
com.netflix.nebula:nebula-publishing-plugin:20.3.0=integTestRuntimeClasspath,testRuntimeClasspath
3333
com.netflix.nebula:nebula-test:10.5.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
3434
com.perforce:p4java:2015.2.1365273=integTestRuntimeClasspath,testRuntimeClasspath
3535
com.squareup.moshi:moshi:1.12.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
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.1.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-rc-1-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

src/test/groovy/nebula/plugin/dependencylock/DependencyLockPluginWithCoreSpec.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
885885
}
886886
}
887887
dependencies {
888-
classpath "com.netflix.nebula:nebula-project-plugin:7.0.9"
888+
classpath "com.netflix.nebula:nebula-project-plugin:10.1.4"
889889
}
890890
}
891891
plugins {
@@ -946,7 +946,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
946946

947947
where:
948948
facet | plugin | setParentSourceSet
949-
'integTest' | 'nebula.integtest' | false
949+
'integTest' | 'com.netflix.nebula.integtest' | false
950950
// 'smokeTest' | 'nebula.facet' | true
951951
// 'examples' | 'nebula.facet' | true
952952
}

src/test/groovy/nebula/plugin/dependencylock/tasks/MigrateToCoreLocksTaskSpec.groovy

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ class MigrateToCoreLocksTaskSpec extends AbstractDependencyLockPluginSpec {
566566
}
567567
}
568568
dependencies {
569-
classpath "com.netflix.nebula:nebula-project-plugin:7.0.9"
569+
classpath "com.netflix.nebula:nebula-project-plugin:10.1.4"
570570
}
571571
}
572572
plugins {
@@ -625,9 +625,9 @@ class MigrateToCoreLocksTaskSpec extends AbstractDependencyLockPluginSpec {
625625

626626
where:
627627
facet | plugin | setParentSourceSet
628-
'integTest' | 'nebula.integtest' | false
629-
'smokeTest' | 'nebula.facet' | true
630-
'examples' | 'nebula.facet' | true
628+
'integTest' | 'com.netflix.nebula.integtest' | false
629+
'smokeTest' | 'com.netflix.nebula.facet' | true
630+
'examples' | 'com.netflix.nebula.facet' | true
631631
}
632632

633633
@Unroll
@@ -657,7 +657,7 @@ class MigrateToCoreLocksTaskSpec extends AbstractDependencyLockPluginSpec {
657657
}
658658
}
659659
dependencies {
660-
classpath "com.netflix.nebula:nebula-project-plugin:7.0.9"
660+
classpath "com.netflix.nebula:nebula-project-plugin:10.1.4"
661661
}
662662
}
663663
plugins {
@@ -706,9 +706,9 @@ class MigrateToCoreLocksTaskSpec extends AbstractDependencyLockPluginSpec {
706706

707707
where:
708708
facet | plugin | setParentSourceSet
709-
'integTest' | 'nebula.integtest' | false
710-
'smokeTest' | 'nebula.facet' | true
711-
'examples' | 'nebula.facet' | true
709+
'integTest' | 'com.netflix.nebula.integtest' | false
710+
'smokeTest' | 'com.netflix.nebula.facet' | true
711+
'examples' | 'com.netflix.nebula.facet' | true
712712
}
713713

714714
def 'migration does not lock all configurations by default'() {

0 commit comments

Comments
 (0)