mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-11-02 09:09:55 +01:00
75 lines
2.6 KiB
XML
75 lines
2.6 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">
|
||
|
<parent>
|
||
|
<artifactId>viabackwards-parent</artifactId>
|
||
|
<groupId>nl.matsv</groupId>
|
||
|
<version>1.0.1</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>viabackwards-all</artifactId>
|
||
|
|
||
|
<build>
|
||
|
<finalName>${project.name}-${project.version}</finalName>
|
||
|
<defaultGoal>clean install</defaultGoal>
|
||
|
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.3</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
<showWarnings>false</showWarnings>
|
||
|
<showDeprecation>false</showDeprecation>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>2.4.3</version>
|
||
|
<configuration>
|
||
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||
|
<minimizeJar>false</minimizeJar>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>nl.matsv</groupId>
|
||
|
<artifactId>viabackwards-core</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>nl.matsv</groupId>
|
||
|
<artifactId>viabackwards-bukkit</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>nl.matsv</groupId>
|
||
|
<artifactId>viabackwards-bungee</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>nl.matsv</groupId>
|
||
|
<artifactId>viabackwards-sponge</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|