149 lines
5.5 KiB
XML
149 lines
5.5 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">
|
|
<parent>
|
|
<artifactId>invsee-plus-plus</artifactId>
|
|
<groupId>com.janboerman.invsee</groupId>
|
|
<version>0.31.11-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>invsee-plus-plus_common</artifactId>
|
|
<name>InvSee++ Common</name>
|
|
|
|
<build>
|
|
<defaultGoal>clean package</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<release>8</release>
|
|
<testRelease>17</testRelease>
|
|
<parameters>true</parameters> <!-- because the api contains methods with lots of overloads, emitting the parameter names is good for IDE support -->
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>${maven-shade-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<artifactSet>
|
|
<excludes>
|
|
<exclude>junit:junit</exclude>
|
|
<exclude>org.hamcrest:hamcrest-core</exclude>
|
|
<exclude>com.googlecode.json-simple:json-simple</exclude>
|
|
</excludes>
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>papermc</id>
|
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<repository>
|
|
<id>bungeeperms-repo</id>
|
|
<url>https://repo.wea-ondara.net/repository/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>techscode</id>
|
|
<url>https://repo.techscode.com/repository/techscode-apis/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.papermc.paper</groupId>
|
|
<artifactId>paper-api</artifactId>
|
|
<version>1.21-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.janboerman.invsee</groupId>
|
|
<artifactId>mojang-api</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.janboerman.invsee</groupId>
|
|
<artifactId>utils</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- permission plugins -->
|
|
<dependency>
|
|
<groupId>net.luckperms</groupId>
|
|
<artifactId>api</artifactId>
|
|
<version>5.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.ElgarL</groupId>
|
|
<artifactId>groupmanager</artifactId>
|
|
<version>2.9</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>net.alpenblock</groupId>-->
|
|
<!-- <artifactId>BungeePerms</artifactId>-->
|
|
<!-- <version>3.0-dev-80</version>-->
|
|
<!-- <scope>provided</scope>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>net.alpenblock</groupId>
|
|
<artifactId>BungeePerms</artifactId>
|
|
<version>3.0-dev-80</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/../.libs/BungeePerms-3.0-dev-80.jar</systemPath>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>me.TechsCode</groupId>-->
|
|
<!-- <artifactId>UltraPermissionsAPI</artifactId>-->
|
|
<!-- <version>5.5.2</version>-->
|
|
<!-- <scope>provided</scope>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>me.TechsCode</groupId>
|
|
<artifactId>UltraPermissionsAPI</artifactId>
|
|
<version>5.5.2</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/../.libs/UltraPermissionsAPI-5.5.2.jar</systemPath>
|
|
</dependency>
|
|
|
|
<!-- testing -->
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project> |