2015-02-14 19:25:20 +01:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-04-11 23:48:16 +02:00
|
|
|
|
<!--
|
|
|
|
|
~ 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>
|
2021-04-12 14:23:26 +02:00
|
|
|
|
<version>4.1.2</version>
|
2015-02-14 19:25:20 +01:00
|
|
|
|
<packaging>jar</packaging>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
|
2015-02-14 19:25:20 +01:00
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2019-10-26 14:26:12 +02:00
|
|
|
|
<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>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
|
|
|
|
|
<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>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
<configuration>
|
2020-12-09 21:56:55 +01:00
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
<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>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
</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>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
</relocations>
|
2021-04-07 00:52:11 +02:00
|
|
|
|
<minimizeJar>true</minimizeJar>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
</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>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2015-02-14 19:25:20 +01:00
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>spigot-repo</id>
|
2019-10-26 14:26:12 +02:00
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2015-02-14 19:25:20 +01:00
|
|
|
|
</repository>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
<repository>
|
2020-11-15 19:10:52 +01:00
|
|
|
|
<id>zdevelopers-quartzlib</id>
|
|
|
|
|
<url>https://maven.zcraft.fr/QuartzLib</url>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
</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>
|
|
|
|
|
|
2015-12-29 19:12:36 +01:00
|
|
|
|
<dependencies>
|
2015-02-14 19:25:20 +01:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
|
<artifactId>bukkit</artifactId>
|
2020-06-14 02:56:00 +02:00
|
|
|
|
<version>1.13.2-R0.1-SNAPSHOT</version>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>fr.zcraft</groupId>
|
2020-11-15 19:10:52 +01:00
|
|
|
|
<artifactId>quartzlib</artifactId>
|
2021-04-12 14:23:26 +02:00
|
|
|
|
<version>0.0.4</version>
|
2015-02-14 19:25:20 +01:00
|
|
|
|
</dependency>
|
2019-11-15 03:07:55 +01:00
|
|
|
|
<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>
|
2019-11-15 03:07:55 +01:00
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2015-02-14 19:25:20 +01:00
|
|
|
|
</dependencies>
|
2015-12-29 19:12:36 +01:00
|
|
|
|
</project>
|