Skip to content

Commit

Permalink
Gradle 8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Jul 11, 2024
1 parent eb5b72c commit 9a80404
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 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.8-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ package com.netflix.nebula.lint.rule.dependency

import org.gradle.api.internal.artifacts.DefaultModuleVersionIdentifier
import org.gradle.api.internal.artifacts.DefaultResolvedDependency
import org.gradle.api.internal.artifacts.ResolvedConfigurationIdentifier
import spock.lang.Specification
import spock.lang.Unroll

Expand Down Expand Up @@ -256,7 +255,6 @@ class DependencyClassVisitorSpec extends Specification {
static DefaultResolvedDependency gav(String g, String a, String v) {
def mvid = new DefaultModuleVersionIdentifier(g, a, v)
def id = new ResolvedConfigurationIdentifier(mvid, 'compile')
new DefaultResolvedDependency(id, null)
new DefaultResolvedDependency("compile", mvid, null)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import spock.lang.Unroll
@Subject(UndeclaredDependencyRule)
class UndeclaredDependencyRuleSpec extends BaseIntegrationTestKitSpec {
private static final def sample = new Coordinate('sample', 'alpha', '1.0')
private static final def commonsLogging = new Coordinate('commons-logging', 'commons-logging', '1.3.2')
private static final def commonsLogging = new Coordinate('commons-logging', 'commons-logging', '1.3.3')
private static final def commonsLang = new Coordinate('commons-lang', 'commons-lang', '2.6')
private static final def lombok = new Coordinate('org.projectlombok', 'lombok', '1.18.30')
private static final def junit = new Coordinate('junit', 'junit', '4.12')
Expand Down

0 comments on commit 9a80404

Please sign in to comment.