<?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.14.1-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.7.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.0.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.1.1</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.sk89q.com/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.14.1-R0.1-SNAPSHOT</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>commons-lang</artifactId> <groupId>commons-lang</groupId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>gson</artifactId> <groupId>com.google.code.gson</groupId> </exclusion> <exclusion> <artifactId>bungeecord-chat</artifactId> <groupId>net.md-5</groupId> </exclusion> <exclusion> <artifactId>snakeyaml</artifactId> <groupId>org.yaml</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sk89q.worldedit</groupId> <artifactId>worldedit-bukkit</artifactId> <version>7.0.0-SNAPSHOT</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>bstats-bukkit</artifactId> <groupId>org.bstats</groupId> </exclusion> <exclusion> <artifactId>paperlib</artifactId> <groupId>io.papermc</groupId> </exclusion> <exclusion> <artifactId>worldedit-core</artifactId> <groupId>com.sk89q.worldedit</groupId> </exclusion> <exclusion> <artifactId>bukkit</artifactId> <groupId>com.sk89q.worldedit.worldedit-libs</groupId> </exclusion> <exclusion> <artifactId>bukkit</artifactId> <groupId>org.bukkit</groupId> </exclusion> <exclusion> <artifactId>log4j-slf4j-impl</artifactId> <groupId>org.apache.logging.log4j</groupId> </exclusion> </exclusions> </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>md_5-releases</id> <url>https://repo.md-5.net/content/repositories/releases/</url> </repository> <snapshotRepository> <id>md_5-snapshots</id> <url>https://repo.md-5.net/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <build.number>${buildNumber}</build.number> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>