authentication
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.agora</groupId> <artifactId>authentication</artifactId> <version>2.1.3</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/maven-v4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.agora</groupId> <artifactId>authentication</artifactId> <version>2.1.3</version> <description>Agora Authentication</description> <name>Agora Authentication</name> <url>https://github.com/AgoraIO/Tools</url> <packaging>jar</packaging> <licenses> <license> <name>AGORA SDK License</name> <url>https://github.com/AgoraIO/full-sdk/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <name>agorabuilder</name> <organization>https://github.com/AgoraIO</organization> <url>https://www.agora.io</url> </developer> </developers> <scm> <connection>scm:git:https://github.com/AgoraIO/tools.git</connection> <developerConnection>scm:git:https://github.com/AgoraIO/tools.git</developerConnection> <url>https://github.com/AgoraIO/tools</url> </scm> <properties> <maven.compiler.plugin.version>3.1</maven.compiler.plugin.version> <maven.compiler.plugin.source>1.8</maven.compiler.plugin.source> <maven.compiler.plugin.target>1.8</maven.compiler.plugin.target> <maven.source.plugin.version>3.2.1</maven.source.plugin.version> <maven.javadoc.plugin.version>3.4.0</maven.javadoc.plugin.version> <maven.dependency.plugin.version>3.5.0</maven.dependency.plugin.version> <maven.assembly.plugin.version>3.3.0</maven.assembly.plugin.version> <commons.codec.version>1.11</commons.codec.version> <junit.version>4.12</junit.version> </properties> <dependencies> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>${commons.codec.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>${maven.compiler.plugin.source}</source> <target>${maven.compiler.plugin.target}</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <configuration> <additionalJOptions>-Xdoclint:none</additionalJOptions> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${maven.dependency.plugin.version}</version> <executions> <execution> <id>copy-pom</id> <phase>package</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> <type>pom</type> <outputDirectory>${project.build.directory}</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${maven.assembly.plugin.version}</version> <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> <appendAssemblyId>false</appendAssemblyId> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>