oauth
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.10duke.client</groupId>
<artifactId>oauth</artifactId>
<version>1.1.0</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>
<groupId>com.10duke.client</groupId>
<artifactId>oauth</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>
<parent>
<groupId>com.10duke.client.parent</groupId>
<artifactId>java</artifactId>
<version>1.1.0</version>
<relativePath>../parent/java/pom.xml</relativePath>
</parent>
<name>com.10duke.client:oauth</name>
<description>OAuth-client</description>
<dependencies>
<dependency>
<groupId>com.10duke.client.json</groupId>
<artifactId>api</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.10duke.client.jwt</groupId>
<artifactId>api</artifactId>
<version>1.1.0</version>
</dependency>
<!-- External dependencies -->
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.10duke.client</groupId>
<artifactId>test-utils</artifactId>
<version>1.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
</dependencies>
</project>