mirror of
https://github.com/asofold/CompatNoCheatPlus.git
synced 2025-02-21 02:12:24 +01:00
188 lines
6.4 KiB
XML
188 lines
6.4 KiB
XML
<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>CompatNoCheatPlus</groupId>
|
|
<artifactId>CompatNoCheatPlus</artifactId>
|
|
<version>6.6.7-SNAPSHOT</version>
|
|
<name>CompatNoCheatPlus</name>
|
|
|
|
|
|
<!-- Source code -->
|
|
<scm>
|
|
<developerConnection>scm:git:git@github.com:asofold/${project.name}.git</developerConnection>
|
|
<connection>scm:git:git://github.com/asofold/${project.name}.git</connection>
|
|
<url>https://github.com/asofold/${project.name}</url>
|
|
</scm>
|
|
|
|
<!-- Repositories -->
|
|
<repositories>
|
|
<repository>
|
|
<id>opencollab-snapshot-repo</id>
|
|
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<repository>
|
|
<id>viaversion-repo</id>
|
|
<url>https://repo.viaversion.com</url>
|
|
</repository>
|
|
<repository>
|
|
<id>bungeecord-repo</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<!-- Dependencies -->
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.gmail.nossr50.mcMMO</groupId>
|
|
<artifactId>mcMMO</artifactId>
|
|
<version>2.1.158</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/libs/mcMMO-2.1.158.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.citizensnpcs</groupId>
|
|
<artifactId>citizensapi</artifactId>
|
|
<version>2.0.26-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.benzoft.gravitytubes</groupId>
|
|
<artifactId>gravitytubes</artifactId>
|
|
<version>1.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/libs/GravityTubes.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.Zrips.CMI</groupId>
|
|
<artifactId>CMI</artifactId>
|
|
<version>1.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/libs/CMIAPI7.6.2.0.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.updated-nocheatplus.nocheatplus</groupId>
|
|
<artifactId>nocheatplus</artifactId>
|
|
<version>-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.geysermc</groupId>
|
|
<artifactId>connector</artifactId>
|
|
<version>1.4.2-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.geysermc.floodgate</groupId>
|
|
<artifactId>api</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.md-5</groupId>
|
|
<artifactId>bungeecord-api</artifactId>
|
|
<version>1.19-R0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.viaversion</groupId>
|
|
<artifactId>viaversion-api</artifactId>
|
|
<version>LATEST</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.md-5</groupId>
|
|
<artifactId>bungeecord-event</artifactId>
|
|
<version>1.19-R0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- Build Description Profiles -->
|
|
<profiles>
|
|
<profile>
|
|
<id>timestamp</id>
|
|
<activation>
|
|
<property>
|
|
<name>!env.BUILD_NUMBER</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<buildDescription>${maven.build.timestamp}</buildDescription>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>dynamic_build_number</id>
|
|
<activation>
|
|
<property>
|
|
<name>env.BUILD_NUMBER</name>
|
|
</property>
|
|
</activation>
|
|
<properties>
|
|
<buildDescription>b${env.BUILD_NUMBER}</buildDescription>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<!-- Building -->
|
|
<build>
|
|
<defaultGoal>clean package</defaultGoal>
|
|
<sourceDirectory>${basedir}/src</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<targetPath>.</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}</directory>
|
|
<includes>
|
|
<include>plugin.yml</include>
|
|
<include>LICENSE.txt</include>
|
|
<include>bungee.yml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.5.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<finalName>cncp</finalName>
|
|
<archive>
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
<pomPropertiesFile>false</pomPropertiesFile>
|
|
<manifest>
|
|
<addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
|
|
<addDefaultImplementationEntries>false</addDefaultImplementationEntries>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<!-- Properties -->
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.build.timestamp.format>yyyy_MM_dd-HH_mm</maven.build.timestamp.format>
|
|
</properties>
|
|
</project>
|