ImageOnMap/pom.xml

147 lines
6.1 KiB
XML
Raw Normal View History

2015-02-14 19:25:20 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright or © or Copr. Moribus (2013)
~ Copyright or © or Copr. ProkopyL <prokopylmc@gmail.com> (2015)
~ Copyright or © or Copr. Amaury Carrade <amaury@carrade.eu> (2016 2021)
~ Copyright or © or Copr. Vlammar <valentin.jabre@gmail.com> (2019 2021)
~
~ This software is a computer program whose purpose is to allow insertion of
~ custom images in a Minecraft world.
~
~ This software is governed by the CeCILL license under French law and
~ abiding by the rules of distribution of free software. You can use,
~ modify and/ or redistribute the software under the terms of the CeCILL
~ license as circulated by CEA, CNRS and INRIA at the following URL
~ "http://www.cecill.info".
~
~ As a counterpart to the access to the source code and rights to copy,
~ modify and redistribute granted by the license, users are provided only
~ with a limited warranty and the software's author, the holder of the
~ economic rights, and the successive licensors have only limited
~ liability.
~
~ In this respect, the user's attention is drawn to the risks associated
~ with loading, using, modifying and/or developing or reproducing the
~ software by the user in light of its specific status of free software,
~ that may mean that it is complicated to manipulate, and that also
~ therefore means that it is reserved for developers and experienced
~ professionals having in-depth computer knowledge. Users are therefore
~ encouraged to load and test the software's suitability as regards their
~ requirements in conditions enabling the security of their systems and/or
~ data to be ensured and, more generally, to use and operate it in the
~ same conditions as regards security.
~
~ The fact that you are presently reading this means that you have had
~ knowledge of the CeCILL license and that you accept its terms.
-->
2015-02-14 19:25:20 +01:00
<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>
<version>4.1.2</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>
<version>0.0.4</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>