Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Jun 23, 2023
1 parent d2a0726 commit bc27559
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
testImplementation 'com.netflix.nebula:nebula-project-plugin:latest.release'
testImplementation 'com.netflix.nebula:nebula-test:latest.release'
testImplementation gradleTestKit()
testImplementation('org.ajoberstar.grgit:grgit-core:4.1.0') {
testImplementation('org.ajoberstar.grgit:grgit-core:4.1.1') {
exclude group: 'org.codehaus.groovy', module: 'groovy'
}
testImplementation "com.github.tomakehurst:wiremock:2.17.0"
Expand Down
4 changes: 2 additions & 2 deletions gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ com.jcraft:jsch.agentproxy.usocket-jna:0.0.7=integTestRuntimeClasspath,testRunti
com.jcraft:jsch.agentproxy.usocket-nc:0.0.7=integTestRuntimeClasspath,testRuntimeClasspath
com.jcraft:jzlib:1.1.2=integTestRuntimeClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-contacts-plugin:7.0.1=integTestRuntimeClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-git-scm-plugin:6.0.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-git-scm-plugin:6.1.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-info-plugin:12.1.4=integTestRuntimeClasspath,testRuntimeClasspath
com.netflix.nebula:gradle-scm-plugin:7.0.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
com.netflix.nebula:nebula-dependencies-comparison:0.2.1=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
Expand All @@ -48,7 +48,7 @@ net.java.dev.jna:platform:3.4.0=integTestRuntimeClasspath,testRuntimeClasspath
net.minidev:accessors-smart:1.2=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
net.minidev:json-smart:2.3=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
net.sf.jopt-simple:jopt-simple:5.0.3=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.ajoberstar.grgit:grgit-core:4.1.0=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.ajoberstar.grgit:grgit-core:4.1.1=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.antlr:antlr-runtime:3.4=integTestRuntimeClasspath,testRuntimeClasspath
org.antlr:antlr4-runtime:4.5.1-1=integTestCompileClasspath,integTestRuntimeClasspath,testCompileClasspath,testRuntimeClasspath
org.apache.commons:commons-lang3:3.12.0=compileClasspath,integTestCompileClasspath,integTestRuntimeClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -485,9 +485,16 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
id 'com.netflix.nebula.dependency-lock'
id "com.netflix.nebula.clojure" version "13.0.0"
}
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'https://clojars.org/repo' }
}
}
repositories {
${mavenrepo.mavenRepositoryBlock}
mavenCentral()
maven { url 'https://clojars.org/repo' }
}
dependencies {
$configuration 'org.clojure:clojure:1.8.0'
Expand Down Expand Up @@ -559,7 +566,10 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
buildFile.createNewFile()
buildFile << """\
buildscript {
repositories { maven { url "https://plugins.gradle.org/m2/" } }
repositories {
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'https://clojars.org/repo' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
classpath "com.netflix.nebula:nebula-clojure-plugin:13.0.0"
Expand All @@ -569,6 +579,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
repositories {
${mavenrepo.mavenRepositoryBlock}
mavenCentral()
maven { url 'https://clojars.org/repo' }
}
dependencies {
implementation 'test.nebula:a:1.+'
Expand Down Expand Up @@ -686,6 +697,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
maven {
url "https://plugins.gradle.org/m2/"
}
maven { url 'https://clojars.org/repo' }
}
dependencies {
classpath "com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.14"
Expand Down Expand Up @@ -885,6 +897,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
maven {
url "https://plugins.gradle.org/m2/"
}
maven { url 'https://clojars.org/repo' }
}
dependencies {
classpath "com.netflix.nebula:nebula-project-plugin:10.1.4"
Expand All @@ -898,6 +911,7 @@ class DependencyLockPluginWithCoreSpec extends AbstractDependencyLockPluginSpec
repositories {
${mavenrepo.mavenRepositoryBlock}
mavenCentral()
maven { url 'https://clojars.org/repo' }
}
dependencies {
implementation 'test.nebula:a:1.+'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,10 @@ empty=annotationProcessor,testAnnotationProcessor

buildFile << """\
buildscript {
repositories { maven { url "https://plugins.gradle.org/m2/" } }
repositories {
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'https://clojars.org/repo' }
}
dependencies {
classpath "com.netflix.nebula:nebula-clojure-plugin:13.0.1"
}
Expand All @@ -619,6 +622,7 @@ empty=annotationProcessor,testAnnotationProcessor
repositories {
${mavenrepo.mavenRepositoryBlock}
mavenCentral()
maven { url 'https://clojars.org/repo' }
}
dependencies {
implementation 'org.clojure:clojure:1.8.0'
Expand Down

0 comments on commit bc27559

Please sign in to comment.