Files
LogBlock/pom.xml
T

178 lines
6.4 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2015-03-22 20:15:04 +05:00
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>
2015-03-22 20:15:04 +05:00
<groupId>de.diddiz</groupId>
<artifactId>logblock</artifactId>
2018-07-31 02:19:40 +02:00
<version>1.13.1-SNAPSHOT</version>
2015-03-22 20:15:04 +05:00
<packaging>jar</packaging>
2015-03-22 20:15:04 +05:00
<name>LogBlock</name>
<description>Logs blocks.</description>
<url>https://github.com/LogBlock/LogBlock</url>
2015-03-22 20:15:04 +05:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<build.number>${buildNumber}</build.number>
</properties>
2015-03-22 20:15:04 +05:00
<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>
2015-03-22 20:15:04 +05:00
<ciManagement>
<system>jenkins</system>
<url>http://ci.md-5.net/job/LogBlock/</url>
2015-03-22 20:15:04 +05:00
</ciManagement>
2015-03-22 20:15:04 +05:00
<distributionManagement>
<repository>
<id>md_5-releases</id>
2017-08-13 19:41:34 +10:00
<url>https://repo.md-5.net/content/repositories/releases/</url>
2015-03-22 20:15:04 +05:00
</repository>
<snapshotRepository>
<id>md_5-snapshots</id>
2017-08-13 19:41:34 +10:00
<url>https://repo.md-5.net/content/repositories/snapshots/</url>
2015-03-22 20:15:04 +05:00
</snapshotRepository>
</distributionManagement>
2015-03-22 20:15:04 +05:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2018-08-27 17:13:44 +02:00
<version>1.13.1-R0.1-SNAPSHOT</version>
2015-03-22 20:15:04 +05:00
<scope>provided</scope>
</dependency>
2018-07-21 15:51:16 +02:00
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId>
<version>7.0.0-SNAPSHOT</version>
2015-03-22 20:15:04 +05:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
2015-09-22 02:33:46 -04:00
<artifactId>HikariCP</artifactId>
<version>3.2.0</version>
2015-03-22 20:15:04 +05:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
2018-08-04 15:42:55 +02:00
<version>1.7.25</version>
<scope>compile</scope>
</dependency>
2015-03-22 20:15:04 +05:00
</dependencies>
<repositories>
<repository>
<id>sk89q-repo</id>
2018-07-28 05:42:31 +02:00
<url>https://maven.sk89q.com/repo/</url>
2015-03-22 20:15:04 +05:00
</repository>
2016-03-01 03:33:27 -05:00
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2015-03-22 20:15:04 +05:00
</repositories>
<profiles>
<profile>
<id>static_build_number</id>
<activation>
<property>
<name>!env.BUILD_NUMBER</name>
</property>
</activation>
<properties>
<buildNumber>0</buildNumber>
<buildDescription>(manually compiled)</buildDescription>
</properties>
</profile>
<profile>
<id>dynamic_build_number</id>
<activation>
<property>
<name>env.BUILD_NUMBER</name>
</property>
</activation>
<properties>
<buildNumber>${env.BUILD_NUMBER}</buildNumber>
<buildDescription>(build #${env.BUILD_NUMBER})</buildDescription>
</properties>
</profile>
</profiles>
2015-03-22 20:15:04 +05:00
<build>
<finalName>${project.name}</finalName>
<resources>
<resource>
<filtering>true</filtering>
2018-07-24 19:16:04 +02:00
<directory>src/main/resources</directory>
2015-03-22 20:15:04 +05:00
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
2015-03-22 20:15:04 +05:00
<configuration>
<source>1.8</source>
<target>1.8</target>
2015-03-22 20:15:04 +05:00
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
2015-03-22 20:15:04 +05:00
<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>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
2015-03-22 20:15:04 +05:00
<configuration>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
2018-08-02 05:28:09 +02:00
<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>
2015-03-22 20:15:04 +05:00
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>