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.4 Timestamp: 20160906-1155
This commit is contained in:
parent
626f3a1e30
commit
54481a4d46
BIN
maven/de/epiceric/ShopChest/1.10.4/ShopChest-1.10.4-javadoc.jar
Normal file
BIN
maven/de/epiceric/ShopChest/1.10.4/ShopChest-1.10.4-javadoc.jar
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
80a5d9ad5ad8ac2a56a5b0fbae05104a
|
@ -0,0 +1 @@
|
||||
be9f87fc0afaa7b5d333539f5a830976a23dc73e
|
BIN
maven/de/epiceric/ShopChest/1.10.4/ShopChest-1.10.4.jar
Normal file
BIN
maven/de/epiceric/ShopChest/1.10.4/ShopChest-1.10.4.jar
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
2888e19da623ff9682a65bba70d377d8
|
@ -0,0 +1 @@
|
||||
e2224e7b36b7c820ef1f1a2f24e61db68cf6850d
|
134
maven/de/epiceric/ShopChest/1.10.4/ShopChest-1.10.4.pom
Normal file
134
maven/de/epiceric/ShopChest/1.10.4/ShopChest-1.10.4.pom
Normal file
@ -0,0 +1,134 @@
|
||||
<?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.4</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>
|
||||
|
||||
<javadoc.opts><!-- Only jdk 1.8 and later --></javadoc.opts>
|
||||
</properties>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>doclint-java8</id>
|
||||
<activation>
|
||||
<jdk>[1.8,)</jdk>
|
||||
</activation>
|
||||
<properties>
|
||||
<javadoc.opts>-Xdoclint:none</javadoc.opts>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<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>
|
||||
<configuration>
|
||||
<additionalparam>${javadoc.opts}</additionalparam>
|
||||
</configuration>
|
||||
<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 @@
|
||||
4c4f3847e156226b9cdcf4e28b6beb23
|
@ -0,0 +1 @@
|
||||
2f48af62aaa7dfabc6f96f917434f9761bb1d1e3
|
@ -3,10 +3,10 @@
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest</artifactId>
|
||||
<versioning>
|
||||
<release>1.10.3</release>
|
||||
<release>1.10.4</release>
|
||||
<versions>
|
||||
<version>1.10.3</version>
|
||||
<version>1.10.4</version>
|
||||
</versions>
|
||||
<lastUpdated>20160819140043</lastUpdated>
|
||||
<lastUpdated>20160906095600</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
||||
|
@ -1 +1 @@
|
||||
1809ded540dccd005536982d93dd2391
|
||||
0b713ed61058116ee2e0bd5d3c2b4b2b
|
@ -1 +1 @@
|
||||
95aa9165a25d4202557aa5705b8b1b19a7a05c2f
|
||||
676d1947c6815ee14e465c554ab1d893b5ce2dc1
|
Loading…
Reference in New Issue
Block a user