forked from loafle/openapi-generator-original
* update jackson nullable to newer version * update samples * update samples * update samples
79 lines
2.8 KiB
XML
79 lines
2.8 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.openapitools</groupId>
|
|
<parent>
|
|
<groupId>io.helidon.applications</groupId>
|
|
<artifactId>helidon-mp</artifactId>
|
|
<version>3.0.1</version>
|
|
<relativePath/>
|
|
</parent>
|
|
<artifactId>petstore-helidon-client-mp</artifactId>
|
|
<name>petstore-helidon-client-mp</name>
|
|
<version>1.0.0</version>
|
|
<url>https://github.com/openapitools/openapi-generator</url>
|
|
<description>OpenAPI Java</description>
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.helidon.microprofile.rest-client</groupId>
|
|
<artifactId>helidon-microprofile-rest-client</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.helidon.microprofile.config</groupId>
|
|
<artifactId>helidon-microprofile-config</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
|
<artifactId>jersey-cdi1x</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.enterprise</groupId>
|
|
<artifactId>jakarta.enterprise.cdi-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.json</groupId>
|
|
<artifactId>jakarta.json-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openapitools</groupId>
|
|
<artifactId>jackson-databind-nullable</artifactId>
|
|
<version>0.2.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-libs</id>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.jboss.jandex</groupId>
|
|
<artifactId>jandex-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>make-index</id>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|