This repository has been archived by the owner on Mar 21, 2020. It is now read-only.
forked from filoghost/ChestCommands
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
52 lines (45 loc) · 1.71 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>chestcommands-parent</artifactId>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
<manifest>
<addClasspath>false</addClasspath>
</manifest>
</archive>
</configuration>
<groupId>org.apache.maven.plugins</groupId>
</plugin>
</plugins>
</pluginManagement>
</build>
<groupId>com.gmail.filoghost.chestcommands</groupId>
<modelVersion>4.0.0</modelVersion>
<modules>
<module>Plugin</module>
</modules>
<name>ChestCommands Parent</name>
<packaging>pom</packaging>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<maven.test.skip>true</maven.test.skip>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spigot-api.version>1.8.8-R0.1-SNAPSHOT</spigot-api.version>
</properties>
<scm>
<connection>scm:git:git://github.com:filoghost/ChestCommands.git</connection>
<developerConnection>scm:git:[email protected]:filoghost/ChestCommands.git</developerConnection>
<url>https://github.com/filoghost/ChestCommands</url>
</scm>
<url>https://dev.bukkit.org/bukkit-plugins/chest-commands</url>
<version>3.5.6</version>
</project>