mirror of
https://github.com/zDevelopers/ImageOnMap.git
synced 2024-11-17 07:35:23 +01:00
01d9a5e99a
CeCILL licence in a dedicated file + headers updated.
147 lines
6.1 KiB
XML
147 lines
6.1 KiB
XML
<?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.
|
||
-->
|
||
|
||
<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>
|
||
<packaging>jar</packaging>
|
||
|
||
<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>
|
||
</properties>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-shade-plugin</artifactId>
|
||
<version>3.1.0</version>
|
||
<configuration>
|
||
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||
<artifactSet>
|
||
<includes>
|
||
<include>fr.zcraft:quartzlib</include>
|
||
<include>org.bstats:bstats-bukkit</include>
|
||
</includes>
|
||
</artifactSet>
|
||
<relocations>
|
||
<relocation>
|
||
<pattern>fr.zcraft.quartzlib</pattern>
|
||
<shadedPattern>fr.zcraft.imageonmap.quartzlib</shadedPattern>
|
||
</relocation>
|
||
<relocation>
|
||
<pattern>org.bstats</pattern>
|
||
<shadedPattern>fr.moribus.imageonmap</shadedPattern>
|
||
</relocation>
|
||
</relocations>
|
||
<minimizeJar>true</minimizeJar>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>shade</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<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>
|
||
|
||
<repositories>
|
||
<repository>
|
||
<id>spigot-repo</id>
|
||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||
</repository>
|
||
<repository>
|
||
<id>zdevelopers-quartzlib</id>
|
||
<url>https://maven.zcraft.fr/QuartzLib</url>
|
||
</repository>
|
||
|
||
<!-- bStats -->
|
||
<repository>
|
||
<id>CodeMC</id>
|
||
<url>https://repo.codemc.org/repository/maven-public</url>
|
||
</repository>
|
||
</repositories>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.bukkit</groupId>
|
||
<artifactId>bukkit</artifactId>
|
||
<version>1.13.2-R0.1-SNAPSHOT</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>fr.zcraft</groupId>
|
||
<artifactId>quartzlib</artifactId>
|
||
<version>0.0.4</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.bstats</groupId>
|
||
<artifactId>bstats-bukkit</artifactId>
|
||
<version>1.8</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|