@@ -34,7 +34,7 @@ allprojects {
34
34
35
35
dependencies {
36
36
compileOnly " io.openapiprocessor:openapi-processor-api:${ project.api} "
37
- implementation ' org.codehaus.groovy:groovy:3.0.18 '
37
+ implementation localGroovy()
38
38
}
39
39
}
40
40
@@ -50,11 +50,11 @@ java {
50
50
testing {
51
51
suites {
52
52
test {
53
- useJUnitJupiter(' 5.9.2 ' )
53
+ useJUnitJupiter(' 5.10.0 ' )
54
54
}
55
55
56
56
testInt(JvmTestSuite ) {
57
- useJUnitJupiter(' 5.9.2 ' )
57
+ useJUnitJupiter(' 5.10.0 ' )
58
58
testType = TestSuiteType . INTEGRATION_TEST
59
59
60
60
dependencies {
@@ -92,22 +92,25 @@ testInt.dependsOn ':processor-one:build'
92
92
testInt. dependsOn ' :processor-two:build'
93
93
94
94
dependencies {
95
- implementation ' org.yaml:snakeyaml:2.0'
95
+ implementation localGroovy()
96
+ implementation ' org.yaml:snakeyaml:2.1'
96
97
97
- testImplementation platform (" org.spockframework:spock-bom:2.3-groovy-3.0" )
98
+ testImplementation(localGroovy())
99
+ testImplementation platform (" org.spockframework:spock-bom:2.4-M1-groovy-3.0" )
98
100
testImplementation ' org.spockframework:spock-core'
99
101
testImplementation ' net.bytebuddy:byte-buddy:1.14.5'
100
102
testImplementation gradleTestKit()
101
103
102
- testIntImplementation platform (" org.spockframework:spock-bom:2.3-groovy-3.0" )
104
+ testIntImplementation(localGroovy())
105
+ testIntImplementation platform (" org.spockframework:spock-bom:2.4-M1-groovy-3.0" )
103
106
testIntImplementation ' org.spockframework:spock-core'
104
107
testIntImplementation ' net.bytebuddy:byte-buddy:1.14.5'
105
108
testIntImplementation gradleTestKit()
106
109
}
107
110
108
111
gradlePlugin {
109
- website = ' https://github.com/openapi-processor/openapi-processor-gradle'
110
- vcsUrl = ' https://github.com/openapi-processor/openapi-processor-gradle'
112
+ website = " https://github.com/openapi-processor/openapi-processor-gradle"
113
+ vcsUrl = " https://github.com/openapi-processor/openapi-processor-gradle"
111
114
112
115
plugins {
113
116
processorPlugin {
0 commit comments