diff --git a/extensions/smallrye-openapi-common/deployment/src/main/java/io/quarkus/resteasy/smallrye/openapi/common/deployment/SmallRyeOpenApiConfig.java b/extensions/smallrye-openapi-common/deployment/src/main/java/io/quarkus/smallrye/openapi/common/deployment/SmallRyeOpenApiConfig.java similarity index 93% rename from extensions/smallrye-openapi-common/deployment/src/main/java/io/quarkus/resteasy/smallrye/openapi/common/deployment/SmallRyeOpenApiConfig.java rename to extensions/smallrye-openapi-common/deployment/src/main/java/io/quarkus/smallrye/openapi/common/deployment/SmallRyeOpenApiConfig.java index 9bb8254929934..92f0d15bd48e2 100644 --- a/extensions/smallrye-openapi-common/deployment/src/main/java/io/quarkus/resteasy/smallrye/openapi/common/deployment/SmallRyeOpenApiConfig.java +++ b/extensions/smallrye-openapi-common/deployment/src/main/java/io/quarkus/smallrye/openapi/common/deployment/SmallRyeOpenApiConfig.java @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package io.quarkus.resteasy.smallrye.openapi.common.deployment; +package io.quarkus.smallrye.openapi.common.deployment; import io.quarkus.runtime.annotations.ConfigItem; import io.quarkus.runtime.annotations.ConfigRoot; diff --git a/extensions/smallrye-openapi/deployment/src/main/java/io/quarkus/smallrye/openapi/deployment/SmallRyeOpenApiProcessor.java b/extensions/smallrye-openapi/deployment/src/main/java/io/quarkus/smallrye/openapi/deployment/SmallRyeOpenApiProcessor.java index d9f65f6308a67..68a75c51505c8 100644 --- a/extensions/smallrye-openapi/deployment/src/main/java/io/quarkus/smallrye/openapi/deployment/SmallRyeOpenApiProcessor.java +++ b/extensions/smallrye-openapi/deployment/src/main/java/io/quarkus/smallrye/openapi/deployment/SmallRyeOpenApiProcessor.java @@ -55,7 +55,7 @@ import io.quarkus.deployment.builditem.substrate.ReflectiveHierarchyBuildItem; import io.quarkus.deployment.logging.LogCleanupFilterBuildItem; import io.quarkus.resteasy.deployment.ResteasyJaxrsConfig; -import io.quarkus.resteasy.smallrye.openapi.common.deployment.SmallRyeOpenApiConfig; +import io.quarkus.smallrye.openapi.common.deployment.SmallRyeOpenApiConfig; import io.quarkus.smallrye.openapi.runtime.OpenApiDocumentProducer; import io.quarkus.smallrye.openapi.runtime.OpenApiServlet; import io.quarkus.smallrye.openapi.runtime.SmallRyeOpenApiTemplate; diff --git a/extensions/swagger-ui/deployment/src/main/java/io/quarkus/swaggerui/deployment/SwaggerUiProcessor.java b/extensions/swagger-ui/deployment/src/main/java/io/quarkus/swaggerui/deployment/SwaggerUiProcessor.java index e1ef81d4385cb..ef9f99ffece8c 100644 --- a/extensions/swagger-ui/deployment/src/main/java/io/quarkus/swaggerui/deployment/SwaggerUiProcessor.java +++ b/extensions/swagger-ui/deployment/src/main/java/io/quarkus/swaggerui/deployment/SwaggerUiProcessor.java @@ -28,9 +28,9 @@ import io.quarkus.deployment.index.ClassPathArtifactResolver; import io.quarkus.deployment.index.ResolvedArtifact; import io.quarkus.deployment.util.FileUtil; -import io.quarkus.resteasy.smallrye.openapi.common.deployment.SmallRyeOpenApiConfig; import io.quarkus.runtime.annotations.ConfigItem; import io.quarkus.runtime.annotations.ConfigRoot; +import io.quarkus.smallrye.openapi.common.deployment.SmallRyeOpenApiConfig; import io.quarkus.swaggerui.runtime.SwaggerUiTemplate; import io.quarkus.undertow.deployment.ServletExtensionBuildItem;