Commit 7ca4e3d 1 parent 94e7291 commit 7ca4e3d Copy full SHA for 7ca4e3d
File tree 6 files changed +17
-15
lines changed
6 files changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ repositories {
16
16
}
17
17
18
18
dependencies {
19
- implementation(enforcedPlatform(" org.junit:junit-bom:5.11.4 " ))
19
+ implementation(enforcedPlatform(" org.junit:junit-bom:5.12.0 " ))
20
20
21
21
testImplementation(" org.testcontainers:testcontainers:1.20.5" )
22
22
testImplementation(" org.testcontainers:postgresql:1.20.5" )
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ dependencies {
71
71
implementation(" net.ltgt.gradle:gradle-nullaway-plugin:2.2.0" )
72
72
implementation(" me.champeau.gradle:japicmp-gradle-plugin:0.4.6" )
73
73
74
- testImplementation(enforcedPlatform(" org.junit:junit-bom:5.11.4 " ))
74
+ testImplementation(enforcedPlatform(" org.junit:junit-bom:5.12.0 " ))
75
75
testImplementation(" org.junit.jupiter:junit-jupiter-api" )
76
76
testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine" )
77
77
testImplementation(" org.assertj:assertj-core:3.27.3" )
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ val CORE_DEPENDENCIES = listOf(
81
81
// There are dependencies included here that appear to have no usages, but are maintained at
82
82
// this top level to help consistently satisfy large numbers of transitive dependencies.
83
83
val DEPENDENCIES = listOf (
84
- " org.junit.jupiter:junit-jupiter-api:5.11.4 " ,
84
+ " org.junit.jupiter:junit-jupiter-api:5.12.0 " ,
85
85
" org.spockframework:spock-core:2.4-M5-groovy-4.0" ,
86
86
" org.spockframework:spock-junit4:2.4-M5-groovy-4.0" ,
87
87
Original file line number Diff line number Diff line change @@ -33,8 +33,7 @@ subprojects {
33
33
opentelemetryJavaagent : " 2.14.0-SNAPSHOT" ,
34
34
opentelemetryJavaagentAlpha : " 2.14.0-alpha-SNAPSHOT" ,
35
35
36
- autoservice : " 1.1.1" ,
37
- junit : " 5.11.4"
36
+ autoservice : " 1.1.1"
38
37
]
39
38
40
39
deps = [
@@ -69,9 +68,11 @@ subprojects {
69
68
implementation(platform(" io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:${ versions.opentelemetryJavaagentAlpha} " ))
70
69
71
70
testImplementation(" org.mockito:mockito-core:5.15.2" )
72
- testImplementation(enforcedPlatform(" org.junit:junit-bom:${ versions.junit} " ))
73
- testImplementation(" org.junit.jupiter:junit-jupiter-api:${ versions.junit} " )
74
- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:${ versions.junit} " )
71
+
72
+ testImplementation(enforcedPlatform(" org.junit:junit-bom:5.12.0" ))
73
+ testImplementation(" org.junit.jupiter:junit-jupiter-api" )
74
+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine" )
75
+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
75
76
}
76
77
77
78
tasks {
Original file line number Diff line number Diff line change 27
27
28
28
// these lines are managed by .github/scripts/update-version.sh
29
29
opentelemetryJavaagent : " 2.14.0-SNAPSHOT" ,
30
- opentelemetryJavaagentAlpha : " 2.14.0-alpha-SNAPSHOT" ,
31
-
32
- junit : " 5.11.4"
30
+ opentelemetryJavaagentAlpha : " 2.14.0-alpha-SNAPSHOT"
33
31
]
34
32
35
33
deps = [
@@ -106,8 +104,11 @@ dependencies {
106
104
testImplementation(" io.opentelemetry:opentelemetry-api" )
107
105
testImplementation(" io.opentelemetry.proto:opentelemetry-proto:1.5.0-alpha" )
108
106
109
- testImplementation(" org.junit.jupiter:junit-jupiter-api:${ versions.junit} " )
110
- testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine:${ versions.junit} " )
107
+ testImplementation(enforcedPlatform(" org.junit:junit-bom:5.12.0" ))
108
+ testImplementation(" org.junit.jupiter:junit-jupiter-api" )
109
+ testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine" )
110
+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
111
+
111
112
testRuntimeOnly(" ch.qos.logback:logback-classic:1.5.16" )
112
113
113
114
// Otel Java instrumentation that we use and extend during integration tests
Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ dependencies {
44
44
45
45
testImplementation(" org.assertj:assertj-core:3.27.3" )
46
46
47
- testImplementation(enforcedPlatform(" org.junit:junit-bom:5.11.4 " ))
47
+ testImplementation(enforcedPlatform(" org.junit:junit-bom:5.12.0 " ))
48
48
testImplementation(" org.junit.jupiter:junit-jupiter-api" )
49
- testImplementation(" org.junit.jupiter:junit-jupiter-params" )
50
49
testRuntimeOnly(" org.junit.jupiter:junit-jupiter-engine" )
50
+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher" )
51
51
}
52
52
53
53
tasks {
You can’t perform that action at this time.
0 commit comments