HolographicDisplays/pom.xml

85 lines
2.6 KiB
XML

<?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>
<version>2.4.2-SNAPSHOT</version>
<packaging>pom</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>
<maven.test.skip>true</maven.test.skip>
<spigot-api.version>1.8-R0.1-SNAPSHOT</spigot-api.version>
</properties>
<distributionManagement>
<snapshotRepository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</snapshotRepository>
<repository>
<id>codemc-releases</id>
<url>https://repo.codemc.io/repository/maven-releases/</url>
</repository>
</distributionManagement>
<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>
<module>NMS/v1_14_R1</module>
<module>NMS/v1_15_R1</module>
<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>