136 lines
4.2 KiB
XML
136 lines
4.2 KiB
XML
|
<?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>net.grandtheftmc</groupId>
|
||
|
<artifactId>common</artifactId>
|
||
|
<version>1.1.6</version>
|
||
|
<name>Common</name>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>nexus-release</id>
|
||
|
<url>http://nexus.grandtheftmc.net/content/repositories/releases</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>nexus-release</id>
|
||
|
<name>Internal Releases</name>
|
||
|
<url>http://nexus.grandtheftmc.net/content/repositories/releases</url>
|
||
|
</repository>
|
||
|
<snapshotRepository>
|
||
|
<id>nexus-snapshot</id>
|
||
|
<name>Internal Snapshots</name>
|
||
|
<url>http://nexus.grandtheftmc.net/content/repositories/snapshots</url>
|
||
|
</snapshotRepository>
|
||
|
</distributionManagement>
|
||
|
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<id>1</id>
|
||
|
<name>Presidentx</name>
|
||
|
<roles>
|
||
|
<role>Owner</role>
|
||
|
<role>Developer</role>
|
||
|
</roles>
|
||
|
</developer>
|
||
|
|
||
|
<developer>
|
||
|
<id>2</id>
|
||
|
<name>MrTeddeh</name>
|
||
|
<roles>
|
||
|
<role>Senior Developer</role>
|
||
|
</roles>
|
||
|
</developer>
|
||
|
|
||
|
<developer>
|
||
|
<id>3</id>
|
||
|
<name>Tim</name>
|
||
|
<roles>
|
||
|
<role>Developer</role>
|
||
|
</roles>
|
||
|
</developer>
|
||
|
|
||
|
<developer>
|
||
|
<id>4</id>
|
||
|
<name>ThatAbstractWolf</name>
|
||
|
<roles>
|
||
|
<role>Developer</role>
|
||
|
</roles>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>redis.clients</groupId>
|
||
|
<artifactId>jedis</artifactId>
|
||
|
<version>LATEST</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<version>2.8.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<version>21.0</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.0.0</version>
|
||
|
<configuration>
|
||
|
<finalName>Common</finalName>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<!-- Nexus deploy -->
|
||
|
<plugin>
|
||
|
<groupId>org.sonatype.plugins</groupId>
|
||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||
|
<version>1.6.8</version>
|
||
|
<extensions>true</extensions>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>default-deploy</id>
|
||
|
<phase>deploy</phase>
|
||
|
<goals>
|
||
|
<goal>deploy</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<serverId>nexus</serverId>
|
||
|
<nexusUrl>http://nexus.grandtheftmc.net/</nexusUrl>
|
||
|
<skipStaging>true</skipStaging>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|