authenticator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.charlyghislain.authenticator</groupId>
<artifactId>authenticator</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</artifactId>
<packaging>war</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Rest resources implementing authenticator-api</description>
<url>https://github.com/cghislai/authenticator</url>
<dependencies>
<dependency>
<groupId>com.charlyghislain.authenticator</groupId>
<artifactId>authenticator-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>jaxrs-api</artifactId>
</dependency>
<dependency>
<groupId>com.charlyghislain.authenticator</groupId>
<artifactId>authenticator-domain</artifactId>
</dependency>
<dependency>
<groupId>com.charlyghislain.authenticator</groupId>
<artifactId>authenticator-ejb</artifactId>
<type>ejb</type>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.microprofile.config</groupId>
<artifactId>microprofile-config-api</artifactId>
</dependency>
<dependency>
<groupId>javax.security.enterprise</groupId>
<artifactId>javax.security.enterprise-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
</dependency>
</dependencies>
</project>