Skip to content

Commit 6fe420a

Browse files
committed
Upgrade dependencies
1 parent d2a0726 commit 6fe420a

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-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: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,13 +481,21 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
481481
buildFile.delete()
482482
buildFile.createNewFile()
483483
buildFile << """\
484+
buildscript {
485+
repositories {
486+
maven { url "https://plugins.gradle.org/m2/" }
487+
maven { url 'https://clojars.org/repo' }
488+
}
489+
}
484490
plugins {
485491
id 'com.netflix.nebula.dependency-lock'
486492
id "com.netflix.nebula.clojure" version "13.0.0"
487493
}
494+
488495
repositories {
489496
${mavenrepo.mavenRepositoryBlock}
490497
mavenCentral()
498+
maven { url 'https://clojars.org/repo' }
491499
}
492500
dependencies {
493501
$configuration 'org.clojure:clojure:1.8.0'
@@ -559,7 +567,10 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
559567
buildFile.createNewFile()
560568
buildFile << """\
561569
buildscript {
562-
repositories { maven { url "https://plugins.gradle.org/m2/" } }
570+
repositories {
571+
maven { url "https://plugins.gradle.org/m2/" }
572+
maven { url 'https://clojars.org/repo' }
573+
}
563574
dependencies {
564575
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
565576
classpath "com.netflix.nebula:nebula-clojure-plugin:13.0.0"
@@ -569,6 +580,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
569580
repositories {
570581
${mavenrepo.mavenRepositoryBlock}
571582
mavenCentral()
583+
maven { url 'https://clojars.org/repo' }
572584
}
573585
dependencies {
574586
implementation 'test.nebula:a:1.+'
@@ -686,6 +698,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
686698
maven {
687699
url "https://plugins.gradle.org/m2/"
688700
}
701+
maven { url 'https://clojars.org/repo' }
689702
}
690703
dependencies {
691704
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.14"
@@ -885,6 +898,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
885898
maven {
886899
url "https://plugins.gradle.org/m2/"
887900
}
901+
maven { url 'https://clojars.org/repo' }
888902
}
889903
dependencies {
890904
classpath "com.netflix.nebula:nebula-project-plugin:10.1.4"
@@ -898,6 +912,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
898912
repositories {
899913
${mavenrepo.mavenRepositoryBlock}
900914
mavenCentral()
915+
maven { url 'https://clojars.org/repo' }
901916
}
902917
dependencies {
903918
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)