Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Commit 8da210c

Browse files
committed
use new interface
1 parent 7b674d2 commit 8da210c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ java {
1919

2020

2121
ext {
22-
processorApiVersion = '1.1.0.M1'
22+
processorApiVersion = '1.1.0-SNAPSHOT'
2323
jacksonVersion = '2.11.0'
2424

2525
bintrayUser = project.hasProperty ('BINTRAY_USER') ? BINTRAY_USER : 'n/a'
@@ -111,7 +111,7 @@ dependencies {
111111
}
112112

113113
testImplementation "io.openapiprocessor:openapi-processor-api:$processorApiVersion"
114-
testImplementation ('io.openapiprocessor:openapi-processor-test:1.0.0.M1') {
114+
testImplementation ('io.openapiprocessor:openapi-processor-test:1.0.0-SNAPSHOT') {
115115
exclude group: 'com.google.guava'
116116
}
117117

src/testInt/groovy/com/github/hauner/openapi/processor/core/processor/test/TestProcessor.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package com.github.hauner.openapi.processor.core.processor.test
1818

19-
import com.github.hauner.openapi.api.OpenApiProcessor
2019
import com.github.hauner.openapi.core.converter.ApiConverter
2120
import com.github.hauner.openapi.core.converter.ApiOptions
2221
import com.github.hauner.openapi.core.framework.FrameworkBase
@@ -31,6 +30,7 @@ import com.github.hauner.openapi.core.writer.java.InterfaceWriter
3130
import com.github.hauner.openapi.core.writer.java.MethodWriter
3231
import com.github.hauner.openapi.core.writer.java.StringEnumWriter
3332
import groovy.util.logging.Slf4j
33+
import io.openapiprocessor.api.OpenApiProcessor
3434

3535
/**
3636
* Simple processor for testing.

0 commit comments

Comments
 (0)