Skip to content

Commit

Permalink
Resolve plugin directly from gradle repo
Browse files Browse the repository at this point in the history
- workaround to fix 91378
  • Loading branch information
breskeby committed Nov 8, 2022
1 parent f0683e1 commit 3a01bc9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,16 @@ repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
url 'https://repo.gradle.org/artifactory/libs/'
}
}

dependencies {
compile localGroovy()
compile "com.carrotsearch.randomizedtesting:junit4-ant:${props.getProperty('randomizedrunner')}"
compile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${props.getProperty('randomizedrunner')}"

compile 'com.netflix.nebula:gradle-extra-configurations-plugin:3.0.3'
compile 'com.netflix.nebula:nebula-publishing-plugin:4.4.4'
compile 'com.netflix.nebula:gradle-info-plugin:3.0.3'
Expand Down Expand Up @@ -185,8 +188,8 @@ if (project != rootProject) {
thirdPartyAudit.enabled = false

unitTest {
// The test task is configured to runtimeJava version, but build-tools doesn't
// have to support those.
// The test task is configured to runtimeJava version, but build-tools doesn't
// have to support those.
jvm = "${project.compilerJavaHome}/bin/java"
}

Expand Down

0 comments on commit 3a01bc9

Please sign in to comment.