File tree Expand file tree Collapse file tree 3 files changed +6
-16
lines changed Expand file tree Collapse file tree 3 files changed +6
-16
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ dependencies {
53
53
annotationProcessor(' io.github.jbock-java:simple-component-compiler:1.024' )
54
54
testRuntimeOnly(' org.junit.platform:junit-platform-launcher' )
55
55
testImplementation(' io.github.jbock-java:compile-testing:0.19.12' )
56
- testImplementation(' org.junit.jupiter:junit-jupiter:5.12.1' )
56
+ testImplementation platform(' org.junit:junit-bom:5.12.2' )
57
+ testImplementation(' org.junit.jupiter:junit-jupiter' )
57
58
testImplementation(' org.mockito:mockito-core:5.16.1' )
58
59
testImplementation(jbock)
59
60
testImplementation(simple_component)
69
70
70
71
test {
71
72
useJUnitPlatform()
72
- jvmArgs " -Xshare:off"
73
- testLogging {
74
- events(' failed' )
75
- }
76
73
}
77
74
78
75
tasks. register(' javadocJar' , Jar ) {
Original file line number Diff line number Diff line change @@ -17,14 +17,11 @@ dependencies {
17
17
implementation(jbock)
18
18
annotationProcessor project(' :compiler' )
19
19
annotationProcessor project(' :jbock' )
20
- testImplementation(' org.junit.jupiter:junit-jupiter:5.12.1' )
20
+ testImplementation platform(' org.junit:junit-bom:5.12.2' )
21
+ testImplementation(' org.junit.jupiter:junit-jupiter' )
21
22
testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
22
23
}
23
24
24
25
test {
25
26
useJUnitPlatform()
26
- jvmArgs " -Xshare:off"
27
- testLogging {
28
- events ' failed'
29
- }
30
27
}
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ tasks.withType(GenerateModuleMetadata) {
27
27
28
28
dependencies {
29
29
api(' io.github.jbock-java:either:1.5.2' )
30
- testImplementation(' org.junit.jupiter:junit-jupiter:5.12.1' )
30
+ testImplementation platform(' org.junit:junit-bom:5.12.2' )
31
+ testImplementation(' org.junit.jupiter:junit-jupiter' )
31
32
testImplementation(' org.mockito:mockito-core:5.16.1' )
32
- testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
33
33
}
34
34
35
35
jar {
42
42
43
43
test {
44
44
useJUnitPlatform()
45
- jvmArgs " -Xshare:off"
46
- testLogging {
47
- events(' failed' )
48
- }
49
45
}
50
46
51
47
task javadocJar (type : Jar ) {
You can’t perform that action at this time.
0 commit comments