mirror of
https://github.com/amalthea-mc/ShopChest.git
synced 2024-11-10 04:31:06 +00:00
Added Maven Repository
Contains: - ShopChest - LWC Entity Locking - ClearLag - Lockette
This commit is contained in:
parent
9cf0482327
commit
03e4d6ace9
Binary file not shown.
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.griefcraft.lwc</groupId>
|
||||
<artifactId>lwc-entity-locking</artifactId>
|
||||
<version>1.7.3</version>
|
||||
<description>POM was created from install:install-file</description>
|
||||
</project>
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>com.griefcraft.lwc</groupId>
|
||||
<artifactId>lwc-entity-locking</artifactId>
|
||||
<versioning>
|
||||
<release>1.7.3</release>
|
||||
<versions>
|
||||
<version>1.7.3</version>
|
||||
</versions>
|
||||
<lastUpdated>20160702183724</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
103
maven/de/epiceric/ShopChest-Root/1.8.0/ShopChest-Root-1.8.0.pom
Normal file
103
maven/de/epiceric/ShopChest-Root/1.8.0/ShopChest-Root-1.8.0.pom
Normal file
@ -0,0 +1,103 @@
|
||||
<?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.8.0</version>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>1.7</maven.compiler.source>
|
||||
<maven.compiler.target>1.7</maven.compiler.target>
|
||||
</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>
|
||||
</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.5</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.yi.acru.bukkit.lockette</groupId>
|
||||
<artifactId>lockette</artifactId>
|
||||
<version>1.8.33</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>
|
||||
|
||||
<build>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
<targetPath>.</targetPath>
|
||||
</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>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
@ -0,0 +1,3 @@
|
||||
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Jul 03 16:55:30 CEST 2016
|
||||
ShopChest-Root-1.8.0.pom>=
|
12
maven/de/epiceric/ShopChest-Root/maven-metadata-local.xml
Normal file
12
maven/de/epiceric/ShopChest-Root/maven-metadata-local.xml
Normal 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>20160703145530</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
BIN
maven/de/epiceric/ShopChest/1.8.0/ShopChest-1.8.0.jar
Normal file
BIN
maven/de/epiceric/ShopChest/1.8.0/ShopChest-1.8.0.jar
Normal file
Binary file not shown.
111
maven/de/epiceric/ShopChest/1.8.0/ShopChest-1.8.0.pom
Normal file
111
maven/de/epiceric/ShopChest/1.8.0/ShopChest-1.8.0.pom
Normal file
@ -0,0 +1,111 @@
|
||||
<?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/maven-v4_0_0.xsd">
|
||||
<parent>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<version>1.8.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>ShopChest</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>craftbukkit</artifactId>
|
||||
<version>1.10-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.spigotmc</groupId>
|
||||
<artifactId>spigot-api</artifactId>
|
||||
<version>1.10.2-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<groupId>commons-lang</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>json-simple</artifactId>
|
||||
<groupId>com.googlecode.json-simple</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>guava</artifactId>
|
||||
<groupId>com.google.guava</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>gson</artifactId>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>ebean</artifactId>
|
||||
<groupId>org.avaje</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>snakeyaml</artifactId>
|
||||
<groupId>org.yaml</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>bungeecord-chat</artifactId>
|
||||
<groupId>net.md-5</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>bukkit</artifactId>
|
||||
<version>1.10.2-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>commons-lang</artifactId>
|
||||
<groupId>commons-lang</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>json-simple</artifactId>
|
||||
<groupId>com.googlecode.json-simple</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>guava</artifactId>
|
||||
<groupId>com.google.guava</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>gson</artifactId>
|
||||
<groupId>com.google.code.gson</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>ebean</artifactId>
|
||||
<groupId>org.avaje</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>snakeyaml</artifactId>
|
||||
<groupId>org.yaml</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.milkbowl.vault</groupId>
|
||||
<artifactId>VaultAPI</artifactId>
|
||||
<version>1.5</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.yi.acru.bukkit.lockette</groupId>
|
||||
<artifactId>lockette</artifactId>
|
||||
<version>1.8.33</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>
|
||||
</project>
|
||||
|
4
maven/de/epiceric/ShopChest/1.8.0/_maven.repositories
Normal file
4
maven/de/epiceric/ShopChest/1.8.0/_maven.repositories
Normal file
@ -0,0 +1,4 @@
|
||||
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Jul 03 16:55:36 CEST 2016
|
||||
ShopChest-1.8.0.jar>=
|
||||
ShopChest-1.8.0.pom>=
|
12
maven/de/epiceric/ShopChest/maven-metadata-local.xml
Normal file
12
maven/de/epiceric/ShopChest/maven-metadata-local.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest</artifactId>
|
||||
<versioning>
|
||||
<release>1.8.0</release>
|
||||
<versions>
|
||||
<version>1.8.0</version>
|
||||
</versions>
|
||||
<lastUpdated>20160703145536</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
Binary file not shown.
@ -0,0 +1,14 @@
|
||||
<?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">
|
||||
<parent>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<version>1.8.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ShopChest_NMS-Abstract</artifactId>
|
||||
|
||||
</project>
|
@ -0,0 +1,4 @@
|
||||
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Jul 03 16:55:31 CEST 2016
|
||||
ShopChest_NMS-Abstract-1.8.0.pom>=
|
||||
ShopChest_NMS-Abstract-1.8.0.jar>=
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-Abstract</artifactId>
|
||||
<versioning>
|
||||
<release>1.8.0</release>
|
||||
<versions>
|
||||
<version>1.8.0</version>
|
||||
</versions>
|
||||
<lastUpdated>20160703145531</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
Binary file not shown.
@ -0,0 +1,29 @@
|
||||
<?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">
|
||||
<parent>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<version>1.8.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ShopChest_NMS-v1_10_R1</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>craftbukkit</artifactId>
|
||||
<version>1.10-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-Abstract</artifactId>
|
||||
<version>1.8.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
@ -0,0 +1,4 @@
|
||||
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Jul 03 16:55:34 CEST 2016
|
||||
ShopChest_NMS-v1_10_R1-1.8.0.jar>=
|
||||
ShopChest_NMS-v1_10_R1-1.8.0.pom>=
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-v1_10_R1</artifactId>
|
||||
<versioning>
|
||||
<release>1.8.0</release>
|
||||
<versions>
|
||||
<version>1.8.0</version>
|
||||
</versions>
|
||||
<lastUpdated>20160703145534</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
Binary file not shown.
@ -0,0 +1,29 @@
|
||||
<?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">
|
||||
<parent>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<version>1.8.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ShopChest_NMS-v1_8_R1</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>craftbukkit</artifactId>
|
||||
<version>1.8-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-Abstract</artifactId>
|
||||
<version>1.8.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
@ -0,0 +1,4 @@
|
||||
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Jul 03 16:55:31 CEST 2016
|
||||
ShopChest_NMS-v1_8_R1-1.8.0.pom>=
|
||||
ShopChest_NMS-v1_8_R1-1.8.0.jar>=
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-v1_8_R1</artifactId>
|
||||
<versioning>
|
||||
<release>1.8.0</release>
|
||||
<versions>
|
||||
<version>1.8.0</version>
|
||||
</versions>
|
||||
<lastUpdated>20160703145531</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
Binary file not shown.
@ -0,0 +1,30 @@
|
||||
<?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">
|
||||
<parent>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<version>1.8.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ShopChest_NMS-v1_8_R2</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>craftbukkit</artifactId>
|
||||
<version>1.8.3-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-Abstract</artifactId>
|
||||
<version>1.8.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
</project>
|
@ -0,0 +1,4 @@
|
||||
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Jul 03 16:55:32 CEST 2016
|
||||
ShopChest_NMS-v1_8_R2-1.8.0.jar>=
|
||||
ShopChest_NMS-v1_8_R2-1.8.0.pom>=
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-v1_8_R2</artifactId>
|
||||
<versioning>
|
||||
<release>1.8.0</release>
|
||||
<versions>
|
||||
<version>1.8.0</version>
|
||||
</versions>
|
||||
<lastUpdated>20160703145532</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
Binary file not shown.
@ -0,0 +1,30 @@
|
||||
<?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">
|
||||
<parent>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<version>1.8.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ShopChest_NMS-v1_8_R3</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>craftbukkit</artifactId>
|
||||
<version>1.8.8-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-Abstract</artifactId>
|
||||
<version>1.8.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
@ -0,0 +1,4 @@
|
||||
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Jul 03 16:55:32 CEST 2016
|
||||
ShopChest_NMS-v1_8_R3-1.8.0.pom>=
|
||||
ShopChest_NMS-v1_8_R3-1.8.0.jar>=
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-v1_8_R3</artifactId>
|
||||
<versioning>
|
||||
<release>1.8.0</release>
|
||||
<versions>
|
||||
<version>1.8.0</version>
|
||||
</versions>
|
||||
<lastUpdated>20160703145532</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
Binary file not shown.
@ -0,0 +1,29 @@
|
||||
<?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">
|
||||
<parent>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<version>1.8.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ShopChest_NMS-v1_9_R1</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>craftbukkit</artifactId>
|
||||
<version>1.9.2-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-Abstract</artifactId>
|
||||
<version>1.8.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
@ -0,0 +1,4 @@
|
||||
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Jul 03 16:55:33 CEST 2016
|
||||
ShopChest_NMS-v1_9_R1-1.8.0.pom>=
|
||||
ShopChest_NMS-v1_9_R1-1.8.0.jar>=
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-v1_9_R1</artifactId>
|
||||
<versioning>
|
||||
<release>1.8.0</release>
|
||||
<versions>
|
||||
<version>1.8.0</version>
|
||||
</versions>
|
||||
<lastUpdated>20160703145533</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
Binary file not shown.
@ -0,0 +1,29 @@
|
||||
<?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">
|
||||
<parent>
|
||||
<artifactId>ShopChest-Root</artifactId>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<version>1.8.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ShopChest_NMS-v1_9_R2</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>craftbukkit</artifactId>
|
||||
<version>1.9.4-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-Abstract</artifactId>
|
||||
<version>1.8.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
@ -0,0 +1,4 @@
|
||||
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
|
||||
#Sun Jul 03 16:55:34 CEST 2016
|
||||
ShopChest_NMS-v1_9_R2-1.8.0.jar>=
|
||||
ShopChest_NMS-v1_9_R2-1.8.0.pom>=
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>de.epiceric</groupId>
|
||||
<artifactId>ShopChest_NMS-v1_9_R2</artifactId>
|
||||
<versioning>
|
||||
<release>1.8.0</release>
|
||||
<versions>
|
||||
<version>1.8.0</version>
|
||||
</versions>
|
||||
<lastUpdated>20160703145534</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
BIN
maven/me/minebuilders/clearlag/2.9.1/clearlag-2.9.1.jar
Normal file
BIN
maven/me/minebuilders/clearlag/2.9.1/clearlag-2.9.1.jar
Normal file
Binary file not shown.
9
maven/me/minebuilders/clearlag/2.9.1/clearlag-2.9.1.pom
Normal file
9
maven/me/minebuilders/clearlag/2.9.1/clearlag-2.9.1.pom
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>me.minebuilders</groupId>
|
||||
<artifactId>clearlag</artifactId>
|
||||
<version>2.9.1</version>
|
||||
<description>POM was created from install:install-file</description>
|
||||
</project>
|
12
maven/me/minebuilders/clearlag/maven-metadata-local.xml
Normal file
12
maven/me/minebuilders/clearlag/maven-metadata-local.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>me.minebuilders</groupId>
|
||||
<artifactId>clearlag</artifactId>
|
||||
<versioning>
|
||||
<release>2.9.1</release>
|
||||
<versions>
|
||||
<version>2.9.1</version>
|
||||
</versions>
|
||||
<lastUpdated>20160702185036</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
Binary file not shown.
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.yi.acru.bukkit.lockette</groupId>
|
||||
<artifactId>lockette</artifactId>
|
||||
<version>1.8.33</version>
|
||||
<description>POM was created from install:install-file</description>
|
||||
</project>
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<metadata>
|
||||
<groupId>org.yi.acru.bukkit.lockette</groupId>
|
||||
<artifactId>lockette</artifactId>
|
||||
<versioning>
|
||||
<release>1.8.33</release>
|
||||
<versions>
|
||||
<version>1.8.33</version>
|
||||
</versions>
|
||||
<lastUpdated>20160702184529</lastUpdated>
|
||||
</versioning>
|
||||
</metadata>
|
Loading…
Reference in New Issue
Block a user