Cleanup pom.xml

This commit is contained in:
MineTheCube 2017-07-27 01:17:34 +02:00
parent 08b298922e
commit 5bb338494d

20
pom.xml
View File

@ -6,21 +6,30 @@
<groupId>de.epiceric</groupId> <groupId>de.epiceric</groupId>
<artifactId>ShopChest</artifactId> <artifactId>ShopChest</artifactId>
<packaging>jar</packaging>
<version>${version.final}</version> <version>${version.final}</version>
<name>ShopChest</name>
<name>${project.artifactId}</name>
<url>https://www.spigotmc.org/resources/shopchest.11431/</url> <url>https://www.spigotmc.org/resources/shopchest.11431/</url>
<description>Let your players create their own nice-looking shops to sell their stuff to other players!</description> <description>Let your players create their own nice-looking shops to sell their stuff to other players!</description>
<packaging>jar</packaging>
<properties> <properties>
<maven.compiler.source>1.7</maven.compiler.source> <!-- Project Properties -->
<maven.compiler.target>1.7</maven.compiler.target> <projectEncoding>UTF-8</projectEncoding>
<project.build.sourceEncoding>${projectEncoding}</project.build.sourceEncoding>
<project.build.outputEncoding>${projectEncoding}</project.build.outputEncoding>
<!-- JDK Version -->
<jdkVersion>1.7</jdkVersion>
<maven.compiler.source>${jdkVersion}</maven.compiler.source>
<maven.compiler.target>${jdkVersion}</maven.compiler.target>
<!-- Versioning -->
<version.number>1.12.3</version.number> <version.number>1.12.3</version.number>
<version.final>${version.number}-${version.git}</version.final> <version.final>${version.number}-${version.git}</version.final>
<!-- Others -->
<github.global.server>github</github.global.server> <github.global.server>github</github.global.server>
<javadoc.opts><!-- Only jdk 1.8 and later --></javadoc.opts> <javadoc.opts><!-- Only jdk 1.8 and later --></javadoc.opts>
</properties> </properties>
@ -252,6 +261,7 @@
<shadedPattern>de.epiceric.shopchest.utils</shadedPattern> <shadedPattern>de.epiceric.shopchest.utils</shadedPattern>
</relocation> </relocation>
</relocations> </relocations>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>