SongodaCore/Core/pom.xml

407 lines
14 KiB
XML
Raw Normal View History

<?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>
2019-09-12 20:41:26 +02:00
<parent>
<groupId>com.songoda</groupId>
<artifactId>SongodaCore-Modules</artifactId>
2021-12-18 18:18:47 +01:00
<version>2.6.8</version>
<relativePath>../pom.xml</relativePath>
2019-09-12 20:41:26 +02:00
</parent>
<artifactId>SongodaCore</artifactId>
<packaging>jar</packaging>
<build>
<finalName>SongodaCore-${project.version}</finalName>
2019-09-12 20:41:26 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
2019-09-12 20:41:26 +02:00
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<release>${java.release}</release>
2019-09-12 20:41:26 +02:00
</configuration>
</plugin>
2019-11-13 02:57:35 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
2019-11-13 02:57:35 +01:00
<executions>
<execution>
<id>attach-sources</id>
2019-11-13 02:57:35 +01:00
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
2019-09-15 19:26:12 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
2019-09-15 19:26:12 +02:00
<executions>
<execution>
<id>shaded</id>
<phase>package</phase>
2019-09-15 19:26:12 +02:00
<goals>
<goal>shade</goal>
</goals>
2019-09-15 19:26:12 +02:00
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>false</createDependencyReducedPom>
2019-09-15 19:26:12 +02:00
<artifactSet>
<includes>
<include>com.songoda:*</include>
<include>com.zaxxer:HikariCP</include>
2019-09-15 19:26:12 +02:00
</includes>
</artifactSet>
2019-09-15 19:26:12 +02:00
<filters>
<filter>
<artifact>*:*</artifact>
<includes>
<include>com/</include>
<include>META-INF/MANIFEST.MF</include>
<include>META-INF/maven/com.songoda/SongodaCore/</include>
</includes>
</filter>
</filters>
2019-09-15 19:26:12 +02:00
</configuration>
</execution>
</executions>
</plugin>
2019-09-12 20:41:26 +02:00
</plugins>
</build>
2019-09-12 20:41:26 +02:00
<dependencies>
<dependency>
2020-06-25 07:10:11 +02:00
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
2021-06-13 03:04:20 +02:00
<version>1.17</version>
2021-04-21 14:42:10 +02:00
<scope>provided</scope>
2019-09-12 20:41:26 +02:00
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-Compatibility</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2019-09-12 20:41:26 +02:00
<!-- Need to include all NMS modules here -->
2019-09-15 20:33:24 +02:00
<!-- Note when adding a new module: include the class in NmsManager -->
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-API</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_8_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2019-09-12 22:41:51 +02:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_8_R2</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_8_R3</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_9_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_9_R2</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_10_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_11_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_12_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_13_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_13_R2</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_14_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2019-12-11 20:22:01 +01:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_15_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2020-06-25 07:10:11 +02:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_16_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2020-08-14 00:17:58 +02:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_16_R2</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2020-11-03 15:42:33 +01:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_16_R3</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2021-06-13 03:04:20 +02:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_17_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2021-12-01 20:03:50 +01:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>SongodaCore-NMS-v1_18_R1</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
2019-09-12 20:41:26 +02:00
<!-- End NMS -->
2019-10-09 23:53:38 +02:00
<!-- Start Plugin Hooks -->
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-api</artifactId>
<version>2.3.2</version>
<scope>provided</scope>
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>com.sainttx</groupId>
2019-09-12 20:41:26 +02:00
<artifactId>Holograms</artifactId>
<version>2.13</version>
2019-09-12 20:41:26 +02:00
<scope>provided</scope>
</dependency>
2019-09-16 17:04:22 +02:00
<dependency>
<groupId>com.github.Zrips</groupId>
<artifactId>CMI-API</artifactId>
<version>7.6.2.0</version>
2019-09-16 17:04:22 +02:00
<scope>provided</scope>
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>net.tnemc</groupId>
<artifactId>Reserve</artifactId>
<version>0.1.3.0</version>
<scope>provided</scope>
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>org.black_ixx</groupId>
<artifactId>PlayerPoints</artifactId>
<version>2.1.4</version>
<scope>provided</scope>
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>net.milkbowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7.2</version>
<scope>provided</scope>
</dependency>
2019-10-09 23:53:38 +02:00
<dependency>
2020-03-16 16:55:43 +01:00
<groupId>com.sk89q</groupId>
2019-10-09 23:53:38 +02:00
<artifactId>worldguard-bukkit</artifactId>
<version>7.0.4</version>
2019-10-09 23:53:38 +02:00
<scope>provided</scope>
</dependency>
2019-10-09 23:53:38 +02:00
<dependency>
2020-03-16 16:55:43 +01:00
<groupId>com.sk89q</groupId>
2019-10-09 23:53:38 +02:00
<artifactId>worldedit-bukkit</artifactId>
2020-03-16 16:55:43 +01:00
<version>7.1.0</version>
2019-10-09 23:53:38 +02:00
<scope>provided</scope>
</dependency>
2019-10-09 23:53:38 +02:00
<dependency>
<groupId>com.songoda</groupId>
<artifactId>UltimateStacker</artifactId>
<version>2.1.1</version>
2019-10-09 23:53:38 +02:00
<scope>provided</scope>
</dependency>
2019-10-09 23:53:38 +02:00
<dependency>
<groupId>com.bgsoftware</groupId>
<artifactId>wildstacker</artifactId>
<version>3.5.1</version>
2019-10-09 23:53:38 +02:00
<scope>provided</scope>
</dependency>
2019-10-09 23:53:38 +02:00
<dependency>
<groupId>uk.antiperson</groupId>
<artifactId>stackmob</artifactId>
<version>4-0-2</version>
<scope>provided</scope>
</dependency>
2019-10-09 23:53:38 +02:00
<dependency>
<groupId>com.github.Zrips</groupId>
<artifactId>Jobs</artifactId>
<version>v4.17.2</version>
2019-10-09 23:53:38 +02:00
<scope>provided</scope>
</dependency>
2019-10-10 02:31:33 +02:00
<dependency>
<groupId>com.gmail.nossr50.mcMMO</groupId>
<artifactId>mcMMO</artifactId>
<version>2.1.200</version>
2019-10-10 02:31:33 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net</groupId>
<artifactId>coreprotect</artifactId>
<version>2.17.5</version>
<scope>provided</scope>
</dependency>
2021-01-11 23:48:23 +01:00
<dependency>
<groupId>me.ryanhamshire</groupId>
<artifactId>GriefPrevention</artifactId>
<version>16.16.0</version>
<scope>provided</scope>
</dependency>
2021-01-11 23:48:23 +01:00
<dependency>
<groupId>me.angeschossen</groupId>
<artifactId>LandsAPI</artifactId>
<version>4.12.20</version>
<scope>provided</scope>
</dependency>
2021-01-11 23:48:23 +01:00
<dependency>
<groupId>br.net.fabiozumbi12</groupId>
<artifactId>RedProtect</artifactId>
<version>7.7.2</version>
<scope>provided</scope>
</dependency>
2021-01-11 23:48:23 +01:00
<dependency>
<groupId>com.songoda</groupId>
<artifactId>UltimateClaims</artifactId>
<version>1.3.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.palmergames</groupId>
<artifactId>Towny</artifactId>
<version>0.96.5.0</version>
<scope>provided</scope>
2021-01-11 23:48:23 +01:00
</dependency>
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
<version>1.15.5</version>
<scope>provided</scope>
</dependency>
2021-08-29 23:44:17 +02:00
<dependency>
<groupId>com.Zrips</groupId>
<artifactId>Residence</artifactId>
<version>4.9.0.6</version>
<scope>provided</scope>
</dependency>
2019-10-09 23:53:38 +02:00
<!-- End Plugin Hooks -->
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1</version>
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.26</version>
2019-09-12 20:41:26 +02:00
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.7.25</version>
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>3.2.0</version>
</dependency>
2019-09-12 20:41:26 +02:00
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.23.1</version>
</dependency>
</dependencies>
</project>