<?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>de.diddiz</groupId> <artifactId>logblock</artifactId> <name>LogBlock</name> <version>1.19.0.0-SNAPSHOT</version> <description>Logs blocks.</description> <url>https://github.com/LogBlock/LogBlock</url> <ciManagement> <system>jenkins</system> <url>http://ci.md-5.net/job/LogBlock/</url> </ciManagement> <scm> <connection>scm:git:git://github.com/LogBlock/LogBlock.git</connection> <developerConnection>scm:git:ssh://git@github.com:LogBlock/LogBlock.git</developerConnection> <url>https://github.com/LogBlock/LogBlock</url> </scm> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <finalName>${project.name}</finalName> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <release>17</release> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>regex-property</id> <goals> <goal>regex-property</goal> </goals> <configuration> <name>minecraft.plugin.version</name> <value>${project.version} ${buildDescription}</value> <regex>[0-9\.]+ \(.+\)</regex> <replacement>${project.version}</replacement> <failIfNoMatch>false</failIfNoMatch> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <relocations> <relocation> <pattern>com.zaxxer.hikari</pattern> <shadedPattern>de.diddiz.lib.com.zaxxer.hikari</shadedPattern> </relocation> <relocation> <pattern>org.slf4j</pattern> <shadedPattern>de.diddiz.lib.org.slf4j</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> <configuration /> </plugin> </plugins> </build> <profiles> <profile> <id>static_build_number</id> <properties> <buildNumber>0</buildNumber> <buildDescription>(manually compiled)</buildDescription> </properties> </profile> <profile> <id>dynamic_build_number</id> <properties> <buildNumber>${env.BUILD_NUMBER}</buildNumber> <buildDescription>(build #${env.BUILD_NUMBER})</buildDescription> </properties> </profile> </profiles> <repositories> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <repository> <id>sk89q-repo</id> <url>https://maven.enginehub.org/repo/</url> </repository> <repository> <id>brokkonaut-repo</id> <url>https://www.iani.de/nexus/content/groups/public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> <version>1.19-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.sk89q.worldedit</groupId> <artifactId>worldedit-bukkit</artifactId> <version>7.2.9-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> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </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> <build.number>${buildNumber}</build.number> </properties> </project>