1
0
mirror of https://github.com/filoghost/HolographicDisplays.git synced 2025-03-23 11:59:56 +01:00

Use a hierarchical structure for NMS and Example modules

This commit is contained in:
filoghost 2020-05-16 12:56:36 +02:00
parent b1c2f77bc7
commit c25d84111c
17 changed files with 89 additions and 83 deletions
Examples
DeathHolograms
PowerUps
pom.xml
NMS
Interfaces
pom.xml
v1_10_R1
v1_11_R1
v1_12_R1
v1_13_R1
v1_13_R2
v1_14_R1
v1_15_R1
v1_8_R2
v1_8_R3
v1_9_R1
v1_9_R2
pom.xml

View File

@ -5,32 +5,11 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-example</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-example-deathholograms</artifactId>
<name>HolographicDisplays Example DeathHolograms</name>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>holographicdisplays-api</artifactId>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@ -5,32 +5,11 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-example</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-example-powerups</artifactId>
<name>HolographicDisplays Example PowerUps</name>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>holographicdisplays-api</artifactId>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

41
Examples/pom.xml Normal file
View File

@ -0,0 +1,41 @@
<?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>
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<version>2.4.2-SNAPSHOT</version>
</parent>
<artifactId>holographicdisplays-example</artifactId>
<name>HolographicDisplays Example</name>
<packaging>pom</packaging>
<modules>
<module>DeathHolograms</module>
<module>PowerUps</module>
</modules>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>holographicdisplays-api</artifactId>
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-interfaces</artifactId>

31
NMS/pom.xml Normal file
View File

@ -0,0 +1,31 @@
<?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>
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<version>2.4.2-SNAPSHOT</version>
</parent>
<artifactId>holographicdisplays-nms</artifactId>
<name>HolographicDisplays NMS</name>
<packaging>pom</packaging>
<modules>
<module>Interfaces</module>
<module>v1_8_R2</module>
<module>v1_8_R3</module>
<module>v1_9_R1</module>
<module>v1_9_R2</module>
<module>v1_10_R1</module>
<module>v1_11_R1</module>
<module>v1_12_R1</module>
<module>v1_13_R1</module>
<module>v1_13_R2</module>
<module>v1_14_R1</module>
<module>v1_15_R1</module>
</modules>
</project>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_10_r1</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_11_r1</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_12_r1</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_13_r1</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_13_r2</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_14_r1</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_15_r1</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_8_r2</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_8_r3</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_9_r1</artifactId>

View File

@ -5,9 +5,8 @@
<parent>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-parent</artifactId>
<artifactId>holographicdisplays-nms</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>holographicdisplays-nms-v1_9_r2</artifactId>

16
pom.xml
View File

@ -33,21 +33,9 @@
<module>Utils</module>
<module>Config</module>
<module>Legacy</module>
<module>NMS/Interfaces</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>NMS</module>
<module>Plugin</module>
<module>Examples/DeathHolograms</module>
<module>Examples/PowerUps</module>
<module>Examples</module>
</modules>
<dependencyManagement>