diff options
| author | Pugmatt <pugmatt@gmail.com> | 2019-06-18 23:22:41 -0400 |
|---|---|---|
| committer | Pugmatt <pugmatt@gmail.com> | 2019-06-18 23:22:41 -0400 |
| commit | a98d6164e8f03c19ed568fbe05b69b2a1d4eccf2 (patch) | |
| tree | f7fb1e3057cc942e5ba78be233339e15c6dea788 /serverlist-server/pom.xml | |
| parent | 9be6579e87cc4db8dab08f007482317f5bd980a3 (diff) | |
| download | BedrockConnect-a98d6164e8f03c19ed568fbe05b69b2a1d4eccf2.tar.gz BedrockConnect-a98d6164e8f03c19ed568fbe05b69b2a1d4eccf2.tar.bz2 BedrockConnect-a98d6164e8f03c19ed568fbe05b69b2a1d4eccf2.zip | |
Added serverlist bedrock server
Diffstat (limited to 'serverlist-server/pom.xml')
| -rw-r--r-- | serverlist-server/pom.xml | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/serverlist-server/pom.xml b/serverlist-server/pom.xml new file mode 100644 index 0000000..240d4d8 --- /dev/null +++ b/serverlist-server/pom.xml @@ -0,0 +1,120 @@ +<?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.pyratron.pugmatt</groupId> + <artifactId>BedrockConnect</artifactId> + <version>1.0-SNAPSHOT</version> + + <build> + <sourceDirectory>src</sourceDirectory> + <plugins> + <plugin> + <!-- Build an executable JAR --> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.1.0</version> + <configuration> + <archive> + <manifest> + <addClasspath>true</addClasspath> + <classpathPrefix>lib/</classpathPrefix> + <mainClass>main.com.pyratron.pugmatt.bedrockconnect.BedrockConnect</mainClass> + </manifest> + </archive> + </configuration> + </plugin> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.6.1</version> + <configuration> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>3.2.1</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <relocations> + <relocation> + <pattern>com.nukkitx.protocol</pattern> + <shadedPattern>com.pyratron.pugmatt.protocol</shadedPattern> + </relocation> + <relocation> + <pattern>com.github.steveice10</pattern> + <shadedPattern>com.pyratron.pugmatt.javaprotocol</shadedPattern> + </relocation> + </relocations> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + + <repositories> + <repository> + <id>nukkitx-repo</id> + <url>https://repo.nukkitx.com/snapshot/</url> + </repository> + </repositories> + + <dependencies> + <dependency> + <groupId>com.github.steveice10</groupId> + <artifactId>packetlib</artifactId> + <version>1.4-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>com.nukkitx.protocol</groupId> + <artifactId>bedrock-v354</artifactId> + <version>2.0.2</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + <version>1.3.9</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>com.google.code.gson</groupId> + <artifactId>gson</artifactId> + <version>2.5</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.json</groupId> + <artifactId>json</artifactId> + <version>20180813</version> + </dependency> + <dependency> + <groupId>com.googlecode.json-simple</groupId> + <artifactId>json-simple</artifactId> + <version>1.1.1</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.9.8</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.dataformat</groupId> + <artifactId>jackson-dataformat-yaml</artifactId> + <version>2.9.8</version> + <scope>compile</scope> + </dependency> + </dependencies> + +</project> |
