Maven artifacts for ShopChest-Root v1.8.0

This commit is contained in:
Eric 2016-07-05 13:01:00 +00:00
parent c8ddfbf9ad
commit 1dd37f041f
7 changed files with 179 additions and 102 deletions

0
.nojekyll Normal file
View File

View File

@ -1,103 +1,164 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<artifactId>ShopChest-Root</artifactId> <artifactId>ShopChest-Root</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.8.0</version> <version>1.8.0</version>
<properties> <properties>
<maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target> <maven.compiler.target>1.7</maven.compiler.target>
</properties>
<github.global.server>github</github.global.server>
<modules> </properties>
<module>ShopChest</module>
<module>ShopChest NMS-Abstract</module> <modules>
<module>ShopChest NMS-v1_8_R1</module> <module>ShopChest</module>
<module>ShopChest NMS-v1_8_R2</module> <module>ShopChest NMS-Abstract</module>
<module>ShopChest NMS-v1_8_R3</module> <module>ShopChest NMS-v1_8_R1</module>
<module>ShopChest NMS-v1_9_R1</module> <module>ShopChest NMS-v1_8_R2</module>
<module>ShopChest NMS-v1_9_R2</module> <module>ShopChest NMS-v1_8_R3</module>
<module>ShopChest NMS-v1_10_R1</module> <module>ShopChest NMS-v1_9_R1</module>
</modules> <module>ShopChest NMS-v1_9_R2</module>
<module>ShopChest NMS-v1_10_R1</module>
<repositories> </modules>
<repository>
<id>spigot-repo</id> <repositories>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> <repository>
</repository> <id>spigot-repo</id>
<repository> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
<id>shopchest-repo</id> </repository>
<url>https://epicericee.github.io/ShopChest/maven/</url> <repository>
</repository> <id>shopchest-repo</id>
</repositories> <url>https://epicericee.github.io/ShopChest/maven/</url>
</repository>
<dependencies> <repository>
<dependency> <id>vault-repo</id>
<groupId>org.spigotmc</groupId> <url>http://nexus.theyeticave.net/content/repositories/pub_releases/</url>
<artifactId>spigot-api</artifactId> </repository>
<version>1.10.2-R0.1-SNAPSHOT</version> </repositories>
<scope>provided</scope>
</dependency> <dependencies>
<dependency> <dependency>
<groupId>org.bukkit</groupId> <groupId>org.spigotmc</groupId>
<artifactId>bukkit</artifactId> <artifactId>spigot-api</artifactId>
<version>1.10.2-R0.1-SNAPSHOT</version> <version>1.10.2-R0.1-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency>
<dependency> <groupId>org.bukkit</groupId>
<groupId>net.milkbowl.vault</groupId> <artifactId>bukkit</artifactId>
<artifactId>VaultAPI</artifactId> <version>1.10.2-R0.1-SNAPSHOT</version>
<version>1.5</version> <scope>provided</scope>
<scope>provided</scope> </dependency>
</dependency>
<dependency> <dependency>
<groupId>org.yi.acru.bukkit.lockette</groupId> <groupId>net.milkbowl.vault</groupId>
<artifactId>lockette</artifactId> <artifactId>VaultAPI</artifactId>
<version>1.8.33</version> <version>1.6</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>me.minebuilders</groupId> <groupId>org.yi.acru.bukkit</groupId>
<artifactId>clearlag</artifactId> <artifactId>lockette</artifactId>
<version>2.9.1</version> <version>1.8.36</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.griefcraft.lwc</groupId> <groupId>me.minebuilders</groupId>
<artifactId>lwc-entity-locking</artifactId> <artifactId>clearlag</artifactId>
<version>1.7.3</version> <version>2.9.1</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> <dependency>
<groupId>com.griefcraft.lwc</groupId>
<build> <artifactId>lwc-entity-locking</artifactId>
<resources> <version>1.7.3</version>
<resource> <scope>provided</scope>
<directory>src/main/resources</directory> </dependency>
<targetPath>.</targetPath> </dependencies>
</resource>
</resources> <distributionManagement>
<plugins> <repository>
<plugin> <id>internal-maven-repo</id>
<groupId>org.apache.maven.plugins</groupId> <url>file://${project.build.directory}/gh-pages/maven</url>
<artifactId>maven-shade-plugin</artifactId> </repository>
<version>2.4.3</version> </distributionManagement>
<executions>
<execution> <build>
<phase>package</phase> <resources>
<goals> <resource>
<goal>shade</goal> <directory>src/main/resources</directory>
</goals> <targetPath>.</targetPath>
</execution> </resource>
</executions> </resources>
</plugin> <plugins>
</plugins> <plugin>
</build> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<doctitle>ShopChest ${project.version} API</doctitle>
<windowtitle>ShopChest ${project.version} API</windowtitle>
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
<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>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.12</version>
<configuration>
<message>Maven artifacts for ${project.artifactId} v${project.version}</message>
<outputDirectory>${project.build.directory}/gh-pages</outputDirectory>
<branch>refs/heads/gh-pages</branch>
<noJekyll>true</noJekyll>
<merge>true</merge>
<repositoryName>ShopChest</repositoryName>
<repositoryOwner>EpicEricEE</repositoryOwner>
</configuration>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -0,0 +1 @@
acba32fc0aa326f8e2a321ab476b03f9

View File

@ -0,0 +1 @@
62ba90854f9558d284ed8136f79d77f5c562b382

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>de.epiceric</groupId>
<artifactId>ShopChest-Root</artifactId>
<versioning>
<release>1.8.0</release>
<versions>
<version>1.8.0</version>
</versions>
<lastUpdated>20160705130037</lastUpdated>
</versioning>
</metadata>

View File

@ -0,0 +1 @@
1a51843922e0f2e982022d3949b98110

View File

@ -0,0 +1 @@
52e81f3b48fe4bd9679c04e227eac0a0098f27fc