mirror of
https://github.com/EpicEricEE/ShopChest.git
synced 2024-11-04 17:59:52 +01:00
Updated Maven Artifact
Artifact: ShopChest-Root Version: 1.9.1 Timestamp: 20160803-1634
This commit is contained in:
parent
b92b6c28f0
commit
43cddcd95e
181
maven/de/epiceric/ShopChest-Root/1.9.1/ShopChest-Root-1.9.1.pom
Normal file
181
maven/de/epiceric/ShopChest-Root/1.9.1/ShopChest-Root-1.9.1.pom
Normal file
@ -0,0 +1,181 @@
|
||||
<?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>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>1.9.1</version>
|
||||
<name>ShopChest</name>
|
||||
<url>https://www.spigotmc.org/resources/shopchest.11431/</url>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>1.7</maven.compiler.source>
|
||||
<maven.compiler.target>1.7</maven.compiler.target>
|
||||
|
||||
<github.global.server>github</github.global.server>
|
||||
</properties>
|
||||
|
||||
<modules>
|
||||
<module>ShopChest</module>
|
||||
<module>ShopChest NMS-Abstract</module>
|
||||
<module>ShopChest NMS-v1_8_R1</module>
|
||||
<module>ShopChest NMS-v1_8_R2</module>
|
||||
<module>ShopChest NMS-v1_8_R3</module>
|
||||
<module>ShopChest NMS-v1_9_R1</module>
|
||||
<module>ShopChest NMS-v1_9_R2</module>
|
||||
<module>ShopChest NMS-v1_10_R1</module>
|
||||
</modules>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spigot-repo</id>
|
||||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>shopchest-repo</id>
|
||||
<url>https://epicericee.github.io/ShopChest/maven/</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>vault-repo</id>
|
||||
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
|
||||
</repository>
|
||||
</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>org.bukkit</groupId>
|
||||
<artifactId>bukkit</artifactId>
|
||||
<version>1.10.2-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>net.milkbowl.vault</groupId>
|
||||
<artifactId>VaultAPI</artifactId>
|
||||
<version>1.6</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.yi.acru.bukkit</groupId>
|
||||
<artifactId>lockette</artifactId>
|
||||
<version>1.8.36</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>me.minebuilders</groupId>
|
||||
<artifactId>clearlag</artifactId>
|
||||
<version>2.9.1</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.griefcraft.lwc</groupId>
|
||||
<artifactId>lwc-entity-locking</artifactId>
|
||||
<version>1.7.3</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>internal-maven-repo</id>
|
||||
<url>file://${project.build.directory}/gh-pages/maven</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
|
||||
<build>
|
||||
<finalName>${project.artifactId}</finalName>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
<targetPath>.</targetPath>
|
||||
<filtering>true</filtering>
|
||||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<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>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>aggregate</id>
|
||||
<goals>
|
||||
<goal>aggregate</goal>
|
||||
</goals>
|
||||
<phase>site</phase>
|
||||
<configuration>
|
||||
<doctitle>ShopChest ${project.version} API</doctitle>
|
||||
<windowtitle>ShopChest ${project.version} API</windowtitle>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>jar</id>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
<phase>package</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>
|
||||
<javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.github.github</groupId>
|
||||
<artifactId>site-maven-plugin</artifactId>
|
||||
<version>0.12</version>
|
||||
<configuration>
|
||||
<message>
|
||||
Updated Maven Artifact
|
||||
|
||||
Artifact: ${project.artifactId}
|
||||
Version: ${project.version}
|
||||
Timestamp: ${maven.build.timestamp}
|
||||
</message>
|
||||
<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>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
@ -0,0 +1 @@
|
||||
21c950884ce3a1416812df3e8c4c739b
|
@ -0,0 +1 @@
|
||||
3ed788570cd2adb905871b7c84bafae9751b4503
|
@ -3,10 +3,10 @@
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<versioning>
|
||||
<release>1.9.0.1</release>
|
||||
<release>1.9.1</release>
|
||||
<versions>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
</versions>
|
||||
<lastUpdated>20160714143620</lastUpdated>
|
||||
<lastUpdated>20160803143411</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
||||
|
@ -1 +1 @@
|
||||
587753b9cdf4ce1339889d525244113d
|
||||
16e57cc212b519f70598c7cbf771a09b
|
@ -1 +1 @@
|
||||
e4165c9a08f4ff5b7c4ff8b06be4d07a3368ab52
|
||||
6cd3af3f04504acfade4fe65fab2270b1cb9b6a2
|
Loading…
Reference in New Issue
Block a user