CustomResources/pom.xml

86 lines
3.0 KiB
XML
Raw Normal View History

2023-07-09 15:25:04 +02:00
<?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>com.cimeyclust.addonreader.custom_blocks</groupId>
2023-07-10 19:56:04 +02:00
<artifactId>CustomResources</artifactId>
2023-07-09 15:25:04 +02:00
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>gitea</id>
<url>https://repo.cimeyclust.com/api/packages/CimeyClust/maven</url>
</repository>
2023-07-09 15:25:04 +02:00
</repositories>
<build>
<finalName>${project.name}</finalName>
<defaultGoal>clean package</defaultGoal>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
2023-07-09 16:56:32 +02:00
<configuration>
<artifactSet>
<excludes>
<exclude>cn.nukkit.nukkit</exclude>
<exclude>org.junit.jupiter.junit-jupiter-engine</exclude>
</excludes>
</artifactSet>
</configuration>
2023-07-09 15:25:04 +02:00
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
2023-09-16 15:10:26 +02:00
<groupId>cn.powernukkitx</groupId>
<artifactId>powernukkitx</artifactId>
2023-07-23 14:49:11 +02:00
<version>1.20.10-r1</version>
2023-07-09 15:25:04 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.cimeyclust.addonreader</groupId>
<artifactId>NukkitAddonReader</artifactId>
2023-09-17 13:13:33 +02:00
<version>2.0.2</version>
</dependency>
2023-07-09 15:25:04 +02:00
</dependencies>
</project>