2016-04-13 05:48:26 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2016-12-06 19:47:49 +01:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2016-04-13 05:48:26 +02:00
|
|
|
<groupId>eu.univento</groupId>
|
|
|
|
<artifactId>Core</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2017-09-07 22:36:54 +02:00
|
|
|
<name>univento.eu Core System</name>
|
2016-06-25 15:42:06 +02:00
|
|
|
|
2016-04-13 05:48:26 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2016-09-19 17:21:39 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-12-06 19:47:49 +01:00
|
|
|
<version>3.6.0</version>
|
2016-09-19 17:21:39 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2.1</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>eu.univento.core.Core</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2016-08-03 00:15:45 +02:00
|
|
|
</plugin>
|
2016-04-13 05:48:26 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
2016-10-28 23:50:06 +02:00
|
|
|
<dependency>
|
2016-11-24 19:52:24 +01:00
|
|
|
<groupId>com.destroystokyo.paper</groupId>
|
|
|
|
<artifactId>paper-api</artifactId>
|
2017-09-07 22:36:54 +02:00
|
|
|
<version>1.12.1-R0.1-SNAPSHOT</version>
|
2016-08-03 00:15:45 +02:00
|
|
|
<scope>provided</scope>
|
2016-07-28 20:17:25 +02:00
|
|
|
</dependency>
|
2016-06-25 15:42:06 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
2016-07-09 13:14:19 +02:00
|
|
|
<artifactId>craftbukkit</artifactId>
|
2017-09-07 22:36:54 +02:00
|
|
|
<version>1.12.1-R0.1-SNAPSHOT</version>
|
2016-11-24 19:52:24 +01:00
|
|
|
<scope>provided</scope>
|
2016-07-09 13:14:19 +02:00
|
|
|
</dependency>
|
2017-06-04 13:42:10 +02:00
|
|
|
|
2018-01-15 12:25:45 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib-API</artifactId>
|
|
|
|
<version>4.3.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.dmulloy2</groupId>
|
|
|
|
<artifactId>PacketWrapper</artifactId>
|
|
|
|
<version>master-2b4bfddd12-1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2016-10-11 23:20:58 +02:00
|
|
|
<dependency>
|
2016-11-24 19:52:24 +01:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2017-09-07 22:36:54 +02:00
|
|
|
<version>1.16.16</version>
|
2016-10-11 23:20:58 +02:00
|
|
|
</dependency>
|
2017-06-04 13:42:10 +02:00
|
|
|
|
2016-12-06 19:47:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>co.aikar</groupId>
|
|
|
|
<artifactId>taskchain-bukkit</artifactId>
|
2017-09-07 22:36:54 +02:00
|
|
|
<version>3.6.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>pl.kacperduras</groupId>
|
|
|
|
<artifactId>tasket-core</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
<scope>compile</scope>
|
2016-12-06 19:47:49 +01:00
|
|
|
</dependency>
|
2017-09-07 22:36:54 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>pl.kacperduras</groupId>
|
|
|
|
<artifactId>tasket-bukkit</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2017-06-04 13:42:10 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.lordakkarin</groupId>
|
|
|
|
<artifactId>nbt</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2017-09-07 22:36:54 +02:00
|
|
|
<!--
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.timtomtim7</groupId>
|
|
|
|
<artifactId>ChatMenuAPI</artifactId>
|
|
|
|
<version>v1.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
-->
|
|
|
|
|
2017-06-04 13:42:10 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>eu.univento</groupId>
|
2017-09-07 22:36:54 +02:00
|
|
|
<artifactId>commons</artifactId>
|
2017-06-04 13:42:10 +02:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2017-09-07 22:36:54 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.dytanic.cloudnet</groupId>
|
|
|
|
<artifactId>cloudnet-api</artifactId>
|
2018-01-15 12:25:45 +01:00
|
|
|
<version>LATEST</version>
|
2017-09-07 22:36:54 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-04-13 05:48:26 +02:00
|
|
|
</dependencies>
|
2016-06-25 15:42:06 +02:00
|
|
|
|
2016-04-13 05:48:26 +02:00
|
|
|
</project>
|