enjin-api-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.johnnei</groupId>
<artifactId>enjin-api-impl</artifactId>
<version>0.1.0</version>
</dependency><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>org.johnnei</groupId>
<artifactId>enjin-api-impl</artifactId>
<version>0.1.0</version>
<name>Enjin 2.0 API Reference implementation</name>
<description>The specification of the Enjin API</description>
<url>https://git.johnnei.org/Johnnei/enjin-api-impl</url>
<packaging>jar</packaging>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://choosealicense.com/licenses/apache-2.0/</url>
</license>
</licenses>
<developers>
<developer>
<name>Johnnei</name>
<email>johnnei07@live.nl</email>
<organization>Johnnei</organization>
<organizationUrl>https://johnnei.org</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://git.johnnei.org/Johnnei/enjin-api-impl.git</connection>
<developerConnection>scm:git:gitlab@git.johnnei.org:Johnnei/enjin-api-impl.git</developerConnection>
<url>https://git.johnnei.org/Johnnei/enjin-api-impl</url>
<tag>v0.1.0</tag>
</scm>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<dependency.org.johnnei.enjin-api-spec>0.1.0-SNAPSHOT</dependency.org.johnnei.enjin-api-spec>
<dependency.com.google.code.gson.gson>2.3.1</dependency.com.google.code.gson.gson>
<dependency.com.squareup.okhttp3.okhttp>3.0.1</dependency.com.squareup.okhttp3.okhttp>
<dependency.junit.junit>4.12</dependency.junit.junit>
<dependency.org.easymock.easymock>3.4</dependency.org.easymock.easymock>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.johnnei</groupId>
<artifactId>enjin-api-spec</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${dependency.com.google.code.gson.gson}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${dependency.com.squareup.okhttp3.okhttp}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${dependency.junit.junit}</version>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>${dependency.org.easymock.easymock}</version>
</dependency>
</dependencies>
</project>