Skip to content

Commit

Permalink
SOLR-16562 / SOLR-16578: Upgrade caffeine to 3.1.4 and errorprone to …
Browse files Browse the repository at this point in the history
…2.18.0 (#1380)

Co-authored-by: Kevin Risden <krisden@apache.org>
Co-authored-by: Jan Høydahl <janhoy@users.noreply.github.com>
  • Loading branch information
3 people authored Feb 27, 2023
1 parent 67a654b commit 4d50e27
Show file tree
Hide file tree
Showing 32 changed files with 52 additions and 40 deletions.
12 changes: 11 additions & 1 deletion gradle/validation/error-prone.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ allprojects { prj ->
'-Xep:IdentityHashMapBoxing:ERROR',
// '-Xep:IgnoredPureGetter:OFF', // we don't use these annotations
// '-Xep:Immutable:OFF', // we don't use this annotation
// '-Xep:ImpossibleNullComparison:OFF', // we don't use protobuf
'-Xep:Incomparable:ERROR',
// '-Xep:IncompatibleArgumentType:OFF', // we don't use this annotation
// '-Xep:IncompatibleModifiers:OFF', // we don't use this annotation
Expand Down Expand Up @@ -167,6 +168,7 @@ allprojects { prj ->
'-Xep:JUnitParameterMethodNotFound:ERROR',
'-Xep:JavaxInjectOnAbstractMethod:ERROR',
'-Xep:JodaToSelf:ERROR',
// '-Xep:LenientFormatStringValidation:OFF' // we don't use these google libraries
'-Xep:LiteByteStringUtf8:ERROR',
'-Xep:LocalDateTemporalAmount:ERROR',
'-Xep:LockOnBoxedPrimitive:ERROR',
Expand Down Expand Up @@ -249,6 +251,7 @@ allprojects { prj ->

// On by Default : WARNING

// '-Xep:ASTHelpersSuggestions:OFF', // we don't use ASTHelpers
'-Xep:AlmostJavadoc:WARN',
// '-Xep:AlreadyChecked:OFF', // todo check if useful or comment why not
// '-Xep:AmbiguousMethodReference:OFF', // todo check if useful or comment why not
Expand Down Expand Up @@ -310,6 +313,7 @@ allprojects { prj ->
// '-Xep:ExtendingJUnitAssert:OFF', // we inherit from LuceneTestCase which extends Assert
'-Xep:ExtendsObject:WARN',
'-Xep:FallThrough:WARN',
'-Xep:Finalize:WARN', // catches actual finalizers that don't call super
// '-Xep:Finally:OFF', // todo check if useful or comment why not
'-Xep:FloatCast:WARN',
'-Xep:FloatingPointAssertionWithinEpsilon:WARN',
Expand All @@ -326,9 +330,11 @@ allprojects { prj ->
'-Xep:ImmutableEnumChecker:WARN',
'-Xep:InconsistentCapitalization:WARN',
'-Xep:InconsistentHashCode:WARN',
// '-Xep:IgnoredPureGetter:OFF', // we don't use these google libraries
'-Xep:IncorrectMainMethod:WARN',
'-Xep:IncrementInForLoopAndHeader:WARN',
'-Xep:InheritDoc:WARN',
// '-Xep:InjectOnBugCheckers:OFF', // we don't use this annotation
// '-Xep:InjectInvalidTargetingOnScopingAnnotation:OFF', // we don't use this annotation
'-Xep:InjectOnConstructorOfAbstractClass:WARN',
'-Xep:InjectScopeAnnotationOnInterfaceOrAbstractClass:WARN',
Expand Down Expand Up @@ -369,6 +375,7 @@ allprojects { prj ->
'-Xep:JodaPlusMinusLong:WARN',
'-Xep:JodaTimeConverterManager:WARN',
'-Xep:JodaWithDurationAddedLong:WARN',
// '-Xep:LabelledBreakTarget:OFF', // stylistic
'-Xep:LiteEnumValueOf:WARN',
'-Xep:LiteProtoToString:WARN',
'-Xep:LockNotBeforeTry:WARN',
Expand All @@ -377,7 +384,7 @@ allprojects { prj ->
'-Xep:LongFloatConversion:WARN',
'-Xep:LoopOverCharArray:WARN',
'-Xep:MalformedInlineTag:WARN',
'-Xep:MathAbsoluteRandom:WARN',
'-Xep:MathAbsoluteNegative:WARN',
// '-Xep:MemoizeConstantVisitorStateLookups:OFF', // we don't use this class
'-Xep:MissingCasesInEnumSwitch:WARN',
'-Xep:MissingFail:WARN',
Expand All @@ -396,6 +403,7 @@ allprojects { prj ->
'-Xep:NarrowingCompoundAssignment:WARN',
// '-Xep:NegativeCharLiteral:OFF', // todo check if useful or comment why not
'-Xep:NestedInstanceOfConditions:WARN',
'-Xep:NewFileSystem:WARN',
// '-Xep:NonAtomicVolatileUpdate:OFF', // todo check if useful or comment why not
// '-Xep:NonCanonicalType:OFF', // todo check if useful or comment why not
'-Xep:NonOverridingEquals:WARN',
Expand Down Expand Up @@ -465,10 +473,12 @@ allprojects { prj ->
'-Xep:UnnecessaryMethodInvocationMatcher:WARN',
'-Xep:UnnecessaryMethodReference:WARN',
// '-Xep:UnnecessaryParentheses:OFF', // style preference that we don't want to enforce
// '-Xep:UnqualifiedYield:OFF', // javac takes care
'-Xep:UnrecognisedJavadocTag:WARN',
'-Xep:UnsafeFinalization:WARN',
'-Xep:UnsafeReflectiveConstructionCast:WARN',
'-Xep:UnsynchronizedOverridesSynchronized:WARN',
'-Xep:UnusedLabel:WARN',
// '-Xep:UnusedMethod:OFF', // todo check if useful or comment why not
'-Xep:UnusedNestedClass:WARN',
'-Xep:UnusedTypeParameter:WARN',
Expand Down
4 changes: 2 additions & 2 deletions solr/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ Build

* SOLR-16508: Upgrade gradle wrapper to 7.6 (Kevin Risden)

* SOLR-16578: Upgrade to errorprone 2.16 (Kevin Risden)
* SOLR-16578: Upgrade to errorprone 2.18.0 (Kevin Risden)

* SOLR-16581: Upgrade OWASP dependency check to 7.4.1 (Kevin Risden)

Expand Down Expand Up @@ -270,7 +270,7 @@ Other Changes

* SOLR-16579: Upgrade Jackson to 2.14.1 (Kevin Risden)

* SOLR-16562: Upgrade to Caffeine 3.1.2 (Kevin Risden)
* SOLR-16562: Upgrade to Caffeine 3.1.4 (Kevin Risden)

* SOLR-16569: Add java system property to overseer queue size (Nick Ginther via noble)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ public static void afterTests() throws Exception {
private static final FacetField.FacetMethod TEST_ONLY_ONE_FACET_METHOD =
null; // FacetField.FacetMethod.DEFAULT_METHOD;

@SuppressWarnings("MathAbsoluteNegative")
@ParametersFactory
public static Iterable<Object[]> parameters() {
if (null != TEST_ONLY_ONE_FACET_METHOD) {
Expand Down
1 change: 1 addition & 0 deletions solr/licenses/asm-9.3.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8e6300ef51c1d801a7ed62d07cd221aca3a90640
1 change: 0 additions & 1 deletion solr/licenses/asm-9.4.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/asm-analysis-7.2.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b6e6abe057f23630113f4167c34bda7086691258
1 change: 1 addition & 0 deletions solr/licenses/asm-commons-7.2.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ca2954e8d92a05bacc28ff465b25c70e0f512497
1 change: 0 additions & 1 deletion solr/licenses/asm-commons-9.4.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/asm-tree-7.2.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3a23cc36edaf8fc5a89cb100182758ccb5991487
1 change: 0 additions & 1 deletion solr/licenses/asm-tree-9.4.jar.sha1

This file was deleted.

1 change: 0 additions & 1 deletion solr/licenses/caffeine-3.1.2.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/caffeine-3.1.4.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
19021f711c6a8595c567c0a7746b5ce264415912
1 change: 0 additions & 1 deletion solr/licenses/checker-qual-3.28.0.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/checker-qual-3.31.0.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
eeefd4af42e2f4221d145c1791582f91868f99ab
1 change: 0 additions & 1 deletion solr/licenses/error_prone_annotations-2.16.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/error_prone_annotations-2.18.0.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
89b684257096f548fa39a7df9fdaa409d4d4df91
1 change: 1 addition & 0 deletions solr/licenses/kotlin-reflect-1.6.10.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1cbe9c92c12a94eea200d23c2bbaedaf3daf5132
1 change: 0 additions & 1 deletion solr/licenses/kotlin-reflect-1.7.21.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/kotlin-stdlib-1.6.20.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6cedc143badbb4f1c6b7f5a340b04edff1743208
1 change: 0 additions & 1 deletion solr/licenses/kotlin-stdlib-1.7.21.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/kotlin-stdlib-common-1.6.20.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
27b4562b6713d70f458c6d7ea39aadacb8e6a92b
1 change: 0 additions & 1 deletion solr/licenses/kotlin-stdlib-common-1.7.21.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/kotlin-stdlib-jdk7-1.6.0.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
da6bdc87391322974a43ccc00a25536ae74dad51
1 change: 0 additions & 1 deletion solr/licenses/kotlin-stdlib-jdk7-1.7.21.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/kotlin-stdlib-jdk8-1.6.0.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
baf82c475e9372c25407f3d132439e4aa803b8b8
1 change: 0 additions & 1 deletion solr/licenses/kotlin-stdlib-jdk8-1.7.21.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/snakeyaml-1.28.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7cae037c3014350c923776548e71c9feb7a69259
1 change: 0 additions & 1 deletion solr/licenses/snakeyaml-1.33.jar.sha1

This file was deleted.

2 changes: 1 addition & 1 deletion solr/modules/jwt-auth/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
implementation 'org.apache.httpcomponents:httpcore'
implementation 'org.eclipse.jetty:jetty-client'
implementation 'org.eclipse.jetty.toolchain:jetty-servlet-api'
implementation ('com.google.guava:guava') { transitive = false }
implementation 'com.google.guava:guava'
implementation 'org.slf4j:slf4j-api'

testImplementation project(':solr:test-framework')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ public List<TupleStream> children() {
return l;
}

@SuppressWarnings("UnusedLabel")
@Override
public void open() throws IOException {

Expand Down
43 changes: 21 additions & 22 deletions versions.lock
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Run ./gradlew --write-locks to regenerate this file
biz.aQute.bnd:biz.aQute.bnd.annotation:6.3.1 (1 constraints: 0c051336)
com.adobe.xmp:xmpcore:6.1.10 (1 constraints: fd0d5947)
com.beust:jcommander:1.82 (3 constraints: fd21d419)
com.beust:jcommander:1.82 (2 constraints: 2b123714)
com.carrotsearch:hppc:0.9.1 (2 constraints: ad0fc9a6)
com.carrotsearch.randomizedtesting:randomizedtesting-runner:2.8.1 (2 constraints: cf1501e2)
com.cybozu.labs:langdetect:1.1-20120112 (1 constraints: 5c066d5e)
com.epam:parso:2.0.14 (1 constraints: 8e0c750e)
com.fasterxml.jackson:jackson-bom:2.14.1 (13 constraints: 7208a870)
com.fasterxml.jackson:jackson-bom:2.14.1 (12 constraints: 36f86334)
com.fasterxml.jackson.core:jackson-annotations:2.14.1 (10 constraints: 89beae04)
com.fasterxml.jackson.core:jackson-core:2.14.1 (13 constraints: 29020108)
com.fasterxml.jackson.core:jackson-databind:2.14.1 (18 constraints: c863ae0d)
com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.14.1 (1 constraints: b80ea766)
com.fasterxml.jackson.module:jackson-module-jaxb-annotations:2.14.1 (2 constraints: a42445e0)
com.fasterxml.woodstox:woodstox-core:6.4.0 (3 constraints: af28dcb7)
com.github.ben-manes.caffeine:caffeine:3.1.2 (1 constraints: 0805ff35)
com.github.ben-manes.caffeine:caffeine:3.1.4 (1 constraints: 0a050136)
com.github.jai-imageio:jai-imageio-core:1.4.0 (1 constraints: 5c0ced01)
com.github.junrar:junrar:7.5.2 (1 constraints: 650c1002)
com.github.openjson:openjson:1.0.12 (1 constraints: 8b0c6d0e)
Expand Down Expand Up @@ -42,7 +42,7 @@ com.google.cloud:google-cloud-core-grpc:2.9.0 (1 constraints: ef0ff495)
com.google.cloud:google-cloud-core-http:2.9.0 (1 constraints: ef0ff495)
com.google.cloud:google-cloud-storage:2.16.0 (2 constraints: d31c2627)
com.google.code.gson:gson:2.10 (6 constraints: c553f00d)
com.google.errorprone:error_prone_annotations:2.16 (10 constraints: 537a23c0)
com.google.errorprone:error_prone_annotations:2.18.0 (10 constraints: b37a2659)
com.google.guava:failureaccess:1.0.1 (2 constraints: f9199e37)
com.google.guava:guava:31.1-jre (25 constraints: 756fc917)
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava (2 constraints: 4b35b0a0)
Expand All @@ -53,7 +53,7 @@ com.google.http-client:google-http-client-gson:1.42.3 (6 constraints: f0616ba0)
com.google.http-client:google-http-client-jackson2:1.42.3 (1 constraints: 1e1004a6)
com.google.j2objc:j2objc-annotations:1.3 (4 constraints: 7d3ab454)
com.google.oauth-client:google-oauth-client:1.34.1 (2 constraints: b520b575)
com.google.protobuf:protobuf-java:3.21.10 (12 constraints: fba64736)
com.google.protobuf:protobuf-java:3.21.10 (11 constraints: c896aada)
com.google.protobuf:protobuf-java-util:3.21.10 (3 constraints: ba2b3997)
com.google.re2j:re2j:1.6 (2 constraints: 3714a76f)
com.googlecode.json-simple:json-simple:1.1.1 (2 constraints: 321c78d2)
Expand Down Expand Up @@ -176,7 +176,7 @@ org.apache.commons:commons-csv:1.9.0 (1 constraints: 610cfc01)
org.apache.commons:commons-exec:1.3 (2 constraints: a41056b8)
org.apache.commons:commons-lang3:3.12.0 (5 constraints: 9b3e0e36)
org.apache.commons:commons-math3:3.6.1 (4 constraints: 93247039)
org.apache.commons:commons-text:1.10.0 (3 constraints: ad262ca9)
org.apache.commons:commons-text:1.10.0 (2 constraints: 861680f8)
org.apache.curator:curator-client:4.3.0 (2 constraints: e214cba2)
org.apache.curator:curator-framework:4.3.0 (2 constraints: ff13b474)
org.apache.curator:curator-recipes:4.3.0 (1 constraints: 09050836)
Expand All @@ -186,7 +186,7 @@ org.apache.hadoop:hadoop-client-api:3.3.4 (3 constraints: 1f28da5f)
org.apache.hadoop:hadoop-client-runtime:3.3.4 (2 constraints: 6b177043)
org.apache.hadoop:hadoop-common:3.3.4 (1 constraints: 0c050736)
org.apache.hadoop.thirdparty:hadoop-shaded-guava:1.1.1 (1 constraints: 0505f435)
org.apache.httpcomponents:httpclient:4.5.13 (10 constraints: 8f9027a9)
org.apache.httpcomponents:httpclient:4.5.13 (9 constraints: 5d801b3e)
org.apache.httpcomponents:httpcore:4.4.15 (8 constraints: 1c6d2913)
org.apache.httpcomponents:httpmime:4.5.13 (3 constraints: ea1bb9dc)
org.apache.httpcomponents.client5:httpclient5:5.1.3 (1 constraints: 6c10bcb3)
Expand Down Expand Up @@ -261,15 +261,15 @@ org.apiguardian:apiguardian-api:1.1.2 (2 constraints: 601bd5a8)
org.bitbucket.b_c:jose4j:0.7.9 (1 constraints: 12050936)
org.bouncycastle:bcmail-jdk15on:1.70 (1 constraints: 310c8af5)
org.bouncycastle:bcpkix-jdk15on:1.70 (2 constraints: ce1b11b3)
org.bouncycastle:bcprov-jdk15on:1.70 (5 constraints: ee43a815)
org.bouncycastle:bcprov-jdk15on:1.70 (4 constraints: 1f34ee12)
org.bouncycastle:bcutil-jdk15on:1.70 (2 constraints: 961ad454)
org.brotli:dec:0.1.2 (1 constraints: 5a0ce101)
org.carrot2:carrot2-core:4.5.0 (1 constraints: 0b050e36)
org.carrot2:morfologik-fsa:2.1.9 (1 constraints: db0d9c36)
org.carrot2:morfologik-polish:2.1.9 (1 constraints: d312541e)
org.carrot2:morfologik-stemming:2.1.9 (2 constraints: d81fb300)
org.ccil.cowan.tagsoup:tagsoup:1.2.1 (1 constraints: 5b0ce801)
org.checkerframework:checker-qual:3.28.0 (5 constraints: 5c46c7ed)
org.checkerframework:checker-qual:3.31.0 (5 constraints: 57468aea)
org.codehaus.janino:commons-compiler:3.1.8 (2 constraints: 2f1983ec)
org.codehaus.janino:janino:3.1.8 (1 constraints: 640dbc2c)
org.codehaus.woodstox:stax2-api:4.2.1 (2 constraints: 36152eaf)
Expand Down Expand Up @@ -323,12 +323,11 @@ org.javassist:javassist:3.25.0-GA (1 constraints: 2a110ef1)
org.jctools:jctools-core:3.3.0 (1 constraints: 08050336)
org.jdom:jdom2:2.0.6.1 (1 constraints: be0c371b)
org.jetbrains:annotations:13.0 (1 constraints: df0e795c)
org.jetbrains.kotlin:kotlin-bom:1.7.21 (1 constraints: 31109caf)
org.jetbrains.kotlin:kotlin-stdlib:1.7.21 (6 constraints: d65aa2de)
org.jetbrains.kotlin:kotlin-stdlib-common:1.7.21 (4 constraints: 363ab4c3)
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.21 (2 constraints: e11ec2c7)
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.21 (4 constraints: 573ab5e7)
org.junit:junit-bom:5.9.1 (2 constraints: cb21f18e)
org.jetbrains.kotlin:kotlin-stdlib:1.6.20 (5 constraints: 6c4c1dcd)
org.jetbrains.kotlin:kotlin-stdlib-common:1.6.20 (3 constraints: 352cbb71)
org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.6.0 (1 constraints: ae1013c2)
org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.0 (3 constraints: 582c9186)
org.junit:junit-bom:5.9.0 (1 constraints: c7116dde)
org.locationtech.jts:jts-core:1.19.0 (2 constraints: a31de760)
org.locationtech.jts.io:jts-io-common:1.19.0 (1 constraints: 930d513a)
org.locationtech.proj4j:proj4j:1.1.5 (1 constraints: 5f0daf2c)
Expand All @@ -338,10 +337,10 @@ org.openjdk.jmh:jmh-core:1.32 (1 constraints: da04f730)
org.osgi:org.osgi.resource:1.0.0 (1 constraints: e60f2999)
org.osgi:org.osgi.service.serviceloader:1.0.0 (1 constraints: e60f2999)
org.osgi:osgi.annotation:8.1.0 (1 constraints: 0b051636)
org.ow2.asm:asm:9.4 (6 constraints: 1242e83d)
org.ow2.asm:asm-bom:9.4 (1 constraints: a50fb27f)
org.ow2.asm:asm-commons:9.4 (2 constraints: 94171c72)
org.ow2.asm:asm-tree:9.4 (2 constraints: 11129514)
org.ow2.asm:asm:9.3 (5 constraints: e139bef1)
org.ow2.asm:asm-analysis:7.2 (1 constraints: e409d9a5)
org.ow2.asm:asm-commons:7.2 (1 constraints: 6b0f7267)
org.ow2.asm:asm-tree:7.2 (2 constraints: 2f14468c)
org.quicktheories:quicktheories:0.26 (1 constraints: dc04f530)
org.reactivestreams:reactive-streams:1.0.3 (3 constraints: 3c2b02fd)
org.semver4j:semver4j:2.2.0 (1 constraints: 0605fb35)
Expand Down Expand Up @@ -376,7 +375,7 @@ software.amazon.awssdk:third-party-jackson-core:2.17.63 (2 constraints: 931b14a8
software.amazon.awssdk:utils:2.17.63 (17 constraints: 0bffaaab)
software.amazon.eventstream:eventstream:1.0.1 (2 constraints: 2e1ae62b)
ua.net.nlp:morfologik-ukrainian-search:4.9.1 (1 constraints: d5126e1e)
xerces:xercesImpl:2.12.2 (2 constraints: ba1cc124)
xerces:xercesImpl:2.12.2 (1 constraints: 8e0c7d0e)

[Test dependencies]
com.adobe.testing:s3mock:2.1.34 (1 constraints: b012831d)
Expand Down Expand Up @@ -433,7 +432,7 @@ org.glassfish.jersey.test-framework:jersey-test-framework-core:2.35 (2 constrain
org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2:2.35 (1 constraints: de04fe30)
org.hdrhistogram:HdrHistogram:2.1.12 (1 constraints: 520d2029)
org.hsqldb:hsqldb:2.4.0 (1 constraints: 08050136)
org.jetbrains.kotlin:kotlin-reflect:1.7.21 (3 constraints: 61328ffd)
org.jetbrains.kotlin:kotlin-reflect:1.6.10 (2 constraints: 6224e0e2)
org.latencyutils:LatencyUtils:2.0.3 (1 constraints: 210dcd1b)
org.mockito:mockito-core:3.8.0 (1 constraints: 0d051236)
org.objenesis:objenesis:3.1 (1 constraints: b00a12bd)
Expand All @@ -455,6 +454,6 @@ org.springframework.boot:spring-boot-starter-jetty:2.5.14 (1 constraints: 1d0d31
org.springframework.boot:spring-boot-starter-json:2.5.14 (1 constraints: d814609e)
org.springframework.boot:spring-boot-starter-logging:2.5.14 (1 constraints: 6d138546)
org.springframework.boot:spring-boot-starter-web:2.5.14 (1 constraints: 1d0d3137)
org.yaml:snakeyaml:1.33 (2 constraints: dc224ce5)
org.yaml:snakeyaml:1.28 (1 constraints: 0e13df1f)
software.amazon.awssdk:url-connection-client:2.17.63 (2 constraints: 471f19f7)
software.amazon.ion:ion-java:1.0.2 (1 constraints: 720db831)
4 changes: 2 additions & 2 deletions versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ com.carrotsearch:hppc=0.9.1
com.cybozu.labs:langdetect=1.1-20120112
com.fasterxml.jackson:jackson-bom=2.14.1
com.fasterxml.woodstox:woodstox-core=6.4.0
com.github.ben-manes.caffeine:caffeine=3.1.2
com.github.ben-manes.caffeine:caffeine=3.1.4
com.github.spotbugs:*=4.7.2
com.github.stephenc.jcip:jcip-annotations=1.0-1
com.google.cloud:google-cloud-bom=0.184.0
com.google.errorprone:*=2.16
com.google.errorprone:*=2.18.0
com.google.guava:guava=31.1-jre
com.google.re2j:re2j=1.6
com.jayway.jsonpath:json-path=2.7.0
Expand Down

0 comments on commit 4d50e27

Please sign in to comment.