UltimateKits/pom.xml

242 lines
8.7 KiB
XML
Raw Normal View History

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>
2018-11-16 02:29:28 +01:00
<version>maven-version-number</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>
<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>
<artifactSet>
<includes>
<include>com.songoda:songodaupdater</include>
<include>com.zaxxer:HikariCP</include>
</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>
</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>
2019-02-03 22:01:56 +01:00
<url>http://repo.songoda.com/artifactory/private/</url>
2018-05-07 18:44:35 +02:00
</repository>
2019-07-21 04:50:35 +02:00
<repository>
<id>reserve-repo</id>
<url>https://dl.bintray.com/theneweconomy/java/</url>
</repository>
2018-05-06 01:32:21 +02:00
</repositories>
<dependencies>
<dependency>
2018-08-29 01:07:49 +02:00
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2019-05-22 01:33:29 +02:00
<version>1.14.1</version>
2018-05-06 01:32:21 +02:00
</dependency>
<dependency>
2018-10-18 23:43:52 +02:00
<groupId>com.songoda</groupId>
<artifactId>songodaupdater</artifactId>
<version>1</version>
2018-05-06 01:32:21 +02:00
</dependency>
<dependency>
2018-10-18 23:43:52 +02:00
<groupId>org</groupId>
<artifactId>kingdoms</artifactId>
2019-03-09 23:37:26 +01:00
<version>13.0.9</version>
2018-05-06 01:32:21 +02:00
</dependency>
<dependency>
2018-10-18 23:43:52 +02:00
<groupId>net.milkbowl</groupId>
<artifactId>vault</artifactId>
2019-03-09 23:37:26 +01:00
<version>1.7.1</version>
2018-05-06 01:32:21 +02:00
</dependency>
<dependency>
2018-10-18 23:43:52 +02:00
<groupId>me.ryanhamshire</groupId>
<artifactId>GriefPrevention</artifactId>
2019-03-09 23:37:26 +01:00
<version>16.6</version>
2018-05-06 01:32:21 +02:00
</dependency>
<dependency>
2018-10-18 23:43:52 +02:00
<groupId>com.sk89q</groupId>
<artifactId>worldedit</artifactId>
2019-03-09 23:37:26 +01:00
<version>7.0.0</version>
2018-05-06 01:32:21 +02:00
</dependency>
<dependency>
2018-10-18 23:43:52 +02:00
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>plotsquared</artifactId>
2019-03-09 23:37:26 +01:00
<version>3.5.0</version>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>com.palmergames.bukkit</groupId>
<artifactId>towny</artifactId>
2019-03-09 23:37:26 +01:00
<version>0.93.0.0</version>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>com.wasteofplastic</groupId>
<artifactId>askyblock</artifactId>
<version>3.0.6.8</version>
</dependency>
<dependency>
<groupId>us.talabrek</groupId>
<artifactId>ultimateskyblock</artifactId>
2019-03-09 23:37:26 +01:00
<version>2.7.2</version>
2018-05-06 01:32:21 +02:00
</dependency>
2018-05-07 18:53:58 +02:00
<dependency>
2018-10-18 23:43:52 +02:00
<groupId>me.markeh</groupId>
<artifactId>factionsframework</artifactId>
<version>1.2.0</version>
2018-05-07 18:53:58 +02:00
</dependency>
2018-05-07 18:49:07 +02:00
<dependency>
2018-10-18 23:43:52 +02:00
<groupId>br.net.fabiozumbi12</groupId>
<artifactId>RedProtect</artifactId>
<version>7.3.0</version>
</dependency>
<dependency>
2019-02-14 12:55:04 +01:00
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-api</artifactId>
2019-03-09 23:41:30 +01:00
<version>2.3.2</version>
2019-02-14 12:55:04 +01:00
<scope>provided</scope>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>com.gmail.nossr50</groupId>
<artifactId>mcmmo</artifactId>
2019-03-09 23:37:26 +01:00
<version>1.5.09</version>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>com.gamingmesh</groupId>
<artifactId>jobs</artifactId>
2019-03-09 23:37:26 +01:00
<version>4.6.0</version>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>me.botsko</groupId>
<artifactId>prism</artifactId>
2019-03-09 23:37:26 +01:00
<version>2.0.6</version>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>de.diddiz</groupId>
<artifactId>logblock</artifactId>
2019-03-09 23:37:26 +01:00
<version>1.10.0</version>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>net</groupId>
<artifactId>coreprotect</artifactId>
2019-03-09 23:37:26 +01:00
<version>2.14.2</version>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>uk.antiperson</groupId>
<artifactId>stackmob</artifactId>
2019-03-09 23:37:26 +01:00
<version>2.2.6</version>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>net.sothatsit</groupId>
<artifactId>blockstore</artifactId>
2019-03-09 23:37:26 +01:00
<version>1.5.0</version>
2018-10-18 23:43:52 +02:00
</dependency>
<dependency>
<groupId>org.black_ixx</groupId>
<artifactId>playerpoints</artifactId>
<version>2.1.4</version>
</dependency>
<dependency>
<groupId>xyz.wildseries</groupId>
<artifactId>wildstacker</artifactId>
<version>b6</version>
</dependency>
<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-03-09 23:37:26 +01:00
<version>2.0.1</version>
2018-10-18 23:53:55 +02:00
</dependency>
<dependency>
<groupId>bammerbom</groupId>
<artifactId>ultimatecore</artifactId>
2019-03-09 23:37:26 +01:00
<version>2.1.25</version>
2018-10-18 23:53:55 +02:00
</dependency>
<dependency>
<groupId>net.tnemc</groupId>
<artifactId>Reserve</artifactId>
<version>0.1.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.zrips</groupId>
<artifactId>CMI</artifactId>
<version>8.0.8.1</version>
</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>
2018-05-06 01:32:21 +02:00
</dependencies>
2018-07-19 23:43:39 +02:00
</project>