Skip to content

Commit 28e7fc9

Browse files
author
Dariusz Jędrzejczyk
committedOct 10, 2022
Merge reactor#3218 into 3.5.0-RC1
2 parents ee7aa8a + 2735ba1 commit 28e7fc9

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
 

‎gradle/libs.versions.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ baselinePerfExtra = "3.4.8"
66

77
# Other shared versions
88
asciidoctor = "3.3.2"
9-
bytebuddy = "1.12.14"
9+
bytebuddy = "1.12.17"
1010
jmh = "1.35"
11-
junit = "5.9.0"
11+
junit = "5.9.1"
1212
#note that some micrometer artifacts like context-propagation has a different version directly set in libraries below
1313
micrometer = "1.10.0-SNAPSHOT" # was -M6
1414
reactiveStreams = "1.0.4"
@@ -41,24 +41,24 @@ micrometer-docsGenerator-metrics = { module = "io.micrometer:micrometer-docs-gen
4141
micrometer-observation-test = { module = "io.micrometer:micrometer-observation-test" }
4242
micrometer-tracing-test = "io.micrometer:micrometer-tracing-integration-test:1.0.0-SNAPSHOT" # was -M8
4343
micrometer-test = { module = "io.micrometer:micrometer-test" }
44-
mockito = "org.mockito:mockito-core:4.7.0"
44+
mockito = "org.mockito:mockito-core:4.8.0"
4545
reactiveStreams = { module = "org.reactivestreams:reactive-streams", version.ref = "reactiveStreams" }
4646
reactiveStreams-tck = { module = "org.reactivestreams:reactive-streams-tck", version.ref = "reactiveStreams" }
4747
reactor-perfBaseline-core = { module = "io.projectreactor:reactor-core", version.ref = "baselinePerfCore" }
4848
reactor-perfBaseline-extra = { module = "io.projectreactor.addons:reactor-extra", version.ref = "baselinePerfExtra" }
4949
slf4j = "org.slf4j:slf4j-api:1.7.36"
50-
testNg = "org.testng:testng:7.5"
50+
testNg = "org.testng:testng:7.5" # since 7.6 JDK8 is unsupported, don't bump
5151
throwingFunction = "com.pivovarit:throwing-function:1.5.1"
5252

5353
[plugins]
54-
artifactory = { id = "com.jfrog.artifactory", version = "4.29.0" }
54+
artifactory = { id = "com.jfrog.artifactory", version = "4.29.1" }
5555
asciidoctor-convert = { id = "org.asciidoctor.jvm.convert", version.ref = "asciidoctor" }
5656
asciidoctor-pdf = { id = "org.asciidoctor.jvm.pdf", version.ref = "asciidoctor" }
5757
bnd = { id = "biz.aQute.bnd.builder", version = "6.3.1" }
58-
download = { id = "de.undercouch.download", version = "5.1.2" }
58+
download = { id = "de.undercouch.download", version = "5.2.1" }
5959
japicmp = { id = "me.champeau.gradle.japicmp", version = "0.4.1" }
60-
jcstress = { id = "io.github.reyerizo.gradle.jcstress", version = "0.8.13" }
60+
jcstress = { id = "io.github.reyerizo.gradle.jcstress", version = "0.8.14" }
6161
nohttp = { id = "io.spring.nohttp", version = "0.0.10" }
6262
shadow = { id = "com.github.johnrengelman.shadow", version = "7.1.2" }
63-
spotless = { id = "com.diffplug.spotless", version = "6.10.0" }
63+
spotless = { id = "com.diffplug.spotless", version = "6.11.0" }
6464
testsets = { id = "org.unbroken-dome.test-sets", version = "4.0.0" }

‎reactor-tools/src/buildPluginTest/resources/mock-gradle/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ buildscript {
2222
//the plugin feature only works with the -original jar !!
2323
//otherwise implemented Plugin interface is the shaded one
2424
classpath files("@AGENT@")
25-
//version 1.12.13 cannot be found on Gradle Plugin Repository, this syntax allows looking it up on MavenCentral
25+
//version 1.12.17 cannot be found on Gradle Plugin Repository, this syntax allows looking it up on MavenCentral
2626
classpath 'net.bytebuddy:byte-buddy-gradle-plugin:@BYTE_BUDDY_VERSION@'
2727
}
2828
}

0 commit comments

Comments
 (0)
Please sign in to comment.