Maven pom.xml updates required to publish to Apache Nexus repo.
diff --git a/gateway-release/pom.xml b/gateway-release/pom.xml
index 0e6edfe..ab78dfb 100644
--- a/gateway-release/pom.xml
+++ b/gateway-release/pom.xml
@@ -225,6 +225,11 @@
             <artifactId>gateway-test-ldap-launcher</artifactId>
         </dependency>
 
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
 </project>
diff --git a/gateway-server-launcher/pom.xml b/gateway-server-launcher/pom.xml
index f478748..3dea741 100644
--- a/gateway-server-launcher/pom.xml
+++ b/gateway-server-launcher/pom.xml
@@ -35,6 +35,11 @@
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-util-launcher</artifactId>
         </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>
@@ -65,4 +70,4 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/gateway-shell-launcher/pom.xml b/gateway-shell-launcher/pom.xml
index 600be69..c004c70 100644
--- a/gateway-shell-launcher/pom.xml
+++ b/gateway-shell-launcher/pom.xml
@@ -35,6 +35,11 @@
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-util-launcher</artifactId>
         </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>
@@ -65,4 +70,4 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/gateway-test-ldap-launcher/pom.xml b/gateway-test-ldap-launcher/pom.xml
index 55d4776..8dda9a3 100644
--- a/gateway-test-ldap-launcher/pom.xml
+++ b/gateway-test-ldap-launcher/pom.xml
@@ -34,6 +34,11 @@
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-util-launcher</artifactId>
         </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>
@@ -64,4 +69,4 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/hsso-release/pom.xml b/hsso-release/pom.xml
index 103281a..063aa17 100644
--- a/hsso-release/pom.xml
+++ b/hsso-release/pom.xml
@@ -184,6 +184,12 @@
             <artifactId>gateway-test-ldap-launcher</artifactId>
         </dependency>
 
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+
     </dependencies>
 
 </project>
diff --git a/knox-cli-launcher/pom.xml b/knox-cli-launcher/pom.xml
index 3b107c2..b8e0e5a 100644
--- a/knox-cli-launcher/pom.xml
+++ b/knox-cli-launcher/pom.xml
@@ -35,6 +35,11 @@
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-util-launcher</artifactId>
         </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
     <build>
@@ -65,4 +70,4 @@
         </plugins>
     </build>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/pom.xml b/pom.xml
index c7cb3c9..302de81 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,6 +19,11 @@
          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>org.apache</groupId>
+        <artifactId>apache</artifactId>
+        <version>14</version>
+    </parent>
     <groupId>org.apache.knox</groupId>
     <artifactId>gateway</artifactId>
     <version>0.5.0</version>
@@ -77,7 +82,7 @@
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-        <internal.maven.repo>file:///tmp/knoxtemprepo</internal.maven.repo>
+        <internal.maven.repo>https://repository.apache.org/service/local/staging/deploy/maven2</internal.maven.repo>
         <repo.id>internal.repo</repo.id>
         <gateway-name>Apache Knox</gateway-name>
         <gateway-project>knox</gateway-project>