mirror of
https://github.com/amalthea-mc/ShopChest.git
synced 2024-11-10 04:31:06 +00:00
Updated Maven Artifact
Artifact: ShopChest Version: 1.10.1 Timestamp: 20160817-2130
This commit is contained in:
parent
8932a194a6
commit
fd9fdf119c
BIN
maven/de/epiceric/ShopChest/1.10.1/ShopChest-1.10.1-javadoc.jar
Normal file
BIN
maven/de/epiceric/ShopChest/1.10.1/ShopChest-1.10.1-javadoc.jar
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
88e8009b8c0688de6fc931e282498ec2
|
@ -0,0 +1 @@
|
|||||||
|
5cf94e7c377fd65df02b8b8c5131b15d5c174d47
|
BIN
maven/de/epiceric/ShopChest/1.10.1/ShopChest-1.10.1.jar
Normal file
BIN
maven/de/epiceric/ShopChest/1.10.1/ShopChest-1.10.1.jar
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
ec9f9713fc7c5fd9f57ab61f27b36913
|
@ -0,0 +1 @@
|
|||||||
|
bf7c9a6bc5a1e39d6de371013fe4b4746d68b561
|
117
maven/de/epiceric/ShopChest/1.10.1/ShopChest-1.10.1.pom
Normal file
117
maven/de/epiceric/ShopChest/1.10.1/ShopChest-1.10.1.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.1</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 @@
|
|||||||
|
d6dfdabb990706c4fdeb15159e98d726
|
@ -0,0 +1 @@
|
|||||||
|
7f5d8c23713cf9e48475568e498f12885b21ab75
|
@ -3,10 +3,10 @@
|
|||||||
<groupId>de.epiceric</groupId>
|
<groupId>de.epiceric</groupId>
|
||||||
<artifactId>ShopChest</artifactId>
|
<artifactId>ShopChest</artifactId>
|
||||||
<versioning>
|
<versioning>
|
||||||
<release>1.10.0</release>
|
<release>1.10.1</release>
|
||||||
<versions>
|
<versions>
|
||||||
<version>1.10.0</version>
|
<version>1.10.1</version>
|
||||||
</versions>
|
</versions>
|
||||||
<lastUpdated>20160816180850</lastUpdated>
|
<lastUpdated>20160817193009</lastUpdated>
|
||||||
</versioning>
|
</versioning>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
@ -1 +1 @@
|
|||||||
fded8fa50fe128c071ac723da3de50aa
|
cc8c50375c3071c24b3c4011035101f5
|
@ -1 +1 @@
|
|||||||
db3f46fcbad000ac90edbdd672542547ce10f73e
|
06ee8419e106c1f33502695fe2d60481428b1e77
|
Loading…
Reference in New Issue
Block a user