baremaps-openapi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.baremaps</groupId> <artifactId>baremaps-openapi</artifactId> <version>0.5.14</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>baremaps-openapi</artifactId> <name>baremaps-openapi</name> <parent> <artifactId>baremaps</artifactId> <groupId>com.baremaps</groupId> <version>0.5.14</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> </properties> <build> <plugins> <plugin> <groupId>org.openapitools</groupId> <artifactId>openapi-generator-maven-plugin</artifactId> <version>5.1.0</version> <executions> <execution> <goals> <goal>generate</goal> </goals> <configuration> <inputSpec>${project.basedir}/src/main/resources/openapi.yaml</inputSpec> <generatorName>jaxrs-spec</generatorName> <configOptions> <sourceFolder>src/gen/java/main</sourceFolder> <apiPackage>com.baremaps.api</apiPackage> <modelPackage>com.baremaps.model</modelPackage> <interfaceOnly>true</interfaceOnly> </configOptions> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.servicetalk</groupId> <artifactId>servicetalk-data-jackson</artifactId> </dependency> <dependency> <groupId>io.servicetalk</groupId> <artifactId>servicetalk-data-jackson-jersey</artifactId> </dependency> <dependency> <groupId>io.servicetalk</groupId> <artifactId>servicetalk-http-netty</artifactId> </dependency> <dependency> <groupId>io.servicetalk</groupId> <artifactId>servicetalk-transport-netty</artifactId> </dependency> <dependency> <groupId>io.servicetalk</groupId> <artifactId>servicetalk-http-router-jersey</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-multipart</artifactId> </dependency> <dependency> <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> </dependency> <dependency> <groupId>io.swagger</groupId> <artifactId>swagger-annotations</artifactId> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> </dependency> </dependencies> </project>