112 lines
3.8 KiB
XML
112 lines
3.8 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>
|
|
|
|
<!-- Basics -->
|
|
<groupId>com.massivecraft.massivecore</groupId>
|
|
<artifactId>MassiveCore</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<!-- Info -->
|
|
<name>${project.artifactId}</name>
|
|
<description>${project.name} is a plugin that contains libraries and features that other plugins make use of.
|
|
</description>
|
|
<properties>
|
|
<maven.compiler.source>16</maven.compiler.source>
|
|
<maven.compiler.target>16</maven.compiler.target>
|
|
</properties>
|
|
<!--<url>${massiveBaseUrl}/massivecore</url>-->
|
|
<version>3.3.3</version>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spigotmc-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<!-- Dependencies -->
|
|
<dependencies>
|
|
<!-- Spigot -->
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.20.1-R0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<!-- Vault -->
|
|
<dependency>
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.7.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- MongoDB -->
|
|
<dependency>
|
|
<groupId>org.mongodb</groupId>
|
|
<artifactId>mongo-java-driver</artifactId>
|
|
<version>3.12.12</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- Build -->
|
|
<build>
|
|
<!-- Plugins-->
|
|
<plugins>
|
|
<!-- Enforcer -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
</plugin>
|
|
<!-- Shade -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>com.massivecraft.massivecore:MassiveCoreXlib</include>
|
|
</includes>
|
|
</artifactSet>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<!-- Resources -->
|
|
<resources>
|
|
<!-- Standard -->
|
|
<resource>
|
|
<directory>${project.basedir}</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>*.yml</include>
|
|
</includes>
|
|
</resource>
|
|
<!-- OpenSource -->
|
|
<resource>
|
|
<directory>${project.build.sourceDirectory}</directory>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
<!-- Sponsor Disable Code -->
|
|
<resource>
|
|
<directory>${project.basedir}</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>sponsor-disable-code</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|