Untitled
unknown
plain_text
6 months ago
4.5 kB
1
Indexable
Never
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>me.Emiel</groupId> <artifactId>LockdUp</artifactId> <version>1.0</version> <packaging>jar</packaging> <name>LockdUp</name> <properties> <java.version>19</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>${java.version}</release> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <relocations> <relocation> <pattern>com.jeff_media.customblockdata</pattern> <shadedPattern>your.package.name.customblockdata</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <repositories> <repository> <id>papermc-repo</id> <url>https://repo.papermc.io/repository/maven-public/</url> </repository> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/content/groups/public/</url> </repository> <repository> <id>sk89q-repo</id> <url>https://maven.enginehub.org/repo/</url> </repository> <repository> <id>jeff-media-gbr</id> <url>https://hub.jeff-media.com/nexus/repository/jeff-media-public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.19.3-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.24</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.sk89q.worldguard</groupId> <artifactId>worldguard-bukkit</artifactId> <version>7.0.7</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sk89q.worldedit</groupId> <artifactId>worldedit-bukkit</artifactId> <version>7.2.11</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.jeff_media</groupId> <artifactId>CustomBlockData</artifactId> <version>2.2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>me.Emiel</groupId> <artifactId>EscLockupEconomy</artifactId> <version>1.1</version> <scope>system</scope> <systemPath>C:\Users\lolpv\OneDrive\Bureaublad\SkyEscape\plugins\EscLockupEconomy-1.1.jar</systemPath> </dependency> </dependencies> </project>