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>
|
2019-10-03 02:14:56 +00:00
|
|
|
<artifactId>sshd</artifactId>
|
|
|
|
<version>1.3.4.2</version>
|
|
|
|
<url>https://github.com/Justasic/Bukkit-SSHD/</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2013-11-14 07:17:51 +00:00
|
|
|
|
|
|
|
<!-- 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>
|
2018-03-25 19:11:01 +00:00
|
|
|
<artifactId>bukkit</artifactId>
|
2019-10-03 02:14:56 +00:00
|
|
|
<version>1.14.4-R0.1-SNAPSHOT</version>
|
2013-11-14 07:17:51 +00:00
|
|
|
</dependency>
|
2017-11-13 14:32:30 +00:00
|
|
|
|
2013-11-14 07:17:51 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.sshd</groupId>
|
|
|
|
<artifactId>sshd-core</artifactId>
|
2019-10-03 02:14:56 +00:00
|
|
|
<version>2.3.0</version>
|
2013-11-14 07:17:51 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2019-10-03 02:14:56 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.sshd</groupId>
|
|
|
|
<artifactId>sshd-mina</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.sshd</groupId>
|
|
|
|
<artifactId>sshd-common</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.sshd</groupId>
|
|
|
|
<artifactId>sshd-sftp</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.i2p.crypto</groupId>
|
|
|
|
<artifactId>eddsa</artifactId>
|
|
|
|
<version>0.3.0</version>
|
|
|
|
</dependency>
|
2017-11-13 14:32:30 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.mina</groupId>
|
|
|
|
<artifactId>mina-core</artifactId>
|
2019-10-03 02:14:56 +00:00
|
|
|
<version>2.1.3</version>
|
2017-11-13 14:32:30 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2019-10-03 02:14:56 +00:00
|
|
|
<version>1.7.28</version>
|
2017-11-13 14:32:30 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-jdk14</artifactId>
|
2019-10-03 02:14:56 +00:00
|
|
|
<version>1.7.28</version>
|
2017-11-13 14:32:30 +00:00
|
|
|
</dependency>
|
|
|
|
|
2017-11-14 14:06:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>jline</groupId>
|
|
|
|
<artifactId>jline</artifactId>
|
|
|
|
<version>2.12.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2018-03-25 19:11:01 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
<version>1.10</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-10-03 02:14:56 +00:00
|
|
|
</dependencies>
|
2013-11-14 07:17:51 +00:00
|
|
|
|
|
|
|
<!-- Build -->
|
|
|
|
<build>
|
2019-10-03 02:14:56 +00:00
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
|
2017-11-15 18:20:47 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
<include>config.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
|
2013-11-14 07:17:51 +00:00
|
|
|
<plugins>
|
2017-11-13 14:32:30 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2019-10-03 02:14:56 +00:00
|
|
|
<version>3.1.1</version>
|
2017-11-13 14:32:30 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
2017-11-15 18:20:47 +00:00
|
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
2017-11-13 14:32:30 +00:00
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2013-11-14 07:17:51 +00:00
|
|
|
<!-- Compile plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2019-10-03 02:14:56 +00:00
|
|
|
<version>3.7.0</version>
|
2013-11-14 07:17:51 +00:00
|
|
|
<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>
|