Skip to content

Commit

Permalink
Update dependencies and remove usage of jcenter (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajsutton authored Jan 12, 2022
1 parent c42bc05 commit bd75d21
Show file tree
Hide file tree
Showing 6 changed files with 165 additions and 116 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ commands:
- restore_cache:
name: Restore cached gradle dependencies
keys:
- deps-{{ checksum "build.gradle" }}-{{ .Branch }}-{{ .Revision }}
- deps-{{ checksum "build.gradle" }}
- deps-
- deps2-{{ checksum "build.gradle" }}-{{ .Branch }}-{{ .Revision }}
- deps2-{{ checksum "build.gradle" }}
- deps2-
capture_test_results:
description: "Capture test results"
steps:
Expand All @@ -37,7 +37,7 @@ jobs:
./gradlew --no-daemon --parallel build sourcesJar
- save_cache:
name: Caching gradle dependencies
key: deps-{{ checksum "build.gradle" }}-{{ .Branch }}-{{ .Revision }}
key: deps2-{{ checksum "build.gradle" }}-{{ .Branch }}-{{ .Revision }}
paths:
- .gradle
- ~/.gradle
Expand Down
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

plugins {
id 'java-library'
id 'com.diffplug.spotless' version '6.0.4'
id 'com.github.ben-manes.versions' version '0.39.0'
id 'com.diffplug.spotless' version '6.1.2'
id 'com.github.ben-manes.versions' version '0.41.0'
id 'com.github.hierynomus.license' version '0.16.1'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'net.ltgt.errorprone' version '2.0.2'
Expand All @@ -22,7 +22,6 @@ sourceCompatibility = '11'
targetCompatibility = '11'

repositories {
jcenter()
mavenCentral()
}

Expand Down Expand Up @@ -239,4 +238,4 @@ task printVersion() {
doFirst {
print "Specific version: ${specificVersion} Publish version: ${project.version}"
}
}
}
6 changes: 3 additions & 3 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencyManagement {
dependency 'com.google.guava:guava:31.0.1-jre'

dependency "io.netty:netty-all:4.1.36.Final"
dependency 'io.projectreactor:reactor-core:3.4.12'
dependency 'io.projectreactor:reactor-core:3.4.14'
dependency 'io.vertx:vertx-core:3.9.9'

dependency 'org.apache.logging.log4j:log4j-api:2.17.1'
Expand All @@ -19,9 +19,9 @@ dependencyManagement {

dependency 'org.bouncycastle:bcprov-jdk15on:1.70'

dependency 'org.assertj:assertj-core:3.21.0'
dependency 'org.assertj:assertj-core:3.22.0'
dependency 'org.web3j:core:5.0.0'
dependency 'org.mockito:mockito-core:4.1.0'
dependency 'org.mockito:mockito-core:4.2.0'

dependencySet(group: 'org.apache.tuweni', version: '1.3.0') {
entry 'bytes'
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
distributionSha256Sum=b586e04868a22fd817c8971330fec37e298f3242eb85c374181b12d637f80302
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit bd75d21

Please sign in to comment.