<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.acrobot.chestshop</groupId> <artifactId>chestshop</artifactId> <version>3.9.0-brokko-SNAPSHOT</version> <description>Chest-and-sign shop plugin for Bukkit</description> <scm> <connection>scm:git:git://github.com/Acrobot/ChestShop-3</connection> <developerConnection>scm:git:ssh://git@github.com/Acrobot/ChestShop-3.git</developerConnection> <url>https://github.com/Acrobot/ChestShop-3</url> </scm> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <finalName>ChestShop</finalName> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <release>21</release> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.5.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>com.j256.ormlite</include> <include>javax.persistence</include> <include>com.googlecode.json-simple</include> </includes> </artifactSet> <relocations> <relocation> <pattern>com.j256.ormlite</pattern> <shadedPattern>com.Acrobot.ChestShop.ORMlite</shadedPattern> </relocation> <relocation> <pattern>javax.persistence</pattern> <shadedPattern>com.Acrobot.ChestShop.javax.persistence</shadedPattern> </relocation> <relocation> <pattern>org.json.simple</pattern> <shadedPattern>com.Acrobot.ChestShop.jsonsimple</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>papermc</id> <url>https://repo.papermc.io/repository/maven-public/</url> </repository> <repository> <id>sk89q-repo</id> <url>https://maven.enginehub.org/repo/</url> </repository> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> <repository> <id>authme-repo</id> <url>https://repo.codemc.org/repository/maven-public/</url> </repository> <repository> <id>brokkonaut-repo</id> <url>https://www.iani.de/nexus/content/groups/public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.11.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.papermc.paper</groupId> <artifactId>paper-api</artifactId> <version>1.20.6-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.MilkBowl</groupId> <artifactId>VaultAPI</artifactId> <version>1.7</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>bukkit</artifactId> <groupId>org.bukkit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>fr.xephi</groupId> <artifactId>authme</artifactId> <version>5.4.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>bukkit</artifactId> <groupId>org.bukkit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>de.iani.cubeside</groupId> <artifactId>LWC</artifactId> <version>5.0.16-SNAPSHOT</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>bukkit</artifactId> <groupId>org.bukkit</groupId> </exclusion> <exclusion> <artifactId>craftbukkit</artifactId> <groupId>org.bukkit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sk89q.worldguard</groupId> <artifactId>worldguard-core</artifactId> <version>7.1.0-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sk89q.worldguard</groupId> <artifactId>worldguard-bukkit</artifactId> <version>7.1.0-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>nexus</id> <name>Releases</name> <url>https://www.iani.de/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>nexus</id> <name>Snapshot</name> <url>https://www.iani.de/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>