@@ -13,12 +13,6 @@ plugins {
1313group projectGroupId
1414version projectVersion
1515
16- ext {
17- processorApiVersion = ' 2021.1'
18- processorCoreVersion = ' 2022.5'
19- processorTestVersion = ' 2022.2'
20- }
21-
2216repositories {
2317 mavenLocal()
2418 mavenCentral()
@@ -99,36 +93,37 @@ tasks.named('sourcesJar') {
9993}
10094
10195dependencies {
102- compileOnly " io.openapiprocessor:openapi-processor-api:$processorApiVersion "
103- implementation platform(" org.jetbrains.kotlin:kotlin-bom:1.6.21" )
104- implementation platform(" com.fasterxml.jackson:jackson-bom:2.13.3" )
105-
106- implementation " io.openapiprocessor:openapi-processor-core:$processorCoreVersion "
107- implementation ' org.slf4j:slf4j-api:1.7.36'
108- implementation (' com.google.guava:guava:31.1-jre' )
109-
110- testImplementation (" io.openapiprocessor:openapi-processor-api:$processorApiVersion " )
111- testImplementation (" io.openapiprocessor:openapi-processor-test:$processorTestVersion " )
112- testImplementation platform(" org.codehaus.groovy:groovy-bom:3.0.10" )
113- testImplementation (" org.codehaus.groovy:groovy" )
114- testImplementation (" org.codehaus.groovy:groovy-nio" )
115- testImplementation (' org.spockframework:spock-core:2.0-groovy-3.0' )
116- testImplementation(" io.mockk:mockk:1.12.4" )
117- testImplementation(" io.kotest:kotest-runner-junit5:5.3.0" )
118- testImplementation ' ch.qos.logback:logback-classic:1.2.11'
119- testImplementation(" com.google.jimfs:jimfs:1.2" )
120-
121- testIntImplementation (" io.openapiprocessor:openapi-processor-api:$processorApiVersion " )
122- testIntImplementation (" io.openapiprocessor:openapi-processor-core:$processorCoreVersion " )
123- testIntImplementation (" io.openapiprocessor:openapi-processor-test:$processorTestVersion " )
124- testIntImplementation platform(" org.codehaus.groovy:groovy-bom:3.0.10" )
125- testIntImplementation (" org.codehaus.groovy:groovy" )
126- testIntImplementation (" org.codehaus.groovy:groovy-nio" )
127- testIntImplementation (' org.spockframework:spock-core:2.0-groovy-3.0' )
128- testIntImplementation(" io.mockk:mockk:1.12.4" )
129- testIntImplementation(" io.kotest:kotest-runner-junit5:5.3.0" )
130- testIntImplementation ' ch.qos.logback:logback-classic:1.2.11'
131- testIntImplementation(" com.google.jimfs:jimfs:1.2" )
96+ compileOnly (libs. openapi. processor. api)
97+ implementation (libs. openapi. processor. core)
98+ implementation (libs. slf4j)
99+
100+ testImplementation (libs. openapi. processor. api)
101+ testImplementation (libs. openapi. processor. test)
102+ testImplementation (libs. openapi. processor. core)
103+ testImplementation platform(libs. groovy. bom)
104+ testImplementation (" org.apache.groovy:groovy" )
105+ testImplementation (" org.apache.groovy:groovy-nio" )
106+ testImplementation (libs. spock)
107+ testImplementation (platform(libs. kotest. bom))
108+ testImplementation (libs. kotest. runner)
109+ testImplementation (libs. kotest. datatest)
110+ testImplementation (libs. mockk)
111+ testImplementation (libs. logback)
112+ testImplementation (libs. jimfs)
113+
114+ testIntImplementation (libs. openapi. processor. api)
115+ testIntImplementation (libs. openapi. processor. test)
116+ testIntImplementation (libs. openapi. processor. core)
117+ testIntImplementation platform(libs. groovy. bom)
118+ testIntImplementation (" org.apache.groovy:groovy" )
119+ testIntImplementation (" org.apache.groovy:groovy-nio" )
120+ testIntImplementation (libs. spock)
121+ testIntImplementation (platform(libs. kotest. bom))
122+ testIntImplementation (libs. kotest. runner)
123+ testIntImplementation (libs. kotest. datatest)
124+ testIntImplementation (libs. mockk)
125+ testIntImplementation (libs. logback)
126+ testIntImplementation (libs. jimfs)
132127}
133128
134129tasks. named(" dependencyUpdates" ). configure {
0 commit comments