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 00d8838
Show file tree
Hide file tree
Showing 2 changed files with 2 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.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)
}
}

0 comments on commit 00d8838

Please sign in to comment.