2015-09-12 18:17:41 +02:00
|
|
|
<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>at.pcgamingfreaks</groupId>
|
2016-11-23 21:06:45 +01:00
|
|
|
<artifactId>Minepacks</artifactId>
|
2019-04-26 00:09:42 +02:00
|
|
|
<version>2.0-RC1-SNAPSHOT</version>
|
2015-09-12 18:17:41 +02:00
|
|
|
|
|
|
|
<scm>
|
2018-05-22 13:55:39 +02:00
|
|
|
<connection>scm:git:git@github.com:GeorgH93/Minepacks.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:GeorgH93/Minepacks.git</developerConnection>
|
|
|
|
<url>git@github.com:GeorgH93/Minepacks.git</url>
|
2015-09-12 18:17:41 +02:00
|
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
2018-05-22 13:55:39 +02:00
|
|
|
<url>https://github.com/GeorgH93/Minepacks/issues</url>
|
2015-09-12 18:17:41 +02:00
|
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
|
|
<system>jenkins</system>
|
2017-02-28 22:58:27 +01:00
|
|
|
<url>https://ci.pcgamingfreaks.at/job/Minepacks/</url>
|
2015-09-12 18:17:41 +02:00
|
|
|
</ciManagement>
|
|
|
|
|
2016-11-23 21:06:45 +01:00
|
|
|
<name>Minepacks</name>
|
|
|
|
<description>Minepacks is a backpack plugin with different backpack sizes, multi language support and SQLite and MySQL storage support.</description>
|
2015-09-12 18:17:41 +02:00
|
|
|
<inceptionYear>2014</inceptionYear>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GNU General Public License (GPL) v3</name>
|
|
|
|
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2016-12-19 22:06:08 +01:00
|
|
|
<properties>
|
|
|
|
<author>GeorgH93</author>
|
2018-05-18 18:33:38 +02:00
|
|
|
<website>https://www.spigotmc.org/resources/19286/</website>
|
2019-05-30 02:36:25 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<dependencies>PCGF_PluginLib</dependencies>
|
|
|
|
<mainClass>${project.groupId}.${project.artifactId}.Bukkit.${project.artifactId}</mainClass>
|
2016-12-19 22:06:08 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
2015-09-12 18:17:41 +02:00
|
|
|
|
|
|
|
<repositories>
|
2015-09-16 13:31:39 +02:00
|
|
|
<repository>
|
|
|
|
<id>pcgf-repo</id>
|
2019-05-10 02:01:55 +02:00
|
|
|
<url>https://repo.pcgamingfreaks.at/repository/maven-everything/</url>
|
2015-09-16 13:31:39 +02:00
|
|
|
</repository>
|
2016-11-06 18:09:23 +01:00
|
|
|
<repository>
|
|
|
|
<id>spigot-nexus</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
2015-09-12 18:17:41 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2019-05-10 02:01:55 +02:00
|
|
|
<!-- Minepacks API -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>at.pcgamingfreaks</groupId>
|
|
|
|
<artifactId>Minepacks-API</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>at.pcgamingfreaks</groupId>
|
|
|
|
<artifactId>PluginLib</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<!-- Bukkit -->
|
2015-09-12 18:17:41 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2019-01-15 16:48:56 +01:00
|
|
|
<version>1.13.2-R0.1-SNAPSHOT</version>
|
2015-09-12 18:17:41 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-05-10 02:01:55 +02:00
|
|
|
<!-- PCGF Plugin Lib -->
|
2015-09-16 13:31:39 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>at.pcgamingfreaks</groupId>
|
2016-12-19 22:06:08 +01:00
|
|
|
<artifactId>PluginLib</artifactId>
|
2019-05-30 02:36:25 +02:00
|
|
|
<version>1.0.11-SNAPSHOT</version>
|
2015-09-16 13:31:39 +02:00
|
|
|
</dependency>
|
2015-09-12 18:17:41 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2019-05-10 02:01:55 +02:00
|
|
|
<defaultGoal>clean package</defaultGoal>
|
2015-09-12 18:17:41 +02:00
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
2018-05-18 18:33:38 +02:00
|
|
|
<resource>
|
|
|
|
<directory>./</directory>
|
|
|
|
<includes>
|
|
|
|
<include>LICENSE</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
2015-09-12 18:17:41 +02:00
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
2017-06-10 20:30:39 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2015-09-12 18:17:41 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-05-10 02:01:55 +02:00
|
|
|
<!-- Bundle the API into the JAR -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<minimizeJar>false</minimizeJar>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>at.pcgamingfreaks:Minepacks-API</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-09-12 18:17:41 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2019-05-30 02:36:25 +02:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>Standalone</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<version>${project.version}-Standalone</version>
|
|
|
|
<dependencies/>
|
|
|
|
<mainClass>${project.groupId}.${project.artifactId}Standalone.Bukkit.${project.artifactId}</mainClass>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}Standalone-${project.version}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<!-- Shades some required libs into the final jar -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>at.pcgamingfreaks:Minepacks-API</include>
|
|
|
|
<include>at.pcgamingfreaks:PluginLib</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>at.pcgf.libs</pattern>
|
|
|
|
<shadedPattern>at.pcgamingfreaks.MinepacksStandalone.libs</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>at.pcgamingfreaks.Minepacks</pattern>
|
|
|
|
<shadedPattern>at.pcgamingfreaks.MinepacksStandalone</shadedPattern>
|
|
|
|
<excludes>
|
|
|
|
<exclude>at.pcgamingfreaks.Minepacks.Bukkit.API.*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>at.pcgamingfreaks</pattern>
|
|
|
|
<shadedPattern>at.pcgamingfreaks.MinepacksStandalone.libs.at.pcgamingfreaks</shadedPattern>
|
|
|
|
<excludes>
|
|
|
|
<exclude>at.pcgamingfreaks.Minepacks.Bukkit.API.*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>at.pcgamingfreaks:PluginLib</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>*.yml</exclude>
|
|
|
|
<exclude>META-INF/*.txt</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2015-09-12 18:17:41 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>releases</id>
|
2017-10-19 17:30:00 +02:00
|
|
|
<url>https://repo.pcgamingfreaks.at/repository/maven-releases/</url>
|
2015-09-12 18:17:41 +02:00
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>snapshots</id>
|
2017-10-19 17:30:00 +02:00
|
|
|
<url>https://repo.pcgamingfreaks.at/repository/maven-snapshots/</url>
|
2015-09-12 18:17:41 +02:00
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2015-01-01 21:06:50 +01:00
|
|
|
</project>
|