diff --git a/Examples/DeathHolograms/pom.xml b/Examples/DeathHolograms/pom.xml
index 30c7726e..03842319 100644
--- a/Examples/DeathHolograms/pom.xml
+++ b/Examples/DeathHolograms/pom.xml
@@ -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>
diff --git a/Examples/PowerUps/pom.xml b/Examples/PowerUps/pom.xml
index 22d9a27a..5102ad18 100644
--- a/Examples/PowerUps/pom.xml
+++ b/Examples/PowerUps/pom.xml
@@ -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>
diff --git a/Examples/pom.xml b/Examples/pom.xml
new file mode 100644
index 00000000..b579e28d
--- /dev/null
+++ b/Examples/pom.xml
@@ -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>
\ No newline at end of file
diff --git a/NMS/Interfaces/pom.xml b/NMS/Interfaces/pom.xml
index 12ce1692..40936c54 100644
--- a/NMS/Interfaces/pom.xml
+++ b/NMS/Interfaces/pom.xml
@@ -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>
diff --git a/NMS/pom.xml b/NMS/pom.xml
new file mode 100644
index 00000000..267a35cb
--- /dev/null
+++ b/NMS/pom.xml
@@ -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>
\ No newline at end of file
diff --git a/NMS/v1_10_R1/pom.xml b/NMS/v1_10_R1/pom.xml
index c41388f7..178069b1 100644
--- a/NMS/v1_10_R1/pom.xml
+++ b/NMS/v1_10_R1/pom.xml
@@ -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>
diff --git a/NMS/v1_11_R1/pom.xml b/NMS/v1_11_R1/pom.xml
index 63cf499d..08e499e8 100644
--- a/NMS/v1_11_R1/pom.xml
+++ b/NMS/v1_11_R1/pom.xml
@@ -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>
diff --git a/NMS/v1_12_R1/pom.xml b/NMS/v1_12_R1/pom.xml
index f7686b76..84620211 100644
--- a/NMS/v1_12_R1/pom.xml
+++ b/NMS/v1_12_R1/pom.xml
@@ -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>
diff --git a/NMS/v1_13_R1/pom.xml b/NMS/v1_13_R1/pom.xml
index fd2a01a5..bfc302b4 100644
--- a/NMS/v1_13_R1/pom.xml
+++ b/NMS/v1_13_R1/pom.xml
@@ -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>
diff --git a/NMS/v1_13_R2/pom.xml b/NMS/v1_13_R2/pom.xml
index 524af9f0..308b8676 100644
--- a/NMS/v1_13_R2/pom.xml
+++ b/NMS/v1_13_R2/pom.xml
@@ -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>
diff --git a/NMS/v1_14_R1/pom.xml b/NMS/v1_14_R1/pom.xml
index 59b751dc..635cafd4 100644
--- a/NMS/v1_14_R1/pom.xml
+++ b/NMS/v1_14_R1/pom.xml
@@ -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>
diff --git a/NMS/v1_15_R1/pom.xml b/NMS/v1_15_R1/pom.xml
index b7535a29..83e34a9b 100644
--- a/NMS/v1_15_R1/pom.xml
+++ b/NMS/v1_15_R1/pom.xml
@@ -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>
diff --git a/NMS/v1_8_R2/pom.xml b/NMS/v1_8_R2/pom.xml
index 6d5886f7..00ec1636 100644
--- a/NMS/v1_8_R2/pom.xml
+++ b/NMS/v1_8_R2/pom.xml
@@ -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>
diff --git a/NMS/v1_8_R3/pom.xml b/NMS/v1_8_R3/pom.xml
index 01e83046..8375572c 100644
--- a/NMS/v1_8_R3/pom.xml
+++ b/NMS/v1_8_R3/pom.xml
@@ -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>
diff --git a/NMS/v1_9_R1/pom.xml b/NMS/v1_9_R1/pom.xml
index 92458882..301103a5 100644
--- a/NMS/v1_9_R1/pom.xml
+++ b/NMS/v1_9_R1/pom.xml
@@ -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>
diff --git a/NMS/v1_9_R2/pom.xml b/NMS/v1_9_R2/pom.xml
index 59ea32b2..0e566677 100644
--- a/NMS/v1_9_R2/pom.xml
+++ b/NMS/v1_9_R2/pom.xml
@@ -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>
diff --git a/pom.xml b/pom.xml
index f696f02a..af86a3b8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>