74 lines
2.5 KiB
XML
74 lines
2.5 KiB
XML
|
<?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>
|
||
|
|
||
|
<groupId>cc.invictusgames</groupId>
|
||
|
<artifactId>Osmium</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<sourceDirectory>src/main/java</sourceDirectory>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.2.4</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>8</source>
|
||
|
<target>8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>eu.vortexdev.invictusspigot</groupId>
|
||
|
<artifactId>server</artifactId>
|
||
|
<version>1.8.8-R0.2-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cc.invictusgames</groupId>
|
||
|
<artifactId>Invictus-Bukkit</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cc.invictusgames</groupId>
|
||
|
<artifactId>iLib-Bukkit</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.hcrival</groupId>
|
||
|
<artifactId>api</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.24</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|