2013-09-25 09:21:03 +02:00
|
|
|
|
|
|
|
<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>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-parent</artifactId>
|
2024-01-19 22:41:57 +01:00
|
|
|
<version>1.20-R0.3-SNAPSHOT</version>
|
2013-09-25 09:21:03 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-bootstrap</artifactId>
|
2024-01-19 22:41:57 +01:00
|
|
|
<version>1.20-R0.3-SNAPSHOT</version>
|
2013-09-25 09:21:03 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>BungeeCord-Bootstrap</name>
|
|
|
|
<description>Java 1.6 loader for BungeeCord</description>
|
|
|
|
|
2014-12-13 01:53:03 +01:00
|
|
|
<properties>
|
2017-06-21 11:45:03 +02:00
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
2020-02-04 04:59:52 +01:00
|
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
2015-05-28 12:42:04 +02:00
|
|
|
<maven.compiler.source>1.6</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.6</maven.compiler.target>
|
2014-12-13 01:53:03 +01:00
|
|
|
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
|
|
|
|
</properties>
|
|
|
|
|
2013-09-25 09:21:03 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-proxy</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>BungeeCord</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2023-03-14 17:30:00 +01:00
|
|
|
<version>3.3.0</version>
|
2013-09-25 09:21:03 +02:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifestEntries>
|
|
|
|
<Main-Class>net.md_5.bungee.Bootstrap</Main-Class>
|
|
|
|
<Implementation-Version>${describe}</Implementation-Version>
|
|
|
|
<Specification-Version>${maven.build.timestamp}</Specification-Version>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2023-09-25 23:52:07 +02:00
|
|
|
<version>3.5.1</version>
|
2013-09-25 09:21:03 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
<exclude>**/*.SF</exclude>
|
|
|
|
<exclude>**/*.DSA</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-02-13 23:29:55 +01:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>jdk-9-release</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[9,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.release>6</maven.compiler.release>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>jdk-12-release</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[12,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.release>7</maven.compiler.release>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2023-04-07 01:55:01 +02:00
|
|
|
<profile>
|
|
|
|
<id>jdk-20-release</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[20,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.release>8</maven.compiler.release>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2021-02-13 23:29:55 +01:00
|
|
|
</profiles>
|
2013-09-25 09:21:03 +02:00
|
|
|
</project>
|