2018-10-02 13:09:52 +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.holographicdisplays</groupId>
|
|
|
|
<artifactId>holographicdisplays-parent</artifactId>
|
|
|
|
<name>HolographicDisplays Parent</name>
|
2018-12-26 18:17:08 +01:00
|
|
|
<version>2.3.3-SNAPSHOT</version>
|
2018-10-02 13:09:52 +02:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<spigot-api.version>1.8-R0.1-SNAPSHOT</spigot-api.version>
|
|
|
|
</properties>
|
|
|
|
|
2019-05-31 19:19:38 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>codemc-snapshots</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>codemc-releases</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-releases/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2018-10-02 13:09:52 +02:00
|
|
|
<modules>
|
|
|
|
<module>API</module>
|
|
|
|
<module>JavaCompat</module>
|
|
|
|
<module>Utils</module>
|
|
|
|
<module>Config</module>
|
|
|
|
<module>NMS/Interfaces</module>
|
|
|
|
<module>NMS/v1_8_R1</module>
|
|
|
|
<module>NMS/v1_8_R2</module>
|
|
|
|
<module>NMS/v1_8_R3</module>
|
|
|
|
<module>NMS/v1_9_R1</module>
|
|
|
|
<module>NMS/v1_9_R2</module>
|
|
|
|
<module>NMS/v1_10_R1</module>
|
|
|
|
<module>NMS/v1_11_R1</module>
|
|
|
|
<module>NMS/v1_12_R1</module>
|
|
|
|
<module>NMS/v1_13_R1</module>
|
|
|
|
<module>NMS/v1_13_R2</module>
|
2019-04-27 16:48:44 +02:00
|
|
|
<module>NMS/v1_14_R1</module>
|
2018-10-02 13:09:52 +02:00
|
|
|
<module>Plugin</module>
|
|
|
|
<module>Examples/DeathHolograms</module>
|
|
|
|
<module>Examples/PowerUps</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>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<sourceFileIncludes>
|
|
|
|
<include>**/holographicdisplays/api/**/*.java</include>
|
|
|
|
</sourceFileIncludes>
|
|
|
|
<sourceFileExcludes>
|
|
|
|
<exclude>**/holographicdisplays/api/internal/**/*.java</exclude>
|
|
|
|
</sourceFileExcludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|