You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oltu.apache.org by si...@apache.org on 2012/01/11 16:04:38 UTC

svn commit: r1230083 - in /incubator/amber/trunk/oauth-2.0: oauth2-authzserver/ oauth2-client-demo/ oauth2-client/ oauth2-common/ oauth2-dynamicreg-client/ oauth2-dynamicreg-common/ oauth2-dynamicreg-server/ oauth2-httpclient4/ oauth2-integration-tests...

Author: simonetripodi
Date: Wed Jan 11 15:04:37 2012
New Revision: 1230083

URL: http://svn.apache.org/viewvc?rev=1230083&view=rev
Log:
cleaned up oauth 2.0 POMs

Modified:
    incubator/amber/trunk/oauth-2.0/oauth2-authzserver/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-client-demo/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-client/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-common/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-client/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-common/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-server/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-httpclient4/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-integration-tests/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-resourceserver/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-rs-filter/pom.xml
    incubator/amber/trunk/oauth-2.0/oauth2-test-utils/pom.xml

Modified: incubator/amber/trunk/oauth-2.0/oauth2-authzserver/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-authzserver/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-authzserver/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-authzserver/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,52 +16,50 @@
   limitations under the License.
 -->
 <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">
-    <parent>
-        <groupId>org.apache.amber</groupId>
-        <artifactId>amber-oauth2-parent</artifactId>
-       <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>oauth2-authzserver</artifactId>
-    <version>0.22-incubating-SNAPSHOT</version>
-    <name>Apache Amber: OAuth 2.0 Implementation - Authorization Server</name>
-    <packaging>jar</packaging>
-
-    <build>
-        <finalName>oauth2-authzserver</finalName>
-    </build>
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-common</artifactId>
-           <version>0.22-incubating-SNAPSHOT</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.codehaus.jettison</groupId>
-            <artifactId>jettison</artifactId>
-            <version>${jettison.version}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>stax</groupId>
-                    <artifactId>stax-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-rt-frontend-jaxrs</artifactId>
-            <version>${cxf.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-testutils</artifactId>
-            <version>${cxf.version}</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
+  <modelVersion>4.0.0</modelVersion>
 
-</project>
\ No newline at end of file
+  <parent>
+    <groupId>org.apache.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
+     <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>oauth2-authzserver</artifactId>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Authorization Server</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-common</artifactId>
+       <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.codehaus.jettison</groupId>
+      <artifactId>jettison</artifactId>
+      <version>${jettison.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>stax</groupId>
+          <artifactId>stax-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.cxf</groupId>
+      <artifactId>cxf-rt-frontend-jaxrs</artifactId>
+      <version>${cxf.version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.cxf</groupId>
+      <artifactId>cxf-testutils</artifactId>
+      <version>${cxf.version}</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-client-demo/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-client-demo/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-client-demo/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-client-demo/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,133 +16,110 @@
   limitations under the License.
 -->
 <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">
-
-    <parent>
-        <artifactId>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-        <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>oauth2-client-demo</artifactId>
-    <name>Apache Amber: OAuth 2.0 Implementation - Demo Application</name>
-    <packaging>war</packaging>
-
-
-    <!-- Specify hard-coded project properties here -->
-    <properties>
-        <org.springframework.version>3.0.3.RELEASE</org.springframework.version>
-    </properties>
-
-
-    <build>
-        <finalName>oauth2-demo</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.mortbay.jetty</groupId>
-                <artifactId>maven-jetty-plugin</artifactId>
-                <version>6.1.24</version>
-                <configuration>
-                    <webAppConfig>
-                        <contextPath>/</contextPath>
-                    </webAppConfig>
-                    <connectors>
-                        <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
-                            <port>8080</port>
-                            <maxIdleTime>60000</maxIdleTime>
-                        </connector>
-                    </connectors>
-                    <scanIntervalSeconds>10</scanIntervalSeconds>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.6</source>
-                    <target>1.6</target>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-
-        <dependency>
-            <groupId>commons-logging</groupId>
-            <artifactId>commons-logging</artifactId>
-            <version>1.1</version>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-jcl</artifactId>
-            <version>1.6.0</version>
-        </dependency>
-
-
-        <!-- OAuth Dependency -->
-        <dependency>
-            <artifactId>oauth2-common</artifactId>
-            <groupId>org.apache.amber</groupId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <!-- OAuth Dynamic Registration Dependency -->
-
-        <dependency>
-            <artifactId>oauth2-dynamicreg-common</artifactId>
-            <groupId>org.apache.amber</groupId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <artifactId>oauth2-dynamicreg-client</artifactId>
-            <groupId>org.apache.amber</groupId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <!-- Spring MVC -->
-        <!--  Spring -->
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-context</artifactId>
-            <version>${org.springframework.version}</version>
-            <exclusions>
-                <!-- Exclude Commons Logging in favor of SLF4j -->
-                <exclusion>
-                    <groupId>commons-logging</groupId>
-                    <artifactId>commons-logging</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-webmvc</artifactId>
-            <version>${org.springframework.version}</version>
-        </dependency>
-
-
-        <!-- URL Rewrite -->
-        <!--  URL Rewrite -->
-        <dependency>
-            <groupId>org.tuckey</groupId>
-            <artifactId>urlrewritefilter</artifactId>
-            <version>3.1.0</version>
-            <scope>runtime</scope>
-        </dependency>
-
-        <!--
-              Make use of JSP tags. Remove, if you don't use JSPs
-          -->
-        <dependency>
-            <artifactId>standard</artifactId>
-            <groupId>taglibs</groupId>
-            <version>1.1.2</version>
-            <type>jar</type>
-            <scope>runtime</scope>
-        </dependency>
-    </dependencies>
+     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.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
+    <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>oauth2-client-demo</artifactId>
+  <packaging>war</packaging>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Demo Application</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-jcl</artifactId>
+      <version>1.6.0</version>
+    </dependency>
+
+    <!-- OAuth Dependency -->
+    <dependency>
+      <artifactId>oauth2-common</artifactId>
+      <groupId>org.apache.amber</groupId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <!-- OAuth Dynamic Registration Dependency -->
+
+    <dependency>
+      <artifactId>oauth2-dynamicreg-common</artifactId>
+      <groupId>org.apache.amber</groupId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <artifactId>oauth2-dynamicreg-client</artifactId>
+      <groupId>org.apache.amber</groupId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <!-- Spring MVC -->
+    <!--  Spring -->
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-context</artifactId>
+      <version>${org.springframework.version}</version>
+      <exclusions>
+        <!-- Exclude Commons Logging in favor of SLF4j -->
+        <exclusion>
+          <groupId>commons-logging</groupId>
+          <artifactId>commons-logging</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-webmvc</artifactId>
+      <version>${org.springframework.version}</version>
+    </dependency>
+
+    <!-- URL Rewrite -->
+    <!--  URL Rewrite -->
+    <dependency>
+      <groupId>org.tuckey</groupId>
+      <artifactId>urlrewritefilter</artifactId>
+      <version>3.1.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <!--
+     | Make use of JSP tags. Remove, if you don't use JSPs
+    -->
+    <dependency>
+      <artifactId>standard</artifactId>
+      <groupId>taglibs</groupId>
+      <version>1.1.2</version>
+      <type>jar</type>
+      <scope>runtime</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>maven-jetty-plugin</artifactId>
+        <version>6.1.24</version>
+        <configuration>
+          <webAppConfig>
+            <contextPath>/</contextPath>
+          </webAppConfig>
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>8080</port>
+              <maxIdleTime>60000</maxIdleTime>
+            </connector>
+          </connectors>
+          <scanIntervalSeconds>10</scanIntervalSeconds>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-client/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-client/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-client/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-client/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,56 +16,52 @@
   limitations under the License.
 -->
 <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>
-    <artifactId>oauth2-client</artifactId>
+     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>amber-oauth2-parent</artifactId>
     <groupId>org.apache.amber</groupId>
-    <name>Apache Amber: OAuth 2.0 Implementation - Client</name>
-    <packaging>jar</packaging>
     <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>oauth2-client</artifactId>
 
-    <parent>
-        <artifactId>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-        <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <build>
-        <finalName>oauth2-client</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <version>2.5</version>
-                <configuration>
-                    <excludes>
-                        <exclude>**/utils/*</exclude>
-                        <exclude>**/OAuthClientTest.java</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-common</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.codehaus.jettison</groupId>
-            <artifactId>jettison</artifactId>
-            <version>${jettison.version}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>stax</groupId>
-                    <artifactId>stax-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
+  <name>Apache Amber: OAuth 2.0 Implementation - Client</name>
 
-    </dependencies>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.codehaus.jettison</groupId>
+      <artifactId>jettison</artifactId>
+      <version>${jettison.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>stax</groupId>
+          <artifactId>stax-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>**/utils/*</exclude>
+            <exclude>**/OAuthClientTest.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
-</project>
\ No newline at end of file
+</project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-common/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-common/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-common/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-common/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,60 +16,60 @@
   limitations under the License.
 -->
 <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">
-    <parent>
-        <artifactId>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-        <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>oauth2-common</artifactId>
-    <name>Apache Amber: OAuth 2.0 Implementation - Common</name>
+     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.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
     <version>0.22-incubating-SNAPSHOT</version>
-    <packaging>jar</packaging>
-    <description>OAuth 2.0 library - Common</description>
+  </parent>
+
+  <artifactId>oauth2-common</artifactId>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Common</name>
+  <description>OAuth 2.0 library - Common</description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.codehaus.jettison</groupId>
+      <artifactId>jettison</artifactId>
+      <version>${jettison.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>stax</groupId>
+          <artifactId>stax-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>**/TestOAuthClient.java</exclude>
+            <exclude>**/TestOAuthClient.java</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+        <configuration>
+          <instrumentation>
+            <excludes>
+              <exclude>org/apache/amber/oauth2/common/message/types/**.class</exclude>
+              <exclude>org/apache/amber/oauth2/common/OAuth**.class</exclude>
+            </excludes>
+          </instrumentation>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
-    <build>
-        <finalName>oauth2-common</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <version>2.5</version>
-                <configuration>
-                    <excludes>
-                        <exclude>**/TestOAuthClient.java</exclude>
-                        <exclude>**/TestOAuthClient.java</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>cobertura-maven-plugin</artifactId>
-                <configuration>
-                    <instrumentation>
-                        <excludes>
-                            <exclude>org/apache/amber/oauth2/common/message/types/**.class</exclude>
-                            <exclude>org/apache/amber/oauth2/common/OAuth**.class</exclude>
-                        </excludes>
-                    </instrumentation>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.codehaus.jettison</groupId>
-            <artifactId>jettison</artifactId>
-            <version>${jettison.version}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>stax</groupId>
-                    <artifactId>stax-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-    </dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-client/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-client/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-client/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-client/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,41 +16,37 @@
   limitations under the License.
 -->
 <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>
-    <artifactId>oauth2-dynamicreg-client</artifactId>
-    <name>Apache Amber: OAuth 2.0 Implementation - Dynamic Registration Client</name>
-    <packaging>jar</packaging>
+     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.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
     <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>oauth2-dynamicreg-client</artifactId>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Dynamic Registration Client</name>
 
-    <parent>
-        <artifactId>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-        <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <build>
-        <finalName>oauth2-dynamicreg-client</finalName>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-common</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-client</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-dynamicreg-common</artifactId>
-            <version>${project.version}</version>
-        </dependency>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-client</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-dynamicreg-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
 
-    </dependencies>
 </project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-common/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-common/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-common/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-common/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,27 +16,24 @@
   limitations under the License.
 -->
 <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>
-    <artifactId>oauth2-dynamicreg-common</artifactId>
-    <name>Apache Amber: OAuth 2.0 Implementation - Dynamic Registration Common</name>
-    <packaging>jar</packaging>
-   <version>0.22-incubating-SNAPSHOT</version>
-
-    <parent>
-        <artifactId>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-       <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <build>
-        <finalName>oauth2-dynamicreg-common</finalName>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-common</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-    </dependencies>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
+     <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>oauth2-dynamicreg-common</artifactId>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Dynamic Registration Common</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
 </project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-server/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-server/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-server/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-dynamicreg-server/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,58 +16,55 @@
   limitations under the License.
 -->
 <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>
-    <artifactId>oauth2-dynamicreg-server</artifactId>
-    <name>Apache Amber: OAuth 2.0 Implementation - Dynamic Registration Server</name>
-    <packaging>jar</packaging>
+     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.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
     <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
 
-    <parent>
-        <artifactId>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-        <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <build>
-        <finalName>oauth2-dynamicreg-server</finalName>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-common</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-authzserver</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-dynamicreg-common</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.codehaus.jettison</groupId>
-            <artifactId>jettison</artifactId>
-            <version>${jettison.version}</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>stax</groupId>
-                    <artifactId>stax-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-test-utils</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-    </dependencies>
-</project>
+  <artifactId>oauth2-dynamicreg-server</artifactId>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Dynamic Registration Server</name>
 
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-authzserver</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-dynamicreg-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.codehaus.jettison</groupId>
+      <artifactId>jettison</artifactId>
+      <version>${jettison.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>stax</groupId>
+          <artifactId>stax-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-test-utils</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+</project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-httpclient4/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-httpclient4/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-httpclient4/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-httpclient4/pom.xml Wed Jan 11 15:04:37 2012
@@ -6,7 +6,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -15,38 +15,30 @@
   limitations under the License.
 -->
 <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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
 
-
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>oauth2-httpclient4</artifactId>
-    <packaging>jar</packaging>
-    <name>Apache Amber: OAuth 2.0 Implementation - HttpClient</name>
-
-    <parent>
-        <artifactId>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-       <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <build>
-        <finalName>oauth2-httpclient4</finalName>
-    </build>
-    <properties>
-        <httpclient.version>4.1.2</httpclient.version>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-client</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.httpcomponents</groupId>
-            <artifactId>httpclient</artifactId>
-            <version>${httpclient.version}</version>
-        </dependency>
-    </dependencies>
+  <parent>
+    <groupId>org.apache.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
+     <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>oauth2-httpclient4</artifactId>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - HttpClient</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-client</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+      <version>4.1.2</version>
+    </dependency>
+  </dependencies>
 
 </project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-integration-tests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-integration-tests/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-integration-tests/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-integration-tests/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,115 +16,123 @@
   limitations under the License.
 -->
 <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">
-    <parent>
-        <artifactId>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-       <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <name>Apache Amber: OAuth 2.0 Implementation - Integration Tests</name>
-    <artifactId>oauth2-integration-tests</artifactId>
-   <version>0.22-incubating-SNAPSHOT</version>
-
-    <build>
-        <finalName>oauth2-integration-tests</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <version>2.5</version>
-                <configuration>
-                    <excludes>
-                        <exclude>**/utils/*</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-common</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-client</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-authzserver</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-httpclient4</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-resourceserver</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-dynamicreg-client</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-dynamicreg-server</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-rt-frontend-jaxrs</artifactId>
-            <version>${cxf.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.eclipse.jetty</groupId>
-            <artifactId>jetty-webapp</artifactId>
-            <version>${jetty.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-rt-transports-http</artifactId>
-            <version>${cxf.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-rt-transports-http-jetty</artifactId>
-            <version>${cxf.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-context</artifactId>
-            <version>${spring.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-core</artifactId>
-            <version>${spring.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-beans</artifactId>
-            <version>${spring.version}</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
+  <modelVersion>4.0.0</modelVersion>
 
-</project>
\ No newline at end of file
+  <parent>
+    <groupId>org.apache.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
+    <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Integration Tests</name>
+
+  <artifactId>oauth2-integration-tests</artifactId>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-client</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-authzserver</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-httpclient4</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-resourceserver</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-dynamicreg-client</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-dynamicreg-server</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.cxf</groupId>
+      <artifactId>cxf-rt-frontend-jaxrs</artifactId>
+      <version>${cxf.version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+      <version>${jetty.version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.cxf</groupId>
+      <artifactId>cxf-rt-transports-http</artifactId>
+      <version>${cxf.version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.cxf</groupId>
+      <artifactId>cxf-rt-transports-http-jetty</artifactId>
+      <version>${cxf.version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-context</artifactId>
+      <version>${org.springframework.version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-core</artifactId>
+      <version>${org.springframework.version}</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-beans</artifactId>
+      <version>${org.springframework.version}</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>**/utils/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-resourceserver/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-resourceserver/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-resourceserver/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-resourceserver/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,40 +16,38 @@
   limitations under the License.
 -->
 <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>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-       <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <modelVersion>4.0.0</modelVersion>
-    <artifactId>oauth2-resourceserver</artifactId>
-    <name>Apache Amber: OAuth 2.0 Implementation - Resource Server</name>
-   <version>0.22-incubating-SNAPSHOT</version>
-
-    <build>
-        <finalName>oauth2-resourceserver</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <version>2.5</version>
-                <configuration>
-                    <excludes>
-                        <exclude>**/utils/*</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <artifactId>oauth2-common</artifactId>
-            <groupId>org.apache.amber</groupId>
-            <version>${project.version}</version>
-        </dependency>
-    </dependencies>
+  <parent>
+    <groupId>org.apache.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
+    <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>oauth2-resourceserver</artifactId>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Resource Server</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>**/utils/*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-rs-filter/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-rs-filter/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-rs-filter/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-rs-filter/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,33 +16,31 @@
   limitations under the License.
 -->
 <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>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-        <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-    <artifactId>oauth2-rs-filter</artifactId>
+     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.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
     <version>0.22-incubating-SNAPSHOT</version>
-    <name>Apache Amber: OAuth 2.0 Implementation - Resource Server Filter</name>
+  </parent>
+
+  <artifactId>oauth2-rs-filter</artifactId>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Resource Server Filter</name>
 
-    <build>
-        <finalName>oauth2-rs-filter</finalName>
-    </build>
-
-    <dependencies>
-        <dependency>
-            <artifactId>oauth2-resourceserver</artifactId>
-            <groupId>org.apache.amber</groupId>
-            <version>${project.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.amber</groupId>
-            <artifactId>oauth2-common</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-    </dependencies>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-resourceserver</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.amber</groupId>
+      <artifactId>oauth2-common</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
 
 </project>

Modified: incubator/amber/trunk/oauth-2.0/oauth2-test-utils/pom.xml
URL: http://svn.apache.org/viewvc/incubator/amber/trunk/oauth-2.0/oauth2-test-utils/pom.xml?rev=1230083&r1=1230082&r2=1230083&view=diff
==============================================================================
--- incubator/amber/trunk/oauth-2.0/oauth2-test-utils/pom.xml (original)
+++ incubator/amber/trunk/oauth-2.0/oauth2-test-utils/pom.xml Wed Jan 11 15:04:37 2012
@@ -7,7 +7,7 @@
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
-     http://www.apache.org/licenses/LICENSE-2.0
+   http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,28 +16,25 @@
   limitations under the License.
 -->
 <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>
-    <artifactId>oauth2-test-utils</artifactId>
-    <name>Apache Amber: OAuth 2.0 Implementation - Test Utils</name>
-    <packaging>jar</packaging>
+     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.amber</groupId>
+    <artifactId>amber-oauth2-parent</artifactId>
     <version>0.22-incubating-SNAPSHOT</version>
+  </parent>
 
-    <parent>
-        <artifactId>amber-oauth2-parent</artifactId>
-        <groupId>org.apache.amber</groupId>
-        <version>0.22-incubating-SNAPSHOT</version>
-    </parent>
-
-    <build>
-        <finalName>oauth2-test-utils</finalName>
-    </build>
-    <dependencies>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-core</artifactId>
-            <version>${spring.version}</version>
-        </dependency>
-    </dependencies>
-</project>
+  <artifactId>oauth2-test-utils</artifactId>
+
+  <name>Apache Amber: OAuth 2.0 Implementation - Test Utils</name>
 
+  <dependencies>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-core</artifactId>
+      <version>${org.springframework.version}</version>
+    </dependency>
+  </dependencies>
+
+</project>