2016-07-03 20:59:29 +02:00
|
|
|
<?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>de.epiceric</groupId>
|
2016-08-05 15:25:24 +02:00
|
|
|
<artifactId>ShopChest</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2016-08-18 15:36:12 +02:00
|
|
|
<version>1.10.2</version>
|
2016-07-06 21:37:41 +02:00
|
|
|
<name>ShopChest</name>
|
|
|
|
<url>https://www.spigotmc.org/resources/shopchest.11431/</url>
|
2016-08-05 15:25:24 +02:00
|
|
|
<description>Let your players create their own nice-looking shops to sell their stuff to other players!</description>
|
2016-07-03 20:59:29 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
2016-07-05 15:08:44 +02:00
|
|
|
|
|
|
|
<github.global.server>github</github.global.server>
|
2016-07-03 20:59:29 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2016-07-03 21:14:41 +02:00
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2016-08-03 16:31:33 +02:00
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
|
2016-07-03 21:14:41 +02:00
|
|
|
</repository>
|
2016-07-03 20:59:29 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
2016-07-03 21:14:41 +02:00
|
|
|
<version>1.6</version>
|
2016-07-03 20:59:29 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2016-07-05 15:08:44 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>internal-maven-repo</id>
|
|
|
|
<url>file://${project.build.directory}/gh-pages/maven</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2016-07-03 20:59:29 +02:00
|
|
|
<build>
|
2016-07-13 16:40:19 +02:00
|
|
|
<finalName>${project.artifactId}</finalName>
|
2016-07-03 20:59:29 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<targetPath>.</targetPath>
|
2016-07-06 21:37:41 +02:00
|
|
|
<filtering>true</filtering>
|
2016-07-03 20:59:29 +02:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
2016-07-04 22:11:05 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2016-07-06 18:28:35 +02:00
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
2016-07-04 22:11:05 +02:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-07-05 15:08:44 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
<configuration>
|
|
|
|
<altDeploymentRepository>internal-maven-repo::default::file://${project.build.directory}/gh-pages/maven</altDeploymentRepository>
|
2016-07-06 18:28:35 +02:00
|
|
|
<javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc>
|
2016-07-05 15:08:44 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.github</groupId>
|
|
|
|
<artifactId>site-maven-plugin</artifactId>
|
|
|
|
<version>0.12</version>
|
|
|
|
<configuration>
|
2016-07-06 21:09:45 +02:00
|
|
|
<message>
|
|
|
|
Updated Maven Artifact
|
|
|
|
|
|
|
|
Artifact: ${project.artifactId}
|
|
|
|
Version: ${project.version}
|
|
|
|
Timestamp: ${maven.build.timestamp}
|
|
|
|
</message>
|
2016-07-05 15:08:44 +02:00
|
|
|
<outputDirectory>${project.build.directory}/gh-pages</outputDirectory>
|
|
|
|
<branch>refs/heads/gh-pages</branch>
|
|
|
|
<merge>true</merge>
|
|
|
|
<repositoryName>ShopChest</repositoryName>
|
|
|
|
<repositoryOwner>EpicEricEE</repositoryOwner>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>deploy</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>site</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-07-03 20:59:29 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|