Skip to content

Commit ea82604

Browse files
committed
update dependencies
1 parent 0e5f065 commit ea82604

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

build.gradle

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ allprojects {
3434

3535
dependencies {
3636
compileOnly "io.openapiprocessor:openapi-processor-api:${project.api}"
37-
implementation 'org.codehaus.groovy:groovy:3.0.18'
37+
implementation localGroovy()
3838
}
3939
}
4040

@@ -50,11 +50,11 @@ java {
5050
testing {
5151
suites {
5252
test {
53-
useJUnitJupiter('5.9.2')
53+
useJUnitJupiter('5.10.0')
5454
}
5555

5656
testInt(JvmTestSuite) {
57-
useJUnitJupiter('5.9.2')
57+
useJUnitJupiter('5.10.0')
5858
testType = TestSuiteType.INTEGRATION_TEST
5959

6060
dependencies {
@@ -92,22 +92,25 @@ testInt.dependsOn ':processor-one:build'
9292
testInt.dependsOn ':processor-two:build'
9393

9494
dependencies {
95-
implementation 'org.yaml:snakeyaml:2.0'
95+
implementation localGroovy()
96+
implementation 'org.yaml:snakeyaml:2.1'
9697

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")
98100
testImplementation 'org.spockframework:spock-core'
99101
testImplementation 'net.bytebuddy:byte-buddy:1.14.5'
100102
testImplementation gradleTestKit()
101103

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")
103106
testIntImplementation 'org.spockframework:spock-core'
104107
testIntImplementation 'net.bytebuddy:byte-buddy:1.14.5'
105108
testIntImplementation gradleTestKit()
106109
}
107110

108111
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"
111114

112115
plugins {
113116
processorPlugin {

0 commit comments

Comments
 (0)