Skip to content

Commit bc27559

Browse files
committed
Upgrade dependencies
1 parent d2a0726 commit bc27559

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies {
5151
testImplementation 'com.netflix.nebula:nebula-project-plugin:latest.release'
5252
testImplementation 'com.netflix.nebula:nebula-test:latest.release'
5353
testImplementation gradleTestKit()
54-
testImplementation('org.ajoberstar.grgit:grgit-core:4.1.0') {
54+
testImplementation('org.ajoberstar.grgit:grgit-core:4.1.1') {
5555
exclude group: 'org.codehaus.groovy', module: 'groovy'
5656
}
5757
testImplementation "com.github.tomakehurst:wiremock:2.17.0"

gradle.lockfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ com.jcraft:jsch.agentproxy.usocket-jna:0.0.7=integTestRuntimeClasspath,testRunti
2323
com.jcraft:jsch.agentproxy.usocket-nc:0.0.7=integTestRuntimeClasspath,testRuntimeClasspath
2424
com.jcraft:jzlib:1.1.2=integTestRuntimeClasspath,testRuntimeClasspath
2525
com.netflix.nebula:gradle-contacts-plugin:7.0.1=integTestRuntimeClasspath,testRuntimeClasspath
26-
com.netflix.nebula:gradle-git-scm-plugin:6.0.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
26+
com.netflix.nebula:gradle-git-scm-plugin:6.1.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
2727
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
@@ -48,7 +48,7 @@ net.java.dev.jna:platform:3.4.0=integTestRuntimeClasspath,testRuntimeClasspath
4848
net.minidev:accessors-smart:1.2=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
4949
net.minidev:json-smart:2.3=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
5050
net.sf.jopt-simple:jopt-simple:5.0.3=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
51-
org.ajoberstar.grgit:grgit-core:4.1.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
51+
org.ajoberstar.grgit:grgit-core:4.1.1=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
5252
org.antlr:antlr-runtime:3.4=integTestRuntimeClasspath,testRuntimeClasspath
5353
org.antlr:antlr4-runtime:4.5.1-1=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
5454
org.apache.commons:commons-lang3:3.12.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath

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

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,9 +485,16 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
485485
id 'com.netflix.nebula.dependency-lock'
486486
id "com.netflix.nebula.clojure" version "13.0.0"
487487
}
488+
buildscript {
489+
repositories {
490+
maven { url "https://plugins.gradle.org/m2/" }
491+
maven { url 'https://clojars.org/repo' }
492+
}
493+
}
488494
repositories {
489495
${mavenrepo.mavenRepositoryBlock}
490496
mavenCentral()
497+
maven { url 'https://clojars.org/repo' }
491498
}
492499
dependencies {
493500
$configuration 'org.clojure:clojure:1.8.0'
@@ -559,7 +566,10 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
559566
buildFile.createNewFile()
560567
buildFile << """\
561568
buildscript {
562-
repositories { maven { url "https://plugins.gradle.org/m2/" } }
569+
repositories {
570+
maven { url "https://plugins.gradle.org/m2/" }
571+
maven { url 'https://clojars.org/repo' }
572+
}
563573
dependencies {
564574
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
565575
classpath "com.netflix.nebula:nebula-clojure-plugin:13.0.0"
@@ -569,6 +579,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
569579
repositories {
570580
${mavenrepo.mavenRepositoryBlock}
571581
mavenCentral()
582+
maven { url 'https://clojars.org/repo' }
572583
}
573584
dependencies {
574585
implementation 'test.nebula:a:1.+'
@@ -686,6 +697,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
686697
maven {
687698
url "https://plugins.gradle.org/m2/"
688699
}
700+
maven { url 'https://clojars.org/repo' }
689701
}
690702
dependencies {
691703
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.14"
@@ -885,6 +897,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
885897
maven {
886898
url "https://plugins.gradle.org/m2/"
887899
}
900+
maven { url 'https://clojars.org/repo' }
888901
}
889902
dependencies {
890903
classpath "com.netflix.nebula:nebula-project-plugin:10.1.4"
@@ -898,6 +911,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
898911
repositories {
899912
${mavenrepo.mavenRepositoryBlock}
900913
mavenCentral()
914+
maven { url 'https://clojars.org/repo' }
901915
}
902916
dependencies {
903917
implementation 'test.nebula:a:1.+'

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,10 @@ empty=annotationProcessor,testAnnotationProcessor
607607

608608
buildFile << """\
609609
buildscript {
610-
repositories { maven { url "https://plugins.gradle.org/m2/" } }
610+
repositories {
611+
maven { url "https://plugins.gradle.org/m2/" }
612+
maven { url 'https://clojars.org/repo' }
613+
}
611614
dependencies {
612615
classpath "com.netflix.nebula:nebula-clojure-plugin:13.0.1"
613616
}
@@ -619,6 +622,7 @@ empty=annotationProcessor,testAnnotationProcessor
619622
repositories {
620623
${mavenrepo.mavenRepositoryBlock}
621624
mavenCentral()
625+
maven { url 'https://clojars.org/repo' }
622626
}
623627
dependencies {
624628
implementation 'org.clojure:clojure:1.8.0'

0 commit comments

Comments
 (0)