Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-03 14:50:19 +01:00
63 Zeilen
2.4 KiB
XML
63 Zeilen
2.4 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>
|
||
|
<parent>
|
||
|
<groupId>org.geysermc</groupId>
|
||
|
<artifactId>bootstrap-parent</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<relativePath>../</relativePath>
|
||
|
</parent>
|
||
|
<artifactId>bootstrap-standalone</artifactId>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.geysermc</groupId>
|
||
|
<artifactId>common</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.geysermc</groupId>
|
||
|
<artifactId>connector</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<finalName>${outputName}-noshade</finalName>
|
||
|
<defaultGoal>clean install</defaultGoal>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>3.2.0</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifestEntries>
|
||
|
<Main-Class>org.geysermc.platform.standalone.GeyserBootstrap</Main-Class>
|
||
|
</manifestEntries>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.1.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<finalName>${outputName}</finalName>
|
||
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||
|
<minimizeJar>true</minimizeJar>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|