authenticator-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.charlyghislain.authenticator</groupId>
<artifactId>authenticator-api</artifactId>
<version>1.0.7</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">
<parent>
<artifactId>authenticator-parent</artifactId>
<groupId>com.charlyghislain.authenticator</groupId>
<version>1.0.7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>authenticator-api</artifactId>
<name>${project.groupId}:${project.artifactId}</name>
<description>Public rest api</description>
<url>https://github.com/cghislai/authenticator</url>
<dependencies>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile.openapi</groupId>
<artifactId>microprofile-openapi-api</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>jaxrs-api</artifactId>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>cz.habarta.typescript-generator</groupId>
<artifactId>typescript-generator-maven-plugin</artifactId>
<configuration>
<classPatterns>
<classPattern>com.charlyghislain.authenticator.api.**</classPattern>
</classPatterns>
<optionalAnnotations>
<annotation>com.charlyghislain.authenticator.api.NullableField</annotation>
</optionalAnnotations>
</configuration>
</plugin>
</plugins>
</build>
</project>