2016-07-03 18:59:29 +00: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 13:25:24 +00:00
|
|
|
<artifactId>ShopChest</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2016-09-06 09:46:40 +00:00
|
|
|
<version>1.10.4</version>
|
2016-07-06 19:37:41 +00:00
|
|
|
<name>ShopChest</name>
|
|
|
|
<url>https://www.spigotmc.org/resources/shopchest.11431/</url>
|
2016-08-05 13:25:24 +00:00
|
|
|
<description>Let your players create their own nice-looking shops to sell their stuff to other players!</description>
|
2016-07-03 18:59:29 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
2016-07-05 13:08:44 +00:00
|
|
|
|
|
|
|
<github.global.server>github</github.global.server>
|
2016-08-19 10:35:17 +00:00
|
|
|
|
|
|
|
<javadoc.opts><!-- Only jdk 1.8 and later --></javadoc.opts>
|
2016-07-03 18:59:29 +00:00
|
|
|
</properties>
|
|
|
|
|
2016-08-19 10:35:17 +00:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>doclint-java8</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[1.8,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<javadoc.opts>-Xdoclint:none</javadoc.opts>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2016-07-03 18:59:29 +00:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2016-07-03 19:14:41 +00:00
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2016-08-03 14:31:33 +00:00
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
|
2016-07-03 19:14:41 +00:00
|
|
|
</repository>
|
2016-07-03 18:59:29 +00: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 19:14:41 +00:00
|
|
|
<version>1.6</version>
|
2016-07-03 18:59:29 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2016-07-05 13:08:44 +00:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>internal-maven-repo</id>
|
|
|
|
<url>file://${project.build.directory}/gh-pages/maven</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2016-07-03 18:59:29 +00:00
|
|
|
<build>
|
2016-07-13 14:40:19 +00:00
|
|
|
<finalName>${project.artifactId}</finalName>
|
2016-07-03 18:59:29 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<targetPath>.</targetPath>
|
2016-07-06 19:37:41 +00:00
|
|
|
<filtering>true</filtering>
|
2016-07-03 18:59:29 +00:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
2016-07-04 20:11:05 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.4</version>
|
2016-08-19 10:35:17 +00:00
|
|
|
<configuration>
|
|
|
|
<additionalparam>${javadoc.opts}</additionalparam>
|
|
|
|
</configuration>
|
2016-07-04 20:11:05 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2016-07-06 16:28:35 +00:00
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>package</phase>
|
2016-07-04 20:11:05 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-07-05 13:08:44 +00: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 16:28:35 +00:00
|
|
|
<javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc>
|
2016-07-05 13:08:44 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.github</groupId>
|
|
|
|
<artifactId>site-maven-plugin</artifactId>
|
|
|
|
<version>0.12</version>
|
|
|
|
<configuration>
|
2016-07-06 19:09:45 +00:00
|
|
|
<message>
|
|
|
|
Updated Maven Artifact
|
|
|
|
|
|
|
|
Artifact: ${project.artifactId}
|
|
|
|
Version: ${project.version}
|
|
|
|
Timestamp: ${maven.build.timestamp}
|
|
|
|
</message>
|
2016-07-05 13:08:44 +00: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 18:59:29 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|