connect-openapi-jersey2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cd.connect.openapi</groupId>
<artifactId>connect-openapi-jersey2</artifactId>
<version>6.6</version>
</dependency><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>cd.connect.openapi</groupId>
<artifactId>connect-openapi-jersey2</artifactId>
<packaging>jar</packaging>
<name>connect-openapi-jersey2</name>
<version>6.6</version>
<description>
jersey3 generator from openapi 3.x spec files. Changing to openapitools dependencies.
</description>
<url>https://clearpointnz.github.io/connect/</url>
<developers>
<developer>
<email>richard@bluetrainsoftware.com</email>
<id>rvowles</id>
<name>Richard Vowles</name>
<organization>on behalf of ClearPoint NZ Ltd</organization>
</developer>
</developers>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://opensource.org/licenses/Apache-2.0</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:clearpointnz/connect-openapi-jersey2.git</connection>
<developerConnection>scm:git:git@github.com:clearpointnz/connect-openapi-jersey2.git</developerConnection>
<url>git@github.com:clearpointnz/connect-java-servlet-spring-jersey.git</url>
<tag>connect-openapi-jersey2-6.6</tag>
</scm>
<properties>
<openapi-codegen-version>5.0.0</openapi-codegen-version>
</properties>
<prerequisites>
<maven>3.5</maven>
</prerequisites>
<dependencies>
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-core</artifactId>
<version>${openapi-codegen-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-cli</artifactId>
<version>${openapi-codegen-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.googlejavaformat</groupId>
<artifactId>google-java-format</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>${openapi-codegen-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.repaint.maven</groupId>
<artifactId>tiles-maven-plugin</artifactId>
<version>2.17</version>
<extensions>true</extensions>
<configuration>
<filtering>false</filtering>
<tiles>
<tile>cd.connect.tiles:tile-java:[1.3, 2)</tile>
</tiles>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<projectsDirectory>src/it</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<postBuildHookScript>verify</postBuildHookScript>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<settingsFile>src/it/settings.xml</settingsFile>
<debug>true</debug>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>