ImageOnMap/pom.xml

111 lines
4.2 KiB
XML
Raw Normal View History

2015-02-14 19:25:20 +01: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>fr.moribus</groupId>
<artifactId>ImageOnMap</artifactId>
2021-04-11 02:26:43 +02:00
<version>4.1.1</version>
2015-02-14 19:25:20 +01:00
<packaging>jar</packaging>
2015-02-14 19:25:20 +01:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2015-02-14 19:25:20 +01:00
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2021-04-05 18:18:06 +02:00
<version>3.1.0</version>
<configuration>
2020-12-09 21:56:55 +01:00
<createDependencyReducedPom>false</createDependencyReducedPom>
<artifactSet>
<includes>
2020-11-15 19:10:52 +01:00
<include>fr.zcraft:quartzlib</include>
2021-04-05 18:18:06 +02:00
<include>org.bstats:bstats-bukkit</include>
</includes>
</artifactSet>
<relocations>
<relocation>
2020-11-15 19:10:52 +01:00
<pattern>fr.zcraft.quartzlib</pattern>
2020-12-09 21:56:55 +01:00
<shadedPattern>fr.zcraft.imageonmap.quartzlib</shadedPattern>
2019-11-15 03:43:30 +01:00
</relocation>
2021-04-05 18:18:06 +02:00
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>fr.moribus.imageonmap</shadedPattern>
</relocation>
</relocations>
2021-04-07 00:52:11 +02:00
<minimizeJar>true</minimizeJar>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
2020-12-10 22:13:05 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<logViolationsToConsole>true</logViolationsToConsole>
<failOnViolation>true</failOnViolation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
</configuration>
</plugin>
</plugins>
</build>
2015-02-14 19:25:20 +01:00
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2015-02-14 19:25:20 +01:00
</repository>
<repository>
2020-11-15 19:10:52 +01:00
<id>zdevelopers-quartzlib</id>
<url>https://maven.zcraft.fr/QuartzLib</url>
</repository>
2019-11-15 03:43:30 +01:00
<!-- bStats -->
<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public</url>
</repository>
2015-02-14 19:25:20 +01:00
</repositories>
<dependencies>
2015-02-14 19:25:20 +01:00
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.13.2-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>fr.zcraft</groupId>
2020-11-15 19:10:52 +01:00
<artifactId>quartzlib</artifactId>
2021-04-11 22:26:55 +02:00
<version>0.0.3</version>
2015-02-14 19:25:20 +01:00
</dependency>
<dependency>
2019-11-15 03:43:30 +01:00
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
2021-04-05 18:18:06 +02:00
<version>1.8</version>
<scope>compile</scope>
</dependency>
2015-02-14 19:25:20 +01:00
</dependencies>
</project>