From 81144af6ea7841f12f81309d8c96102366ecfb75 Mon Sep 17 00:00:00 2001 From: parenko Date: Sat, 18 May 2024 23:37:11 +0200 Subject: [PATCH] example with jar inputSpec --- .../multi-module/java-client-jar/pom.xml | 171 ++++++++++++++++++ .../examples/multi-module/pom.xml | 1 + 2 files changed, 172 insertions(+) create mode 100644 modules/openapi-generator-maven-plugin/examples/multi-module/java-client-jar/pom.xml diff --git a/modules/openapi-generator-maven-plugin/examples/multi-module/java-client-jar/pom.xml b/modules/openapi-generator-maven-plugin/examples/multi-module/java-client-jar/pom.xml new file mode 100644 index 000000000000..efef3805c6e0 --- /dev/null +++ b/modules/openapi-generator-maven-plugin/examples/multi-module/java-client-jar/pom.xml @@ -0,0 +1,171 @@ + + + org.openapitools + multi-parent + 1.0-SNAPSHOT + ../ + + + 4.0.0 + java-client-jar + jar + 1.0-SNAPSHOT + java-client-jar + https://maven.apache.org + + + + + org.openapitools + openapi-generator-maven-plugin + + 7.6.0-SNAPSHOT + + + + + generate + + + + jar:file:${settings.localRepository}/org/openapitools/sample-schema/1.0-SNAPSHOT/sample-schema-1.0-SNAPSHOT.jar!/openapi.yaml + + + java + + + + + + joda + + + + jersey2 + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + 1.8 + 1.8 + none + + + + + + + sonatype-snapshots + https://oss.sonatype.org/content/repositories/snapshots/ + + + + + + + io.swagger + swagger-annotations + ${swagger-annotations-version} + + + + + + + org.glassfish.jersey.core + jersey-client + ${jersey-version} + + + org.glassfish.jersey.media + jersey-media-multipart + ${jersey-version} + + + org.glassfish.jersey.media + jersey-media-json-jackson + ${jersey-version} + + + + + com.google.code.findbugs + jsr305 + 3.0.2 + + + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + ${jackson-version} + + + com.fasterxml.jackson.core + jackson-core + ${jackson-version} + + + com.fasterxml.jackson.core + jackson-annotations + ${jackson-version} + + + com.fasterxml.jackson.core + jackson-databind + ${jackson-version} + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + ${jackson-version} + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + ${jackson-version} + + + org.openapitools + jackson-databind-nullable + ${jackson-databind-nullable-version} + + + com.github.scribejava + scribejava-apis + 8.3.3 + + + org.tomitribe + tomitribe-http-signatures + ${http-signature-version} + + + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + ${jackson-version} + + + joda-time + joda-time + ${jodatime-version} + + + + + com.brsanthu + migbase64 + 2.2 + + + + diff --git a/modules/openapi-generator-maven-plugin/examples/multi-module/pom.xml b/modules/openapi-generator-maven-plugin/examples/multi-module/pom.xml index fdc0d5272e05..5cf642146046 100644 --- a/modules/openapi-generator-maven-plugin/examples/multi-module/pom.xml +++ b/modules/openapi-generator-maven-plugin/examples/multi-module/pom.xml @@ -10,6 +10,7 @@ sample-schema java-client + java-client-jar