2018-10-09 21:54:01 +02: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>com.gmail.filoghost.chestcommands</groupId>
|
|
|
|
<artifactId>chestcommands-parent</artifactId>
|
|
|
|
<name>ChestCommands Parent</name>
|
2020-06-10 19:25:20 +02:00
|
|
|
<version>3.3.1</version>
|
2018-10-09 21:54:01 +02:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2019-04-24 09:29:02 +02:00
|
|
|
<url>https://dev.bukkit.org/bukkit-plugins/chest-commands</url>
|
2018-10-09 21:54:01 +02:00
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://github.com/filoghost/ChestCommands</url>
|
|
|
|
<connection>scm:git:git://github.com:filoghost/ChestCommands.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:filoghost/ChestCommands.git</developerConnection>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.6</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.6</maven.compiler.target>
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
2019-04-24 13:08:02 +02:00
|
|
|
<spigot-api.version>1.8.8-R0.1-SNAPSHOT</spigot-api.version>
|
2018-10-09 21:54:01 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>Plugin</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
|
|
<manifest>
|
|
|
|
<addClasspath>false</addClasspath>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|