You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by kr...@apache.org on 2018/09/27 13:39:01 UTC

[1/2] knox git commit: KNOX-1450 - Remove redundant configurations from pom.xml

Repository: knox
Updated Branches:
  refs/heads/master 6070f7811 -> c705f62da


http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-util-urltemplate/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-util-urltemplate/pom.xml b/gateway-util-urltemplate/pom.xml
index c06536b..1b32109 100644
--- a/gateway-util-urltemplate/pom.xml
+++ b/gateway-util-urltemplate/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-util-urltemplate</artifactId>
 
+    <artifactId>gateway-util-urltemplate</artifactId>
     <name>gateway-util-urltemplate</name>
     <description>A utility that URL parsing, matching, templating and expansion.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <build>
         <plugins>
             <plugin>
@@ -48,7 +40,6 @@
     </build>
 
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-i18n</artifactId>
@@ -87,7 +78,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index b976796..fc95cc8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,6 +24,7 @@
         <artifactId>apache</artifactId>
         <version>21</version>
     </parent>
+    
     <groupId>org.apache.knox</groupId>
     <artifactId>gateway</artifactId>
     <version>1.2.0-SNAPSHOT</version>
@@ -31,7 +32,13 @@
 
     <name>gateway</name>
     <description>The Apache Knox Project</description>
-    <url>http://knox.apache.org/</url>
+    <url>https://knox.apache.org/</url>
+
+    <scm>
+        <connection>scm:git:git://git.apache.org/knox.git</connection>
+        <developerConnection>scm:git:git://git.apache.org/knox.git</developerConnection>
+        <url>http://git-wip-us.apache.org/repos/asf/knox.git</url>
+    </scm>
 
     <modules>
         <module>gateway-test-utils</module>
@@ -103,16 +110,11 @@
     </modules>
 
     <properties>
-        <!--
-         It is recommended to set the compiler version globally,
-         as the compiler plugin and the forbidden API checker both
-         use this version
-        -->
+        <!-- Ensure that source and target version are overridden from base ASF POM.
+             This is also used by forbiddenapis to ensure correct signatures are loaded. -->
+        <maven.compiler.source>8</maven.compiler.source>
         <maven.compiler.target>8</maven.compiler.target>
-        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-        <repo.id>internal.repo</repo.id>
-        <internal.maven.repo>https://repository.apache.org/service/local/staging/deploy/maven2</internal.maven.repo>
+        
         <gateway-name>Apache Knox</gateway-name>
         <gateway-project>knox</gateway-project>
         <gateway-artifact>knox</gateway-artifact>
@@ -139,39 +141,7 @@
         <spotbugs-maven-plugin.version>3.1.6</spotbugs-maven-plugin.version>
         <surefire-version>2.16</surefire-version>
     </properties>
-
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
-    <organization>
-        <name>Apache Software Foundation</name>
-        <url>http://www.apache.org</url>
-    </organization>
-
-    <scm>
-        <connection>scm:git:git://git.apache.org/knox.git</connection>
-        <developerConnection>scm:git:git://git.apache.org/knox.git</developerConnection>
-        <url>http://git-wip-us.apache.org/repos/asf/knox.git</url>
-    </scm>
-
-    <distributionManagement>
-        <repository>
-            <id>${repo.id}</id>
-            <name>Internal Repository</name>
-            <url>${internal.maven.repo}</url>
-        </repository>
-        <snapshotRepository>
-            <id>${repo.id}</id>
-            <name>Internal Repository</name>
-            <url>${internal.maven.repo}</url>
-        </snapshotRepository>
-    </distributionManagement>
-
+    
     <profiles>
         <profile>
             <id>analyze</id>
@@ -317,10 +287,8 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>3.8.0</version>
-                <configuration>
-                    <source>${maven.compiler.target}</source>
-                    <target>${maven.compiler.target}</target>
-                </configuration>
+                <!-- If you are looking to change source/target,
+                     change the maven.compiler.{source,target} property -->
                 <dependencies>
                     <dependency>
                         <groupId>org.codehaus.plexus</groupId>
@@ -491,16 +459,6 @@
                             <artifactId>maven-project-info-reports-plugin</artifactId>
                             <version>2.2</version>
                             <report>index</report>
-                            <!--
-                            <report>dependencies</report>
-                            <report>modules</report>
-                            <report>project-team</report>
-                            <report>mailing-list</report>
-                            <report>issue-tracking</report>
-                            <report>license</report>
-                            <report>cim</report>
-                            <report>scm</report>
-                            -->
                         </plugin>
                         <plugin>
                             <groupId>org.apache.maven.plugins</groupId>
@@ -1483,8 +1441,6 @@
                 <version>2.12.0</version>
                 <scope>test</scope>
             </dependency>
-
         </dependencies>
     </dependencyManagement>
-
 </project>


[2/2] knox git commit: KNOX-1450 - Remove redundant configurations from pom.xml

Posted by kr...@apache.org.
KNOX-1450 - Remove redundant configurations from pom.xml

Signed-off-by: Kevin Risden <kr...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/knox/repo
Commit: http://git-wip-us.apache.org/repos/asf/knox/commit/c705f62d
Tree: http://git-wip-us.apache.org/repos/asf/knox/tree/c705f62d
Diff: http://git-wip-us.apache.org/repos/asf/knox/diff/c705f62d

Branch: refs/heads/master
Commit: c705f62da522401220674ea6613f97f57321ffdc
Parents: 6070f78
Author: Kevin Risden <kr...@apache.org>
Authored: Wed Sep 26 10:45:54 2018 -0400
Committer: Kevin Risden <kr...@apache.org>
Committed: Thu Sep 27 09:37:31 2018 -0400

----------------------------------------------------------------------
 gateway-adapter/pom.xml                         |  11 +-
 gateway-applications/pom.xml                    |   7 -
 gateway-demo-ldap/pom.xml                       |  81 +---------
 gateway-discovery-ambari/pom.xml                |  12 +-
 gateway-i18n-logging-log4j/pom.xml              |  13 +-
 gateway-i18n-logging-sl4j/pom.xml               |  13 +-
 gateway-i18n/pom.xml                            |  12 +-
 gateway-provider-ha/pom.xml                     |  15 +-
 .../pom.xml                                     |  12 +-
 .../pom.xml                                     |  12 +-
 .../pom.xml                                     |  12 +-
 .../pom.xml                                     |  12 +-
 .../pom.xml                                     |  12 +-
 .../pom.xml                                     |  12 +-
 gateway-provider-jersey/pom.xml                 |  12 +-
 .../pom.xml                                     |  13 +-
 .../pom.xml                                     |  11 --
 .../pom.xml                                     |  13 +-
 .../pom.xml                                     | 159 +++++++++----------
 .../pom.xml                                     |  13 +-
 gateway-provider-rewrite/pom.xml                |  13 +-
 gateway-provider-security-authc-anon/pom.xml    |  12 +-
 gateway-provider-security-hadoopauth/pom.xml    |  12 +-
 gateway-provider-security-jwt/pom.xml           |  12 +-
 gateway-provider-security-pac4j/pom.xml         |  15 +-
 gateway-provider-security-preauth/pom.xml       |  12 +-
 gateway-provider-security-shiro/pom.xml         |  13 +-
 gateway-provider-security-webappsec/pom.xml     |  12 +-
 gateway-release/pom.xml                         |  14 +-
 gateway-server/pom.xml                          |  11 +-
 gateway-service-admin/pom.xml                   |  98 ++++++------
 gateway-service-as/pom.xml                      |   8 -
 gateway-service-definitions/pom.xml             |   9 +-
 gateway-service-hbase/pom.xml                   |   8 -
 gateway-service-health/pom.xml                  |   8 +-
 gateway-service-hive/pom.xml                    |  11 +-
 gateway-service-knoxsso/pom.xml                 |  88 +++++-----
 gateway-service-knoxssout/pom.xml               |  94 +++++------
 gateway-service-knoxtoken/pom.xml               |  93 +++++------
 gateway-service-nifi/pom.xml                    |  11 +-
 gateway-service-remoteconfig/pom.xml            |  12 +-
 gateway-service-rm/pom.xml                      |  12 +-
 gateway-service-storm/pom.xml                   |  11 +-
 gateway-service-tgs/pom.xml                     |  11 +-
 gateway-service-vault/pom.xml                   |  70 ++++----
 gateway-service-webhdfs/pom.xml                 |  12 +-
 gateway-shell-release/pom.xml                   |  14 +-
 gateway-shell-samples/pom.xml                   |  11 +-
 gateway-spi/pom.xml                             |  11 +-
 gateway-test-utils/pom.xml                      |  13 +-
 gateway-util-common/pom.xml                     |  12 +-
 gateway-util-urltemplate/pom.xml                |  13 +-
 pom.xml                                         |  74 ++-------
 53 files changed, 344 insertions(+), 943 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-adapter/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-adapter/pom.xml b/gateway-adapter/pom.xml
index dfb8a32..742e18a 100644
--- a/gateway-adapter/pom.xml
+++ b/gateway-adapter/pom.xml
@@ -19,23 +19,15 @@
          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>
         <artifactId>gateway</artifactId>
         <groupId>org.apache.knox</groupId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
+
     <artifactId>gateway-adapter</artifactId>
     <name>gateway-adapter</name>
     <description>Adapter for old package structure to ensure compatibility.</description>
-    
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
 
     <dependencies>
         <dependency>
@@ -97,5 +89,4 @@
             <artifactId>gateway-service-storm</artifactId>
         </dependency>
     </dependencies>
-
 </project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-applications/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-applications/pom.xml b/gateway-applications/pom.xml
index 95b920a..f0b5a33 100644
--- a/gateway-applications/pom.xml
+++ b/gateway-applications/pom.xml
@@ -28,13 +28,6 @@
     <artifactId>gateway-applications</artifactId>
     <name>gateway-applications</name>
     <description>The applications delivered with Knox.</description>
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
 
     <dependencies>
         <dependency>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-demo-ldap/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-demo-ldap/pom.xml b/gateway-demo-ldap/pom.xml
index b27a6e3..18649ca 100644
--- a/gateway-demo-ldap/pom.xml
+++ b/gateway-demo-ldap/pom.xml
@@ -24,89 +24,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-demo-ldap</artifactId>
 
+    <artifactId>gateway-demo-ldap</artifactId>
     <name>gateway-demo-ldap</name>
     <description>A LDAP server based on ApacheDS used for demos.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
-    <!--
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>exec-maven-plugin</artifactId>
-                <version>1.2.1</version>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>java</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                <configuration>
-                    <mainClass>org.apache.knox.gateway.security.EmbeddedApacheDirectoryServer</mainClass>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-    -->
-
-    <!--
-    <profiles>
-        <profile>
-            <id>release</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-shade-plugin</artifactId>
-                        <version>2.0</version>
-                        <configuration>
-                            <transformers>
-                                <transformer
-                                        implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
-                                    <manifestEntries>
-                                        <Main-Class>org.apache.knox.gateway.security.EmbeddedApacheDirectoryServer
-                                        </Main-Class>
-                                    </manifestEntries>
-                                </transformer>
-                            </transformers>
-                            <filters>
-                                <filter>
-                                    <artifact>*:*</artifact>
-                                    <excludes>
-                                        <exclude>META-INF/*.SF</exclude>
-                                        <exclude>META-INF/*.DSA</exclude>
-                                        <exclude>META-INF/*.RSA</exclude>
-                                    </excludes>
-                                </filter>
-                            </filters>
-                        </configuration>
-                        <executions>
-                            <execution>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>shade</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-    -->
-
     <dependencies>
-
         <dependency>
             <groupId>org.apache.directory.server</groupId>
             <artifactId>apacheds-all</artifactId>
@@ -139,7 +62,5 @@
             <artifactId>gateway-test-utils</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-discovery-ambari/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-discovery-ambari/pom.xml b/gateway-discovery-ambari/pom.xml
index 2dc24b9..58c122d 100644
--- a/gateway-discovery-ambari/pom.xml
+++ b/gateway-discovery-ambari/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-discovery-ambari</artifactId>
 
+    <artifactId>gateway-discovery-ambari</artifactId>
     <name>gateway-discovery-ambari</name>
     <description>The extension to the gateway for service discovery using Apache Ambari.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -60,7 +52,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-i18n-logging-log4j/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-i18n-logging-log4j/pom.xml b/gateway-i18n-logging-log4j/pom.xml
index c24b51d..16f9ce6 100644
--- a/gateway-i18n-logging-log4j/pom.xml
+++ b/gateway-i18n-logging-log4j/pom.xml
@@ -24,21 +24,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-i18n-logging-log4j</artifactId>
 
+    <artifactId>gateway-i18n-logging-log4j</artifactId>
     <name>gateway-i18n-logging-log4j</name>
     <description>An extension of the logging framework that integrates Log4J.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
@@ -64,7 +55,5 @@
             <artifactId>hamcrest-library</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-i18n-logging-sl4j/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-i18n-logging-sl4j/pom.xml b/gateway-i18n-logging-sl4j/pom.xml
index 9857815..3398194 100644
--- a/gateway-i18n-logging-sl4j/pom.xml
+++ b/gateway-i18n-logging-sl4j/pom.xml
@@ -24,21 +24,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-i18n-logging-sl4j</artifactId>
 
+    <artifactId>gateway-i18n-logging-sl4j</artifactId>
     <name>gateway-i18n-logging-sl4j</name>
     <description>An extension of the logging framework integrating SL4J.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
@@ -64,7 +55,5 @@
             <artifactId>hamcrest-library</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-i18n/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-i18n/pom.xml b/gateway-i18n/pom.xml
index b5d0291..d925778 100644
--- a/gateway-i18n/pom.xml
+++ b/gateway-i18n/pom.xml
@@ -24,21 +24,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
+    
     <artifactId>gateway-i18n</artifactId>
-
     <name>gateway-i18n</name>
     <description>An interface based resource and logging that supports internationalization.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
@@ -50,6 +41,5 @@
             <artifactId>gateway-test-utils</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
 </project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-ha/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-ha/pom.xml b/gateway-provider-ha/pom.xml
index a854df7..c4e17f7 100644
--- a/gateway-provider-ha/pom.xml
+++ b/gateway-provider-ha/pom.xml
@@ -23,19 +23,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-ha</artifactId>
 
+    <artifactId>gateway-provider-ha</artifactId>
     <name>gateway-provider-ha</name>
     <description>An extension of the gateway that supports Hadoop services standing in HA mode</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>commons-io</groupId>
@@ -58,8 +50,7 @@
             <artifactId>curator-test</artifactId>
             <scope>test</scope>
         </dependency>
-
-
+        
         <dependency>
             <groupId>org.easymock</groupId>
             <artifactId>easymock</artifactId>
@@ -93,7 +84,5 @@
             <artifactId>junit</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-identity-assertion-common/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-identity-assertion-common/pom.xml b/gateway-provider-identity-assertion-common/pom.xml
index e85cf57..1db55d5 100644
--- a/gateway-provider-identity-assertion-common/pom.xml
+++ b/gateway-provider-identity-assertion-common/pom.xml
@@ -23,21 +23,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-identity-assertion-common</artifactId>
 
+    <artifactId>gateway-provider-identity-assertion-common</artifactId>
     <name>gateway-provider-identity-assertion-common</name>
     <description>An extension to the gateway that provides an easy integration point for asserting identity to Hadoop clusters using using some custom mapping facility.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>commons-io</groupId>
             <artifactId>commons-io</artifactId>
@@ -96,6 +87,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-identity-assertion-concat/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-identity-assertion-concat/pom.xml b/gateway-provider-identity-assertion-concat/pom.xml
index 6d68890..2ecc270 100644
--- a/gateway-provider-identity-assertion-concat/pom.xml
+++ b/gateway-provider-identity-assertion-concat/pom.xml
@@ -23,21 +23,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-identity-assertion-concat</artifactId>
 
+    <artifactId>gateway-provider-identity-assertion-concat</artifactId>
     <name>gateway-provider-identity-assertion-concat</name>
     <description>An extension to the gateway that provides an easy integration point for asserting identity to Hadoop clusters using using some custom mapping facility.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>commons-io</groupId>
             <artifactId>commons-io</artifactId>
@@ -87,6 +78,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-identity-assertion-hadoop-groups/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-identity-assertion-hadoop-groups/pom.xml b/gateway-provider-identity-assertion-hadoop-groups/pom.xml
index 6bd80b7..6cd61db 100644
--- a/gateway-provider-identity-assertion-hadoop-groups/pom.xml
+++ b/gateway-provider-identity-assertion-hadoop-groups/pom.xml
@@ -23,21 +23,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-identity-assertion-hadoop-groups</artifactId>
 
+    <artifactId>gateway-provider-identity-assertion-hadoop-groups</artifactId>
     <name>gateway-provider-identity-assertion-hadoop-groups</name>
     <description>An extension to the gateway that provides group membership lookups similar to Hadoop for the authenticated (asserted) identity.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-provider-identity-assertion-common</artifactId>
@@ -97,6 +88,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-identity-assertion-pseudo/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-identity-assertion-pseudo/pom.xml b/gateway-provider-identity-assertion-pseudo/pom.xml
index 27c3d2a..149518b 100644
--- a/gateway-provider-identity-assertion-pseudo/pom.xml
+++ b/gateway-provider-identity-assertion-pseudo/pom.xml
@@ -23,21 +23,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-identity-assertion-pseudo</artifactId>
 
+    <artifactId>gateway-provider-identity-assertion-pseudo</artifactId>
     <name>gateway-provider-identity-assertion-pseudo</name>
     <description>An extension to the gateway that asserts identity to Hadoop clusters using the pseudo or simple authentication mechanism.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>commons-io</groupId>
             <artifactId>commons-io</artifactId>
@@ -87,6 +78,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-identity-assertion-regex/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-identity-assertion-regex/pom.xml b/gateway-provider-identity-assertion-regex/pom.xml
index 5f86335..d718dbc 100644
--- a/gateway-provider-identity-assertion-regex/pom.xml
+++ b/gateway-provider-identity-assertion-regex/pom.xml
@@ -23,21 +23,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-identity-assertion-regex</artifactId>
 
+    <artifactId>gateway-provider-identity-assertion-regex</artifactId>
     <name>gateway-provider-identity-assertion-regex</name>
     <description>An extension to the gateway that provides an easy integration point for asserting identity to Hadoop clusters using using some custom mapping facility.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-provider-identity-assertion-common</artifactId>
@@ -87,6 +78,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-identity-assertion-switchcase/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-identity-assertion-switchcase/pom.xml b/gateway-provider-identity-assertion-switchcase/pom.xml
index 4252bdf..48553ab 100644
--- a/gateway-provider-identity-assertion-switchcase/pom.xml
+++ b/gateway-provider-identity-assertion-switchcase/pom.xml
@@ -23,19 +23,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-identity-assertion-switchcase</artifactId>
 
+    <artifactId>gateway-provider-identity-assertion-switchcase</artifactId>
     <name>gateway-provider-identity-assertion-switchcase</name>
     <description>An extension to the gateway that provides the ability to switch the case of user and group names.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -62,7 +54,5 @@
             <artifactId>junit</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-jersey/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-jersey/pom.xml b/gateway-provider-jersey/pom.xml
index f682db0..15b0573 100644
--- a/gateway-provider-jersey/pom.xml
+++ b/gateway-provider-jersey/pom.xml
@@ -18,27 +18,18 @@
 <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>
         <artifactId>gateway</artifactId>
         <groupId>org.apache.knox</groupId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>gateway-provider-jersey</artifactId>
     <name>gateway-provider-jersey</name>
     <description>An extension to the gateway that can internally dispatch to Jersey REST implementations.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
           <groupId>org.glassfish.jersey.containers</groupId>
           <artifactId>jersey-container-servlet</artifactId>
@@ -102,6 +93,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-rewrite-func-hostmap-static/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-rewrite-func-hostmap-static/pom.xml b/gateway-provider-rewrite-func-hostmap-static/pom.xml
index b5bbdf6..1481abe 100644
--- a/gateway-provider-rewrite-func-hostmap-static/pom.xml
+++ b/gateway-provider-rewrite-func-hostmap-static/pom.xml
@@ -24,21 +24,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
+    
     <artifactId>gateway-provider-rewrite-func-hostmap-static</artifactId>
-
     <name>gateway-provider-rewrite-func-hostmap-static</name>
     <description>An extension to the URL rewriter that provides a way to map hostnames in requests and responses.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-i18n</artifactId>
@@ -102,7 +93,5 @@
             <artifactId>velocity</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-rewrite-func-inbound-query-param/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-rewrite-func-inbound-query-param/pom.xml b/gateway-provider-rewrite-func-inbound-query-param/pom.xml
index aaf31c7..4f716d7 100644
--- a/gateway-provider-rewrite-func-inbound-query-param/pom.xml
+++ b/gateway-provider-rewrite-func-inbound-query-param/pom.xml
@@ -26,16 +26,7 @@
     <name>gateway-provider-rewrite-func-inbound-url</name>
     <description>An extension to the URL rewriter that provides a way to get the inbound service URL.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-i18n</artifactId>
@@ -99,7 +90,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-rewrite-func-service-registry/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-rewrite-func-service-registry/pom.xml b/gateway-provider-rewrite-func-service-registry/pom.xml
index 2af4ee5..ed1e515 100644
--- a/gateway-provider-rewrite-func-service-registry/pom.xml
+++ b/gateway-provider-rewrite-func-service-registry/pom.xml
@@ -24,21 +24,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-rewrite-func-service-registry</artifactId>
 
+    <artifactId>gateway-provider-rewrite-func-service-registry</artifactId>
     <name>gateway-provider-rewrite-func-service-registry</name>
     <description>An extension to the URL rewriter that provides a way to access the service registry.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-i18n</artifactId>
@@ -112,7 +103,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-rewrite-step-encrypt-uri/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-rewrite-step-encrypt-uri/pom.xml b/gateway-provider-rewrite-step-encrypt-uri/pom.xml
index 337b949..ef8f176 100644
--- a/gateway-provider-rewrite-step-encrypt-uri/pom.xml
+++ b/gateway-provider-rewrite-step-encrypt-uri/pom.xml
@@ -16,96 +16,89 @@
   limitations under the License.
 -->
 <project
-	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
-	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-	<modelVersion>4.0.0</modelVersion>
-	<parent>
-		<groupId>org.apache.knox</groupId>
-		<artifactId>gateway</artifactId>
-		<version>1.2.0-SNAPSHOT</version>
-	</parent>
-	<artifactId>gateway-provider-rewrite-step-encrypt-uri</artifactId>
-	<name>gateway-provider-rewrite-step-encrypt-uri</name>
-	<description>An extension of the gateway that supports securing request/response content.</description>
+        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+        xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.knox</groupId>
+        <artifactId>gateway</artifactId>
+        <version>1.2.0-SNAPSHOT</version>
+    </parent>
 
-	<licenses>
-		<license>
-			<name>The Apache Software License, Version 2.0</name>
-			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-			<distribution>repo</distribution>
-		</license>
-	</licenses>
+    <artifactId>gateway-provider-rewrite-step-encrypt-uri</artifactId>
+    <name>gateway-provider-rewrite-step-encrypt-uri</name>
+    <description>An extension of the gateway that supports securing request/response content.</description>
 
-	<dependencies>
+    <dependencies>
 
-		<dependency>
-			<groupId>${gateway-group}</groupId>
-			<artifactId>gateway-util-common</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>${gateway-group}</groupId>
-			<artifactId>gateway-util-urltemplate</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>${gateway-group}</groupId>
-			<artifactId>gateway-i18n</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>${gateway-group}</groupId>
-			<artifactId>gateway-i18n-logging-log4j</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>${gateway-group}</groupId>
-			<artifactId>gateway-spi</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>${gateway-group}</groupId>
-			<artifactId>gateway-provider-rewrite</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>commons-codec</groupId>
-			<artifactId>commons-codec</artifactId>
-		</dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-util-common</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-util-urltemplate</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-i18n</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-i18n-logging-log4j</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-spi</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-rewrite</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+        </dependency>
 
-		<!-- ********** ********** ********** ********** ********** ********** -->
-		<!-- ********** Test Dependencies ********** -->
-		<!-- ********** ********** ********** ********** ********** ********** -->
+        <!-- ********** ********** ********** ********** ********** ********** -->
+        <!-- ********** Test Dependencies ********** -->
+        <!-- ********** ********** ********** ********** ********** ********** -->
 
-		<dependency>
-			<groupId>${gateway-group}</groupId>
-			<artifactId>gateway-test-utils</artifactId>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.velocity</groupId>
-			<artifactId>velocity</artifactId>
-			<scope>test</scope>
-		</dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-test-utils</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.velocity</groupId>
+            <artifactId>velocity</artifactId>
+            <scope>test</scope>
+        </dependency>
 
-		<dependency>
-			<groupId>${gateway-group}</groupId>
-			<artifactId>gateway-server</artifactId>
-			<scope>test</scope>
-		</dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-server</artifactId>
+            <scope>test</scope>
+        </dependency>
 
-		<dependency>
-			<groupId>org.hamcrest</groupId>
-			<artifactId>hamcrest-library</artifactId>
-			<scope>test</scope>
-		</dependency>
+        <dependency>
+            <groupId>org.hamcrest</groupId>
+            <artifactId>hamcrest-library</artifactId>
+            <scope>test</scope>
+        </dependency>
 
-		<!-- This must be after restassured otherwise is messes up the hamcrest
-			dependencies. -->
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<scope>test</scope>
-		</dependency>
+        <!-- This must be after restassured otherwise is messes up the hamcrest
+            dependencies. -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
 
-		<dependency>
-			<groupId>org.easymock</groupId>
-			<artifactId>easymock</artifactId>
-			<scope>test</scope>
-		</dependency>
-	</dependencies>
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-rewrite-step-secure-query/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-rewrite-step-secure-query/pom.xml b/gateway-provider-rewrite-step-secure-query/pom.xml
index 8194b1a..3d16a1e 100644
--- a/gateway-provider-rewrite-step-secure-query/pom.xml
+++ b/gateway-provider-rewrite-step-secure-query/pom.xml
@@ -24,21 +24,12 @@
         <groupId>org.apache.knox</groupId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-rewrite-step-secure-query</artifactId>
 
+    <artifactId>gateway-provider-rewrite-step-secure-query</artifactId>
     <name>gateway-provider-rewrite-step-secure-query</name>
     <description>An extension of the gateway that supports securing query parameters.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-util-common</artifactId>
@@ -102,7 +93,5 @@
             <artifactId>easymock</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-rewrite/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-rewrite/pom.xml b/gateway-provider-rewrite/pom.xml
index a88066d..edde5c4 100644
--- a/gateway-provider-rewrite/pom.xml
+++ b/gateway-provider-rewrite/pom.xml
@@ -23,21 +23,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-rewrite</artifactId>
 
+    <artifactId>gateway-provider-rewrite</artifactId>
     <name>gateway-provider-rewrite</name>
     <description>An extension of the gateway that supports rewriting URLs is requests and responses.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-util-common</artifactId>
@@ -144,7 +135,5 @@
             <artifactId>velocity</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-security-authc-anon/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-security-authc-anon/pom.xml b/gateway-provider-security-authc-anon/pom.xml
index 89f8c96..93477d8 100755
--- a/gateway-provider-security-authc-anon/pom.xml
+++ b/gateway-provider-security-authc-anon/pom.xml
@@ -23,19 +23,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-security-authc-anon</artifactId>
 
+    <artifactId>gateway-provider-security-authc-anon</artifactId>
     <name>gateway-provider-security-authc-anon</name>
     <description>An extension of the gateway that provides a pseudo subject and no auth</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -61,7 +53,5 @@
             <artifactId>gateway-test-utils</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-security-hadoopauth/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-security-hadoopauth/pom.xml b/gateway-provider-security-hadoopauth/pom.xml
index 20537ab..de2b5b4 100755
--- a/gateway-provider-security-hadoopauth/pom.xml
+++ b/gateway-provider-security-hadoopauth/pom.xml
@@ -23,19 +23,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
+    
     <artifactId>gateway-provider-security-hadoopauth</artifactId>
-
     <name>gateway-provider-security-hadoop-auth</name>
     <description>An extension of the gateway introducing based on org.apache.hadoop.security.auth package</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -66,7 +58,5 @@
             <artifactId>gateway-test-utils</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-security-jwt/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-security-jwt/pom.xml b/gateway-provider-security-jwt/pom.xml
index 7650d3e..e02a611 100644
--- a/gateway-provider-security-jwt/pom.xml
+++ b/gateway-provider-security-jwt/pom.xml
@@ -23,19 +23,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-security-jwt</artifactId>
 
+    <artifactId>gateway-provider-security-jwt</artifactId>
     <name>gateway-provider-security-jwt</name>
     <description>An extension of the gateway introducing JWT as a recognized token for authentication.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -79,7 +71,5 @@
             <artifactId>gateway-test-utils</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-security-pac4j/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-security-pac4j/pom.xml b/gateway-provider-security-pac4j/pom.xml
index 5e294b9..ccdaec2 100644
--- a/gateway-provider-security-pac4j/pom.xml
+++ b/gateway-provider-security-pac4j/pom.xml
@@ -23,26 +23,17 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-security-pac4j</artifactId>
 
+    <artifactId>gateway-provider-security-pac4j</artifactId>
     <name>gateway-provider-security-pac4j</name>
     <description>An extension of the gateway integrating pac4j as an authentication provider.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <properties>
         <j2e-pac4j.version>3.0.0</j2e-pac4j.version>
         <pac4j.version>2.1.0</pac4j.version>
     </properties>
 
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-server</artifactId>
@@ -86,7 +77,7 @@
                     <groupId>xalan</groupId>
                     <artifactId>xalan</artifactId>
                 </exclusion>
-		<exclusion>
+                <exclusion>
                     <groupId>org.springframework</groupId>
                     <artifactId>spring-core</artifactId>
                 </exclusion>
@@ -172,7 +163,5 @@
             <artifactId>gateway-test-utils</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-security-preauth/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-security-preauth/pom.xml b/gateway-provider-security-preauth/pom.xml
index 712cee7..4dd3a41 100644
--- a/gateway-provider-security-preauth/pom.xml
+++ b/gateway-provider-security-preauth/pom.xml
@@ -23,19 +23,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-security-preauth</artifactId>
 
+    <artifactId>gateway-provider-security-preauth</artifactId>
     <name>gateway-provider-security-preauth</name>
     <description>An extension of the gateway introducing SSO of preauthenticated identities.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -73,7 +65,5 @@
             <groupId>org.apache.knox</groupId>
             <artifactId>gateway-server</artifactId>
         </dependency>
-
     </dependencies>
-
 </project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-security-shiro/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-security-shiro/pom.xml b/gateway-provider-security-shiro/pom.xml
index 4037742..8c70ea2 100644
--- a/gateway-provider-security-shiro/pom.xml
+++ b/gateway-provider-security-shiro/pom.xml
@@ -23,21 +23,12 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-security-shiro</artifactId>
 
+    <artifactId>gateway-provider-security-shiro</artifactId>
     <name>gateway-provider-security-shiro</name>
     <description>An extension of the gateway integrating Shiro as an authentication provider.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-server</artifactId>
@@ -92,7 +83,5 @@
             <artifactId>gateway-test-utils</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-provider-security-webappsec/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-provider-security-webappsec/pom.xml b/gateway-provider-security-webappsec/pom.xml
index 8172c3d..c7d6712 100644
--- a/gateway-provider-security-webappsec/pom.xml
+++ b/gateway-provider-security-webappsec/pom.xml
@@ -23,19 +23,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-provider-security-webappsec</artifactId>
 
+    <artifactId>gateway-provider-security-webappsec</artifactId>
     <name>gateway-provider-security-webappsec</name>
     <description>An extension of the gateway introducing web application security protections.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -68,7 +60,5 @@
             <artifactId>gateway-test-utils</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-release/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-release/pom.xml b/gateway-release/pom.xml
index 301f5d0..7f88a13 100644
--- a/gateway-release/pom.xml
+++ b/gateway-release/pom.xml
@@ -24,20 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-release</artifactId>
 
+    <artifactId>gateway-release</artifactId>
     <name>gateway-release</name>
     <description>The gateway binary release packaging.</description>
-
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
-
+    
     <profiles>
         <profile>
             <id>package</id>
@@ -350,5 +341,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-server/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-server/pom.xml b/gateway-server/pom.xml
index 17d7e92..b2b9424 100644
--- a/gateway-server/pom.xml
+++ b/gateway-server/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-server</artifactId>
 
+    <artifactId>gateway-server</artifactId>
     <name>gateway-server</name>
     <description>The gateway server implementation.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <build>
         <resources>
             <resource>
@@ -326,5 +318,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-admin/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-admin/pom.xml b/gateway-service-admin/pom.xml
index 61b15fd..7835afa 100644
--- a/gateway-service-admin/pom.xml
+++ b/gateway-service-admin/pom.xml
@@ -19,55 +19,51 @@
          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.knox</groupId>
-    <artifactId>gateway</artifactId>
-    <version>1.2.0-SNAPSHOT</version>
-  </parent>
-  <groupId>org.apache.knox</groupId>
-  <artifactId>gateway-service-admin</artifactId>
-  <version>1.2.0-SNAPSHOT</version>
-  <name>gateway-service-admin</name>
-  <url>http://maven.apache.org</url>
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-  <dependencies>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-spi</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-rewrite</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-jersey</artifactId>
-	  </dependency>
-    <dependency>
-      <groupId>org.eclipse.persistence</groupId>
-      <artifactId>eclipselink</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.knox</groupId>
-      <artifactId>gateway-test-utils</artifactId>
-      <scope>test</scope>
-    </dependency>
-      <dependency>
-          <groupId>org.easymock</groupId>
-          <artifactId>easymock</artifactId>
-          <scope>test</scope>
-      </dependency>
-      <dependency>
-          <groupId>org.xmlmatchers</groupId>
-          <artifactId>xml-matchers</artifactId>
-          <scope>test</scope>
-      </dependency>
-  </dependencies>
+    <parent>
+        <groupId>org.apache.knox</groupId>
+        <artifactId>gateway</artifactId>
+        <version>1.2.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>gateway-service-admin</artifactId>
+    <name>gateway-service-admin</name>
+    
+    <dependencies>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-spi</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-rewrite</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-jersey</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.persistence</groupId>
+            <artifactId>eclipselink</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.knox</groupId>
+            <artifactId>gateway-test-utils</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.xmlmatchers</groupId>
+            <artifactId>xml-matchers</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-as/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-as/pom.xml b/gateway-service-as/pom.xml
index 0211900..3f0491d 100644
--- a/gateway-service-as/pom.xml
+++ b/gateway-service-as/pom.xml
@@ -29,14 +29,6 @@
     <name>gateway-service-as</name>
     <description>The extension to the gateway for authentication service.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-definitions/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-definitions/pom.xml b/gateway-service-definitions/pom.xml
index 8563240..a1af6d0 100644
--- a/gateway-service-definitions/pom.xml
+++ b/gateway-service-definitions/pom.xml
@@ -28,14 +28,7 @@
     <artifactId>gateway-service-definitions</artifactId>
     <name>gateway-service-definitions</name>
     <description>The service definitions aka stacks.</description>
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
+    
     <dependencies>
         <dependency>
             <groupId>org.eclipse.persistence</groupId>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-hbase/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-hbase/pom.xml b/gateway-service-hbase/pom.xml
index 57e67ba..d05691c 100644
--- a/gateway-service-hbase/pom.xml
+++ b/gateway-service-hbase/pom.xml
@@ -29,14 +29,6 @@
     <name>gateway-service-hbase</name>
     <description>The extensions to the gateway for supporting Hbase.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-health/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-health/pom.xml b/gateway-service-health/pom.xml
index 39d667f..bb2a400 100644
--- a/gateway-service-health/pom.xml
+++ b/gateway-service-health/pom.xml
@@ -24,14 +24,10 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <groupId>org.apache.knox</groupId>
+
     <artifactId>gateway-service-health</artifactId>
-    <version>1.2.0-SNAPSHOT</version>
     <name>gateway-service-health</name>
-    <url>http://maven.apache.org</url>
-    <properties>
-        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    </properties>
+
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-hive/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-hive/pom.xml b/gateway-service-hive/pom.xml
index aaa3808..1c57784 100644
--- a/gateway-service-hive/pom.xml
+++ b/gateway-service-hive/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-service-hive</artifactId>
 
+    <artifactId>gateway-service-hive</artifactId>
     <name>gateway-service-hive</name>
     <description>The extension to the gateway for supporting Hive via JDBC+ODBC/Thrift/HTTP.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -65,5 +57,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-knoxsso/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-knoxsso/pom.xml b/gateway-service-knoxsso/pom.xml
index bf54bac..710e8e7 100644
--- a/gateway-service-knoxsso/pom.xml
+++ b/gateway-service-knoxsso/pom.xml
@@ -19,50 +19,46 @@
          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.knox</groupId>
-    <artifactId>gateway</artifactId>
-    <version>1.2.0-SNAPSHOT</version>
-  </parent>
-  <groupId>org.apache.knox</groupId>
-  <artifactId>gateway-service-knoxsso</artifactId>
-  <version>1.2.0-SNAPSHOT</version>
-  <name>gateway-service-knoxsso</name>
-  <url>http://maven.apache.org</url>
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-  <dependencies>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-util-common</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-spi</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-rewrite</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-jersey</artifactId>
-	  </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.knox</groupId>
-      <artifactId>gateway-test-utils</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.easymock</groupId>
-      <artifactId>easymock</artifactId>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
+    <parent>
+        <groupId>org.apache.knox</groupId>
+        <artifactId>gateway</artifactId>
+        <version>1.2.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>gateway-service-knoxsso</artifactId>
+    <name>gateway-service-knoxsso</name>
+    
+    <dependencies>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-util-common</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-spi</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-rewrite</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-jersey</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.knox</groupId>
+            <artifactId>gateway-test-utils</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-knoxssout/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-knoxssout/pom.xml b/gateway-service-knoxssout/pom.xml
index 68ae6f8..b07b1b7 100644
--- a/gateway-service-knoxssout/pom.xml
+++ b/gateway-service-knoxssout/pom.xml
@@ -19,56 +19,46 @@
          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.knox</groupId>
-    <artifactId>gateway</artifactId>
-    <version>1.2.0-SNAPSHOT</version>
-  </parent>
-  <groupId>org.apache.knox</groupId>
-  <artifactId>gateway-service-knoxssout</artifactId>
-  <version>1.2.0-SNAPSHOT</version>
-  <name>gateway-service-knoxssout</name>
-  <licenses>
-    <license>
-      <name>The Apache Software License, Version 2.0</name>
-      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-      <distribution>repo</distribution>
-      </license>
-  </licenses>
-  <url>http://maven.apache.org</url>
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-  <dependencies>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-util-common</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-spi</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-rewrite</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-jersey</artifactId>
-	  </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.knox</groupId>
-      <artifactId>gateway-test-utils</artifactId>
-      <scope>test</scope>
-    </dependency>
-      <dependency>
-          <groupId>org.easymock</groupId>
-          <artifactId>easymock</artifactId>
-          <scope>test</scope>
-      </dependency>  </dependencies>
+    <parent>
+        <groupId>org.apache.knox</groupId>
+        <artifactId>gateway</artifactId>
+        <version>1.2.0-SNAPSHOT</version>
+    </parent>
+    
+    <artifactId>gateway-service-knoxssout</artifactId>
+    <name>gateway-service-knoxssout</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-util-common</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-spi</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-rewrite</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-jersey</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.knox</groupId>
+            <artifactId>gateway-test-utils</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-knoxtoken/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-knoxtoken/pom.xml b/gateway-service-knoxtoken/pom.xml
index 4df9ea1..9dbc084 100644
--- a/gateway-service-knoxtoken/pom.xml
+++ b/gateway-service-knoxtoken/pom.xml
@@ -19,57 +19,46 @@
          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.knox</groupId>
-    <artifactId>gateway</artifactId>
-    <version>1.2.0-SNAPSHOT</version>
-  </parent>
-  <groupId>org.apache.knox</groupId>
-  <artifactId>gateway-service-knoxtoken</artifactId>
-  <version>1.2.0-SNAPSHOT</version>
-  <name>gateway-service-knoxtoken</name>
-  <licenses>
-    <license>
-      <name>The Apache Software License, Version 2.0</name>
-      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-  <url>http://maven.apache.org</url>
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-  <dependencies>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-util-common</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-spi</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-rewrite</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-jersey</artifactId>
-	  </dependency>
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <scope>test</scope>
-      </dependency>
-      <dependency>
+    <parent>
         <groupId>org.apache.knox</groupId>
-        <artifactId>gateway-test-utils</artifactId>
-        <scope>test</scope>
-      </dependency>
-      <dependency>
-        <groupId>org.easymock</groupId>
-        <artifactId>easymock</artifactId>
-        <scope>test</scope>
-      </dependency>
-  </dependencies>
+        <artifactId>gateway</artifactId>
+        <version>1.2.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>gateway-service-knoxtoken</artifactId>
+    <name>gateway-service-knoxtoken</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-util-common</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-spi</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-rewrite</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-jersey</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.knox</groupId>
+            <artifactId>gateway-test-utils</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-nifi/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-nifi/pom.xml b/gateway-service-nifi/pom.xml
index 3165252..6536eb7 100644
--- a/gateway-service-nifi/pom.xml
+++ b/gateway-service-nifi/pom.xml
@@ -18,24 +18,17 @@
 <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>
         <artifactId>gateway</artifactId>
         <groupId>org.apache.knox</groupId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>gateway-service-nifi</artifactId>
+    <name>gateway-service-nifi</name>
     <description>Extension to the gateway for supporting Apache NiFi.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-remoteconfig/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-remoteconfig/pom.xml b/gateway-service-remoteconfig/pom.xml
index f63859b..d8b47cc 100644
--- a/gateway-service-remoteconfig/pom.xml
+++ b/gateway-service-remoteconfig/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-service-remoteconfig</artifactId>
 
+    <artifactId>gateway-service-remoteconfig</artifactId>
     <name>gateway-service-remoteconfig</name>
     <description>The gateway service for interacting with remote configuration registries.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -78,7 +70,5 @@
             <artifactId>curator-test</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-rm/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-rm/pom.xml b/gateway-service-rm/pom.xml
index 3340a79..2f84123 100644
--- a/gateway-service-rm/pom.xml
+++ b/gateway-service-rm/pom.xml
@@ -22,19 +22,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-service-rm</artifactId>
 
+    <artifactId>gateway-service-rm</artifactId>
     <name>gateway-service-rm</name>
     <description>The extension to the gateway for supporting RM.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -75,7 +67,5 @@
             <artifactId>hamcrest-library</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-storm/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-storm/pom.xml b/gateway-service-storm/pom.xml
index d5f28b8..0b54592 100644
--- a/gateway-service-storm/pom.xml
+++ b/gateway-service-storm/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-service-storm</artifactId>
 
+    <artifactId>gateway-service-storm</artifactId>
     <name>gateway-service-storm</name>
     <description>The extension to the gateway for supporting Storm.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -61,5 +53,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-tgs/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-tgs/pom.xml b/gateway-service-tgs/pom.xml
index 8081092..2a441f3 100644
--- a/gateway-service-tgs/pom.xml
+++ b/gateway-service-tgs/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-service-tgs</artifactId>
 
+    <artifactId>gateway-service-tgs</artifactId>
     <name>gateway-service-tgs</name>
     <description>The extension to the gateway for authentication service.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -53,5 +45,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-vault/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-vault/pom.xml b/gateway-service-vault/pom.xml
index 72cd114..fb60045 100644
--- a/gateway-service-vault/pom.xml
+++ b/gateway-service-vault/pom.xml
@@ -19,41 +19,37 @@
          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.knox</groupId>
-    <artifactId>gateway</artifactId>
-    <version>1.2.0-SNAPSHOT</version>
-  </parent>
-  <groupId>org.apache.knox</groupId>
-  <artifactId>gateway-service-vault</artifactId>
-  <version>1.2.0-SNAPSHOT</version>
-  <name>gateway-service-vault</name>
-  <url>http://maven.apache.org</url>
-  <properties>
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-  </properties>
-  <dependencies>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-spi</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-rewrite</artifactId>
-	  </dependency>
-	  <dependency>
-	    <groupId>${gateway-group}</groupId>
-	    <artifactId>gateway-provider-jersey</artifactId>
-	  </dependency>
-		<dependency>
-		  <groupId>com.owlike</groupId>
-		  <artifactId>genson</artifactId>
-		  <version>0.99</version>
-		</dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
+    <parent>
+        <groupId>org.apache.knox</groupId>
+        <artifactId>gateway</artifactId>
+        <version>1.2.0-SNAPSHOT</version>
+    </parent>
+    
+    <artifactId>gateway-service-vault</artifactId>
+    <name>gateway-service-vault</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-spi</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-rewrite</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>${gateway-group}</groupId>
+            <artifactId>gateway-provider-jersey</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>com.owlike</groupId>
+            <artifactId>genson</artifactId>
+            <version>0.99</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-service-webhdfs/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-service-webhdfs/pom.xml b/gateway-service-webhdfs/pom.xml
index 55a5179..07fe682 100644
--- a/gateway-service-webhdfs/pom.xml
+++ b/gateway-service-webhdfs/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-service-webhdfs</artifactId>
 
+    <artifactId>gateway-service-webhdfs</artifactId>
     <name>gateway-service-webhdfs</name>
     <description>The extension to the gateway for supporting WebHDFS.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -72,7 +64,5 @@
             <artifactId>hamcrest-library</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-shell-release/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-shell-release/pom.xml b/gateway-shell-release/pom.xml
index ca99385..970888d 100644
--- a/gateway-shell-release/pom.xml
+++ b/gateway-shell-release/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-shell-release</artifactId>
 
+    <artifactId>gateway-shell-release</artifactId>
     <name>gateway-shell-release</name>
     <description>The gateway shell binary release packaging.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <build>
         <plugins>
             <plugin>
@@ -50,6 +42,7 @@
                             <goal>shade</goal>
                         </goals>
                         <configuration>
+                            <createDependencyReducedPom>false</createDependencyReducedPom>
                             <transformers>
                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                     <mainClass>org.apache.knox.gateway.launcher.Launcher</mainClass>
@@ -157,7 +150,6 @@
     </profiles>
 
     <dependencies>
-
         <dependency>
             <groupId>${gateway-group}</groupId>
             <artifactId>gateway-shell</artifactId>
@@ -179,7 +171,5 @@
             <artifactId>junit</artifactId>
             <scope>test</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-shell-samples/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-shell-samples/pom.xml b/gateway-shell-samples/pom.xml
index e24fddf..c9c8cdd 100644
--- a/gateway-shell-samples/pom.xml
+++ b/gateway-shell-samples/pom.xml
@@ -18,25 +18,17 @@
 <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>
         <artifactId>gateway</artifactId>
         <groupId>org.apache.knox</groupId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
     <artifactId>gateway-shell-samples</artifactId>
     <name>gateway-shell-samples</name>
     <description>Sample scripts to demonstrate various shell capabilities</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>junit</groupId>
@@ -44,5 +36,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-
 </project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-spi/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-spi/pom.xml b/gateway-spi/pom.xml
index 534b10a..fa55fe5 100644
--- a/gateway-spi/pom.xml
+++ b/gateway-spi/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-spi</artifactId>
 
+    <artifactId>gateway-spi</artifactId>
     <name>gateway-spi</name>
     <description>The Service Provider Interface for extending the capabilities of the gateway.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <dependencies>
         <dependency>
             <groupId>${gateway-group}</groupId>
@@ -164,5 +156,4 @@
             <artifactId>gateway-service-definitions</artifactId>
         </dependency>
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-test-utils/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-test-utils/pom.xml b/gateway-test-utils/pom.xml
index 7170239..e968875 100644
--- a/gateway-test-utils/pom.xml
+++ b/gateway-test-utils/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
-    <artifactId>gateway-test-utils</artifactId>
 
+    <artifactId>gateway-test-utils</artifactId>
     <name>gateway-test-utils</name>
     <description>A collection of common utilities used for testing.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <build>
         <plugins>
             <plugin>
@@ -48,7 +40,6 @@
     </build>
 
     <dependencies>
-
         <dependency>
             <groupId>org.hamcrest</groupId>
             <artifactId>hamcrest-core</artifactId>
@@ -120,7 +111,5 @@
             <artifactId>velocity</artifactId>
             <scope>provided</scope>
         </dependency>
-
     </dependencies>
-
 </project>

http://git-wip-us.apache.org/repos/asf/knox/blob/c705f62d/gateway-util-common/pom.xml
----------------------------------------------------------------------
diff --git a/gateway-util-common/pom.xml b/gateway-util-common/pom.xml
index ce7ed5e..0103413 100644
--- a/gateway-util-common/pom.xml
+++ b/gateway-util-common/pom.xml
@@ -24,19 +24,11 @@
         <artifactId>gateway</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
+    
     <artifactId>gateway-util-common</artifactId>
-
     <name>gateway-util-common</name>
     <description>A collection of common utilities.</description>
 
-    <licenses>
-        <license>
-            <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-            <distribution>repo</distribution>
-        </license>
-    </licenses>
-
     <build>
         <plugins>
             <plugin>
@@ -104,7 +96,5 @@
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
         </dependency>
-
     </dependencies>
-
 </project>