mirror of
https://github.com/amalthea-mc/ShopChest.git
synced 2024-11-08 19:51:05 +00:00
Updated Maven Artifact
Artifact: ShopChest Version: 1.10.2 Timestamp: 20160818-1538
This commit is contained in:
parent
43b6f6de83
commit
b656f2f119
BIN
maven/de/epiceric/ShopChest/1.10.2/ShopChest-1.10.2-javadoc.jar
Normal file
BIN
maven/de/epiceric/ShopChest/1.10.2/ShopChest-1.10.2-javadoc.jar
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
57e2143c452c499d61c70bd64510629a
|
@ -0,0 +1 @@
|
||||
107e7b18d96b66f2b3204c89c285a917c565ddfc
|
BIN
maven/de/epiceric/ShopChest/1.10.2/ShopChest-1.10.2.jar
Normal file
BIN
maven/de/epiceric/ShopChest/1.10.2/ShopChest-1.10.2.jar
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
c15085021da90ded48cc1bd852441938
|
@ -0,0 +1 @@
|
||||
f861671cecf40c0cc2fc562e305f7613ed449d37
|
117
maven/de/epiceric/ShopChest/1.10.2/ShopChest-1.10.2.pom
Normal file
117
maven/de/epiceric/ShopChest/1.10.2/ShopChest-1.10.2.pom
Normal file
@ -0,0 +1,117 @@
|
||||
<?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</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.10.2</version>
|
||||
<name>ShopChest</name>
|
||||
<url>https://www.spigotmc.org/resources/shopchest.11431/</url>
|
||||
<description>Let your players create their own nice-looking shops to sell their stuff to other players!</description>
|
||||
|
||||
<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>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spigot-repo</id>
|
||||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</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>net.milkbowl.vault</groupId>
|
||||
<artifactId>VaultAPI</artifactId>
|
||||
<version>1.6</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-javadoc-plugin</artifactId>
|
||||
<version>2.10.4</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<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 @@
|
||||
7d6ae9b3636ea03833b70b9dd108a1c4
|
@ -0,0 +1 @@
|
||||
a74695deb70dfdb63121835392829062ad7c3481
|
@ -3,10 +3,10 @@
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest</artifactId>
|
||||
<versioning>
|
||||
<release>1.10.1</release>
|
||||
<release>1.10.2</release>
|
||||
<versions>
|
||||
<version>1.10.1</version>
|
||||
<version>1.10.2</version>
|
||||
</versions>
|
||||
<lastUpdated>20160817193009</lastUpdated>
|
||||
<lastUpdated>20160818133833</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
||||
|
@ -1 +1 @@
|
||||
cc8c50375c3071c24b3c4011035101f5
|
||||
1c2029ac6cc638da0f4d52b97fbb78d3
|
@ -1 +1 @@
|
||||
06ee8419e106c1f33502695fe2d60481428b1e77
|
||||
2c7ff2a816acc1c742be89f7f98da6cb28cb2e95
|
Loading…
Reference in New Issue
Block a user