Minecraft-SSHD/pom.xml

92 lines
3.1 KiB
XML
Raw Normal View History

2013-11-14 07:17:51 +00: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>
<groupId>com.ryanmichela</groupId>
<artifactId>SSHD</artifactId>
2014-08-18 05:41:53 +00:00
<version>1.2</version>
2013-11-14 07:17:51 +00:00
<url>http://dev.bukkit.org/server-mods/sshd/</url>
<!-- Repositories -->
<repositories>
<repository>
2017-11-13 01:02:19 +00:00
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public</url>
2013-11-14 07:17:51 +00:00
</repository>
</repositories>
<!-- License -->
<licenses>
<license>
<name>GPL2</name>
<url>http://www.gnu.org/licenses/gpl-2.0.html</url>
</license>
</licenses>
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
2017-11-13 01:02:19 +00:00
<version>1.12.2-R0.1-SNAPSHOT</version>
<scope>system</scope>
2013-11-14 07:17:51 +00:00
<type>jar</type>
2017-11-13 01:02:19 +00:00
<systemPath>${basedir}/bukkit-build/bukkit.jar</systemPath>
2013-11-14 07:17:51 +00:00
</dependency>
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
2017-11-13 01:02:19 +00:00
<version>1.6.0</version>
2013-11-14 07:17:51 +00:00
<scope>compile</scope>
<type>jar</type>
</dependency>
</dependencies>
<!-- Build -->
<build>
<plugins>
<!-- Shade plugin -->
2017-11-13 01:02:19 +00:00
<!--<plugin>
2013-11-14 07:17:51 +00:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
2014-07-03 07:18:34 +00:00
<minimizeJar>true</minimizeJar>
2013-11-14 07:17:51 +00:00
</configuration>
2017-11-13 01:02:19 +00:00
</plugin>-->
2013-11-14 07:17:51 +00:00
<!-- Compile plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
2017-11-13 01:02:19 +00:00
<source>1.8</source>
<target>1.8</target>
2013-11-14 07:17:51 +00:00
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
<packaging>jar</packaging>
</project>