2018-10-18 23:43:52 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
2018-05-06 01:32:21 +02:00
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>UltimateKits</artifactId>
|
2018-10-18 23:43:52 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-09-24 18:31:45 +02:00
|
|
|
<version>2.6.11</version>
|
2018-05-06 01:32:21 +02:00
|
|
|
<build>
|
2018-11-15 12:10:28 +01:00
|
|
|
<defaultGoal>clean install</defaultGoal>
|
|
|
|
<finalName>UltimateKits-${project.version}</finalName>
|
2018-05-06 01:32:21 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2018-11-15 12:10:28 +01:00
|
|
|
<version>3.8.0</version>
|
2018-05-06 01:32:21 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-11-15 12:10:28 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
|
|
<artifactId>replacer</artifactId>
|
|
|
|
<version>1.5.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>replace</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<file>${project.build.directory}/classes/plugin.yml</file>
|
|
|
|
<replacements>
|
|
|
|
<replacement>
|
|
|
|
<token>maven-version-number</token>
|
|
|
|
<value>${project.version}</value>
|
|
|
|
</replacement>
|
|
|
|
</replacements>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-04-28 00:24:16 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>shaded</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2019-10-03 20:38:39 +02:00
|
|
|
<minimizeJar>true</minimizeJar>
|
2019-04-28 00:24:16 +02:00
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
2019-09-16 17:08:00 +02:00
|
|
|
<include>com.songoda:SongodaCore</include>
|
2019-08-06 20:48:28 +02:00
|
|
|
<include>com.zaxxer:HikariCP</include>
|
2019-11-19 22:08:32 +01:00
|
|
|
<include>org.slf4j:slf4j-api</include>
|
|
|
|
<include>org.slf4j:slf4j-nop</include>
|
2019-04-28 00:24:16 +02:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
2019-09-16 17:08:00 +02:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.songoda.core</pattern>
|
|
|
|
<shadedPattern>${project.groupId}.ultimatekits.core</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2019-04-28 00:24:16 +02:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-05-06 01:32:21 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2018-10-18 23:43:52 +02:00
|
|
|
<id>private</id>
|
2020-09-22 05:31:47 +02:00
|
|
|
<url>http://repo.songoda.com/repository/private/</url>
|
2018-05-07 18:44:35 +02:00
|
|
|
</repository>
|
2020-03-16 18:21:21 +01:00
|
|
|
<repository>
|
|
|
|
<id>public</id>
|
2020-09-22 05:31:47 +02:00
|
|
|
<url>https://repo.songoda.com/repository/public/</url>
|
2020-03-16 18:21:21 +01:00
|
|
|
</repository>
|
2019-07-21 04:50:35 +02:00
|
|
|
<repository>
|
2019-09-16 17:08:00 +02:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2019-07-21 04:50:35 +02:00
|
|
|
</repository>
|
2018-05-06 01:32:21 +02:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-08-29 01:07:49 +02:00
|
|
|
<groupId>org.spigotmc</groupId>
|
2019-12-11 23:43:53 +01:00
|
|
|
<artifactId>spigot</artifactId>
|
2020-07-17 17:24:43 +02:00
|
|
|
<version>1.16.1</version>
|
2019-09-16 17:08:00 +02:00
|
|
|
<scope>provided</scope>
|
2018-05-06 01:32:21 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-10-18 23:43:52 +02:00
|
|
|
<groupId>com.songoda</groupId>
|
2019-09-16 17:08:00 +02:00
|
|
|
<artifactId>SongodaCore</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
<scope>compile</scope>
|
2018-05-06 01:32:21 +02:00
|
|
|
</dependency>
|
2018-10-18 23:43:52 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.5.1</version>
|
2018-05-07 18:49:07 +02:00
|
|
|
</dependency>
|
2018-10-18 23:53:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.earth2me</groupId>
|
|
|
|
<artifactId>essentials</artifactId>
|
2019-08-20 00:28:20 +02:00
|
|
|
<version>2.17.1</version>
|
2018-10-18 23:53:55 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>bammerbom</groupId>
|
2020-03-22 08:32:56 +01:00
|
|
|
<artifactId>UltimateCore</artifactId>
|
|
|
|
<version>2.1.26</version>
|
2018-10-18 23:53:55 +02:00
|
|
|
</dependency>
|
2019-08-06 20:48:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zrips</groupId>
|
|
|
|
<artifactId>CMI</artifactId>
|
2020-06-11 18:14:15 +02:00
|
|
|
<version>8.6.26.9</version>
|
2019-08-06 20:48:28 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
<version>3.23.1</version>
|
|
|
|
</dependency>
|
2019-11-19 22:08:32 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.25</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-nop</artifactId>
|
|
|
|
<version>1.7.25</version>
|
|
|
|
</dependency>
|
2018-05-06 01:32:21 +02:00
|
|
|
</dependencies>
|
2018-07-19 23:43:39 +02:00
|
|
|
</project>
|