@@ -73,15 +73,15 @@ dependencies {
73
73
*/
74
74
exclude group : ' junit' , module : ' junit'
75
75
}
76
- tckTestImplementation libs . testNg
76
+ tckTestImplementation " org.testng:testng: $t estngVersion "
77
77
78
78
// JSR-305 annotations
79
79
compileOnly libs. jsr305
80
80
testCompileOnly libs. jsr305
81
81
82
82
// Optional Logging Operator
83
- compileOnly libs . slf4j
84
- testCompileOnly libs . slf4j
83
+ compileOnly " org .slf4j:slf4j-api: $s lf4jVersion "
84
+ testCompileOnly " org .slf4j:slf4j-api: $s lf4jVersion "
85
85
86
86
// Optional Metrics
87
87
compileOnly libs. micrometer
@@ -91,29 +91,29 @@ dependencies {
91
91
testImplementation libs. kotlin. stdlib
92
92
93
93
// Optional BlockHound support
94
- compileOnly libs . blockhound
94
+ compileOnly " io.projectreactor.tools: blockhound: $b lockhoundVersion "
95
95
// Also make BlockHound visible in the CP of dedicated testset
96
- blockHoundTestImplementation libs . blockhound
96
+ blockHoundTestImplementation " io.projectreactor.tools: blockhound: $b lockhoundVersion "
97
97
98
98
// Optional JDK 9 Converter
99
99
jsr166backport libs. jsr166backport
100
100
101
101
// Testing
102
- testImplementation platform(libs . junit. bom)
102
+ testImplementation platform(" org .junit:junit- bom: $j unitVersion " )
103
103
testImplementation " org.junit.jupiter:junit-jupiter-api"
104
104
testImplementation " org.junit.platform:junit-platform-launcher"
105
105
testImplementation " org.junit.jupiter:junit-jupiter-params"
106
106
testRuntimeOnly " org.junit.jupiter:junit-jupiter-engine"
107
107
testImplementation(project(" :reactor-test" )) {
108
108
exclude module : ' reactor-core'
109
109
}
110
- testImplementation libs . logback // need to access API to decrease some tests verbosity
111
- testImplementation libs . assertj
112
- testImplementation libs . mockito
113
- testImplementation libs . javaObjectLayout
114
- testImplementation libs . awaitility
115
- testImplementation libs . throwingFunction
116
- testImplementation libs . archUnit
110
+ testImplementation " ch.qos. logback:logback-classic: $l ogbackVersion " // need to access API to decrease some tests verbosity
111
+ testImplementation " org .assertj:assertj-core: $a ssertjVersion "
112
+ testImplementation " org .mockito:mockito-core: $m ockitoVersion "
113
+ testImplementation " org.openjdk.jol:jol-core: $j avaObjectLayoutVersion "
114
+ testImplementation " org .awaitility:awaitility: $a waitilityVersion "
115
+ testImplementation " com.pivovarit:throwing-function: $t hrowingFunctionVersion "
116
+ testImplementation " com.tngtech.archunit:archunit: $a rchUnitVersion "
117
117
118
118
// withMicrometerTest is a test-set that validates what happens when micrometer *IS*
119
119
// on the classpath. Needs sourceSets.test.output because tests there use helpers like AutoDisposingRule etc.
@@ -123,7 +123,7 @@ dependencies {
123
123
jcstressImplementation(project(" :reactor-test" )) {
124
124
exclude module : ' reactor-core'
125
125
}
126
- jcstressImplementation libs . logback
126
+ jcstressImplementation " ch.qos. logback:logback-classic: $l ogbackVersion "
127
127
128
128
}
129
129
0 commit comments