2017-05-30 21:36:39 +02:00
|
|
|
<?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>
|
2018-10-26 20:34:48 +02:00
|
|
|
<artifactId>EpicBosses</artifactId>
|
|
|
|
<groupId>com.songoda.epicbosses</groupId>
|
2018-11-19 06:52:07 +01:00
|
|
|
<version>maven-version-number</version>
|
2017-05-30 21:36:39 +02:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>Core</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-04-27 22:22:03 +02:00
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>FactionHelper</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2017-05-30 21:36:39 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-04-27 22:22:03 +02:00
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>FactionsM</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2017-05-30 21:36:39 +02:00
|
|
|
<scope>compile</scope>
|
2018-04-27 22:22:03 +02:00
|
|
|
</dependency><dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>FactionsOne</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2017-05-30 21:36:39 +02:00
|
|
|
<dependency>
|
2018-04-27 22:22:03 +02:00
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>FactionsUUID</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2017-05-30 21:36:39 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-04-27 22:22:03 +02:00
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>LegacyFactions</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2017-05-30 21:36:39 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2018-11-29 16:21:33 +01:00
|
|
|
<finalName>${parent.artifactId}-${plugin.version}</finalName>
|
2017-05-30 21:36:39 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2018-04-27 22:22:03 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2017-05-30 21:36:39 +02:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
2018-04-27 22:22:03 +02:00
|
|
|
<showDeprecation>false</showDeprecation>
|
2017-05-30 21:36:39 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2018-08-06 16:02:58 +02:00
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
2018-10-09 15:23:40 +02:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2018-08-06 16:02:58 +02:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
2018-10-26 06:44:07 +02:00
|
|
|
<shadedPattern>com.songoda.epicbosses.utils.bstats</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>utils.factions</pattern>
|
|
|
|
<shadedPattern>com.songoda.epicbosses.utils.factions</shadedPattern>
|
2018-08-06 16:02:58 +02:00
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
2017-05-30 21:36:39 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-12-01 17:49:50 +01:00
|
|
|
<!--<plugin>-->
|
|
|
|
<!--<groupId>org.apache.maven.plugins</groupId>-->
|
|
|
|
<!--<artifactId>maven-antrun-plugin</artifactId>-->
|
|
|
|
<!--<version>1.8</version>-->
|
|
|
|
<!--<executions>-->
|
|
|
|
<!--<execution>-->
|
|
|
|
<!--<phase>install</phase>-->
|
|
|
|
<!--<configuration>-->
|
|
|
|
<!--<target>-->
|
|
|
|
<!--<copy file="target/${build.finalName}.jar" tofile="D:/Servers/1.13.2/plugins/${build.finalName}.jar"/>-->
|
|
|
|
<!--</target>-->
|
|
|
|
<!--</configuration>-->
|
|
|
|
<!--<goals>-->
|
|
|
|
<!--<goal>run</goal>-->
|
|
|
|
<!--</goals>-->
|
|
|
|
<!--</execution>-->
|
|
|
|
<!--</executions>-->
|
|
|
|
<!--</plugin>-->
|
2017-05-30 21:36:39 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|