You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by si...@apache.org on 2012/03/02 14:15:25 UTC

svn commit: r1296188 - in /incubator/syncope/trunk: archetype/pom.xml build-tools/pom.xml client/pom.xml console/pom.xml core/pom.xml hibernate-enhancer/pom.xml pom.xml quality/pom.xml

Author: simonetripodi
Date: Fri Mar  2 13:15:25 2012
New Revision: 1296188

URL: http://svn.apache.org/viewvc?rev=1296188&view=rev
Log:
removed trailing spaces NO FUNCTIONAL CHANGES

Modified:
    incubator/syncope/trunk/archetype/pom.xml
    incubator/syncope/trunk/build-tools/pom.xml
    incubator/syncope/trunk/client/pom.xml
    incubator/syncope/trunk/console/pom.xml
    incubator/syncope/trunk/core/pom.xml
    incubator/syncope/trunk/hibernate-enhancer/pom.xml
    incubator/syncope/trunk/pom.xml
    incubator/syncope/trunk/quality/pom.xml

Modified: incubator/syncope/trunk/archetype/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/archetype/pom.xml?rev=1296188&r1=1296187&r2=1296188&view=diff
==============================================================================
--- incubator/syncope/trunk/archetype/pom.xml (original)
+++ incubator/syncope/trunk/archetype/pom.xml Fri Mar  2 13:15:25 2012
@@ -65,7 +65,7 @@ under the License.
                 </plugin>
             </plugins>
         </pluginManagement>
-        
+
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
@@ -86,13 +86,13 @@ under the License.
                                         <copy file="${basedir}/../core/src/test/resources/content.xml" todir="${basedir}/src/main/resources/archetype-resources/core/src/test/resources" overwrite="true" />
                                         <copy file="${basedir}/../core/src/test/resources/test.csv" todir="${basedir}/src/main/resources/archetype-resources/core/src/test/resources" overwrite="true" />
                                         <copy file="${basedir}/../core/src/test/resources/db.jsp" todir="${basedir}/src/main/resources/archetype-resources/core/src/test/resources" overwrite="true" />
-                                      
+
                                         <copy file="${basedir}/../core/src/main/resources/persistence.properties" todir="${basedir}/src/main/resources/archetype-resources/core/src/main/resources" overwrite="true" />
                                         <copy file="${basedir}/../core/src/main/resources/workflow.properties" todir="${basedir}/src/main/resources/archetype-resources/core/src/main/resources" overwrite="true" />
                                         <copy file="${basedir}/../core/src/main/resources/content.xml" todir="${basedir}/src/main/resources/archetype-resources/core/src/main/resources" overwrite="true" />
                                         <copy file="${basedir}/../core/src/main/resources/logback.xml" todir="${basedir}/src/main/resources/archetype-resources/core/src/main/resources" overwrite="true" />
                                         <copy file="${basedir}/../core/src/main/webapp/WEB-INF/web.xml" todir="${basedir}/src/main/resources/archetype-resources/core/src/main/webapp/WEB-INF" overwrite="true" />
-                                      
+
                                         <copy file="${basedir}/../console/src/main/resources/configuration.properties" todir="${basedir}/src/main/resources/archetype-resources/console/src/main/resources" overwrite="true" />
                                         <copy file="${basedir}/../console/src/main/resources/logback.xml" todir="${basedir}/src/main/resources/archetype-resources/console/src/main/resources" overwrite="true" />
                                     </then>
@@ -102,18 +102,18 @@ under the License.
                                         <get src="${SVNRepoURL}/core/src/test/resources/content.xml" dest="${basedir}/src/main/resources/archetype-resources/core/src/test/resources/content.xml" />
                                         <get src="${SVNRepoURL}/core/src/test/resources/test.csv" dest="${basedir}/src/main/resources/archetype-resources/core/src/test/resources/test.csv" />
                                         <get src="${SVNRepoURL}/core/src/test/resources/db.jsp" dest="${basedir}/src/main/resources/archetype-resources/core/src/test/resources/db.jsp" />
-                                      
+
                                         <get src="${SVNRepoURL}/core/src/main/resources/persistence.properties" dest="${basedir}/src/main/resources/archetype-resources/core/src/main/resources/persistence.properties" />
                                         <get src="${SVNRepoURL}/core/src/main/resources/workflow.properties" dest="${basedir}/src/main/resources/archetype-resources/core/src/main/resources/workflow.properties" />
                                         <get src="${SVNRepoURL}/core/src/main/resources/content.xml" dest="${basedir}/src/main/resources/archetype-resources/core/src/main/resources/content.xml" />
                                         <get src="${SVNRepoURL}/core/src/main/resources/logback.xml" dest="${basedir}/src/main/resources/archetype-resources/core/src/main/resources/logback.xml" />
                                         <get src="${SVNRepoURL}/core/src/main/webapp/WEB-INF/web.xml" dest="${basedir}/src/main/resources/archetype-resources/core/src/main/webapp/WEB-INF/web.xml" />
-                                      
+
                                         <get src="${SVNRepoURL}/console/src/main/resources/configuration.properties" dest="${basedir}/src/main/resources/archetype-resources/console/src/main/resources/configuration.properties" />
                                         <get src="${SVNRepoURL}/console/src/main/resources/logback.xml" dest="${basedir}/src/main/resources/archetype-resources/console/src/main/resources/logback.xml" />
                                     </else>
                                 </if>
-                            </target>    
+                            </target>
                         </configuration>
                         <goals>
                             <goal>run</goal>
@@ -127,7 +127,7 @@ under the License.
                         <version>20020829</version>
                     </dependency>
                 </dependencies>
-            </plugin>    
+            </plugin>
 
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
@@ -154,7 +154,7 @@ under the License.
                 </dependencies>
             </plugin>
         </plugins>
-        
+
         <resources>
             <resource>
                 <directory>..</directory>

Modified: incubator/syncope/trunk/build-tools/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/pom.xml?rev=1296188&r1=1296187&r2=1296188&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/pom.xml (original)
+++ incubator/syncope/trunk/build-tools/pom.xml Fri Mar  2 13:15:25 2012
@@ -35,19 +35,19 @@ under the License.
     <groupId>org.apache.syncope</groupId>
     <artifactId>syncope-build-tools</artifactId>
     <packaging>war</packaging>
-    
+
     <dependencies>
         <dependency>
             <artifactId>servlet-api</artifactId>
             <groupId>javax.servlet</groupId>
             <scope>provided</scope>
         </dependency>
-            
+
         <dependency>
             <groupId>org.apache.directory.server</groupId>
             <artifactId>apacheds-all</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>org.springframework</groupId>
             <artifactId>spring-core</artifactId>
@@ -64,12 +64,12 @@ under the License.
             <groupId>org.springframework</groupId>
             <artifactId>spring-webmvc</artifactId>
         </dependency>
-            
+
         <dependency>
             <groupId>com.h2database</groupId>
             <artifactId>h2</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
@@ -111,7 +111,7 @@ under the License.
                     </webResources>
                 </configuration>
             </plugin>
-            
+
             <plugin>
                 <groupId>org.codehaus.cargo</groupId>
                 <artifactId>cargo-maven2-plugin</artifactId>
@@ -124,7 +124,7 @@ under the License.
                         <output>${cargo.output}</output>
                     </container>
                     <configuration>
-                        <properties>                            
+                        <properties>
                             <cargo.servlet.port>${cargo.servlet.port}</cargo.servlet.port>
                         </properties>
                         <deployables>
@@ -137,9 +137,9 @@ under the License.
                         </deployables>
                     </configuration>
                 </configuration>
-            </plugin>   
+            </plugin>
         </plugins>
-        
+
         <resources>
             <resource>
                 <directory>src/main/resources</directory>

Modified: incubator/syncope/trunk/client/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/pom.xml?rev=1296188&r1=1296187&r2=1296188&view=diff
==============================================================================
--- incubator/syncope/trunk/client/pom.xml (original)
+++ incubator/syncope/trunk/client/pom.xml Fri Mar  2 13:15:25 2012
@@ -52,7 +52,7 @@ under the License.
             <groupId>org.codehaus.jackson</groupId>
             <artifactId>jackson-mapper-asl</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
@@ -71,7 +71,7 @@ under the License.
             <groupId>ch.qos.logback</groupId>
             <artifactId>logback-classic</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
@@ -79,7 +79,7 @@ under the License.
         </dependency>
 
     </dependencies>
-    
+
     <build>
         <resources>
             <resource>
@@ -92,7 +92,7 @@ under the License.
             </resource>
         </resources>
     </build>
-        
+
     <reporting>
         <plugins>
             <plugin>

Modified: incubator/syncope/trunk/console/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/console/pom.xml?rev=1296188&r1=1296187&r2=1296188&view=diff
==============================================================================
--- incubator/syncope/trunk/console/pom.xml (original)
+++ incubator/syncope/trunk/console/pom.xml Fri Mar  2 13:15:25 2012
@@ -32,7 +32,7 @@ under the License.
 
     <name>Apache Syncope Console</name>
     <description>Apache Syncope Console</description>
-    
+
     <groupId>org.apache.syncope</groupId>
     <artifactId>syncope-console</artifactId>
     <packaging>war</packaging>
@@ -44,7 +44,7 @@ under the License.
             <artifactId>syncope-client</artifactId>
             <version>${project.version}</version>
         </dependency>
-        
+
         <!-- Only needed for running core alongside -->
         <dependency>
             <groupId>org.apache.openjpa</groupId>
@@ -56,13 +56,13 @@ under the License.
             <artifactId>groovy-all</artifactId>
             <scope>provided</scope>
         </dependency>
-        
+
         <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
             <scope>provided</scope>
         </dependency>
-        
+
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
@@ -113,7 +113,7 @@ under the License.
             <groupId>org.apache.wicket</groupId>
             <artifactId>wicket-auth-roles</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>org.springframework</groupId>
             <artifactId>spring-core</artifactId>
@@ -127,7 +127,7 @@ under the License.
             <groupId>org.apache.httpcomponents</groupId>
             <artifactId>httpclient</artifactId>
         </dependency>
-        
+
         <!-- TEST -->
         <dependency>
             <groupId>org.apache.syncope</groupId>
@@ -190,7 +190,7 @@ under the License.
         <finalName>${project.artifactId}</finalName>
 
         <plugins>
-            
+
             <plugin>
                 <groupId>org.codehaus.groovy.maven</groupId>
                 <artifactId>gmaven-plugin</artifactId>
@@ -209,7 +209,7 @@ under the License.
                     </execution>
                 </executions>
             </plugin>
-            
+
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-dependency-plugin</artifactId>
@@ -224,7 +224,7 @@ under the License.
                     </execution>
                 </executions>
             </plugin>
-            
+
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-antrun-plugin</artifactId>
@@ -270,7 +270,7 @@ under the License.
                     </execution>
                 </executions>
             </plugin>
-            
+
             <plugin>
                 <groupId>org.codehaus.cargo</groupId>
                 <artifactId>cargo-maven2-plugin</artifactId>
@@ -282,7 +282,7 @@ under the License.
                                 <groupId>com.h2database</groupId>
                                 <artifactId>h2</artifactId>
                             </dependency>
-                            
+
                             <dependency>
                                 <groupId>org.apache.openjpa</groupId>
                                 <artifactId>openjpa-all</artifactId>
@@ -300,7 +300,7 @@ under the License.
                             <cargo.servlet.port>${cargo.servlet.port}</cargo.servlet.port>
                             <cargo.tomcat.ajp.port>8889</cargo.tomcat.ajp.port>
                             <cargo.rmi.port>8805</cargo.rmi.port>
-                            
+
 <!--                            <cargo.jvmargs>-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n</cargo.jvmargs>-->
                             <cargo.jvmargs>-noverify ${javaagent} -Drebel.spring_plugin=false -Xms512m -Xmx1024m -XX:PermSize=512m -XX:MaxPermSize=1024m</cargo.jvmargs>
                         </properties>
@@ -327,7 +327,7 @@ under the License.
                             <deployable>
                                 <groupId>org.connid.bundles.soap</groupId>
                                 <artifactId>wssample</artifactId>
-                                <type>war</type>                                
+                                <type>war</type>
                                 <properties>
                                     <context>wssample</context>
                                 </properties>
@@ -335,7 +335,7 @@ under the License.
                             <deployable>
                                 <groupId>org.apache.syncope</groupId>
                                 <artifactId>syncope-build-tools</artifactId>
-                                <type>war</type>                                
+                                <type>war</type>
                                 <properties>
                                     <context>syncope-build-tools</context>
                                 </properties>
@@ -345,7 +345,7 @@ under the License.
                 </configuration>
             </plugin>
         </plugins>
-            
+
         <resources>
             <resource>
                 <directory>src/main/resources</directory>
@@ -372,9 +372,9 @@ under the License.
             </testResource>
         </testResources>
     </build>
-    
+
     <profiles>
-        
+
         <profile>
             <id>dev</id>
             <properties>
@@ -385,7 +385,7 @@ under the License.
                 <defaultGoal>clean verify cargo:run</defaultGoal>
             </build>
         </profile>
-        
+
         <profile>
             <id>jrebel</id>
             <properties>
@@ -394,7 +394,7 @@ under the License.
             </properties>
             <build>
                 <defaultGoal>clean verify cargo:run</defaultGoal>
-                
+
                 <plugins>
                     <plugin>
                         <groupId>org.zeroturnaround</groupId>
@@ -413,16 +413,16 @@ under the License.
                 </plugins>
             </build>
         </profile>
-        
+
         <profile>
             <id>selenium</id>
             <properties>
-                <javaagent />    
+                <javaagent />
             </properties>
             <build>
                 <defaultGoal>clean verify</defaultGoal>
                 <plugins>
-                    
+
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>selenium-maven-plugin</artifactId>
@@ -448,7 +448,7 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-            
+
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-failsafe-plugin</artifactId>
@@ -462,7 +462,7 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-                    
+
                     <plugin>
                         <groupId>org.codehaus.cargo</groupId>
                         <artifactId>cargo-maven2-plugin</artifactId>
@@ -487,7 +487,7 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-                </plugins>    
+                </plugins>
             </build>
         </profile>
     </profiles>

Modified: incubator/syncope/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/pom.xml?rev=1296188&r1=1296187&r2=1296188&view=diff
==============================================================================
--- incubator/syncope/trunk/core/pom.xml (original)
+++ incubator/syncope/trunk/core/pom.xml Fri Mar  2 13:15:25 2012
@@ -32,7 +32,7 @@ under the License.
 
     <name>Apache Syncope Core</name>
     <description>Apache Syncope Core</description>
-    
+
     <groupId>org.apache.syncope</groupId>
     <artifactId>syncope-core</artifactId>
     <packaging>war</packaging>
@@ -40,7 +40,7 @@ under the License.
     <properties>
         <jdbcdriver.groupId>com.h2database</jdbcdriver.groupId>
         <jdbcdriver.artifactId>h2</jdbcdriver.artifactId>
-        
+
         <javaagent />
     </properties>
 
@@ -51,7 +51,7 @@ under the License.
             <artifactId>syncope-client</artifactId>
             <version>${project.version}</version>
         </dependency>
-        
+
         <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
@@ -73,7 +73,7 @@ under the License.
             <groupId>org.apache.geronimo.javamail</groupId>
             <artifactId>geronimo-javamail_1.4_provider</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>org.javassist</groupId>
             <artifactId>javassist</artifactId>
@@ -176,12 +176,12 @@ under the License.
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>org.apache.velocity</groupId>
             <artifactId>velocity</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>org.quartz-scheduler</groupId>
             <artifactId>quartz</artifactId>
@@ -199,18 +199,18 @@ under the License.
             <groupId>org.apache.cocoon.optional</groupId>
             <artifactId>cocoon-optional</artifactId>
         </dependency>
-            
-        <dependency>    
+
+        <dependency>
             <groupId>org.apache.xmlgraphics</groupId>
             <artifactId>fop</artifactId>
         </dependency>
-            
+
         <dependency>
             <groupId>org.apache.openjpa</groupId>
             <artifactId>openjpa-all</artifactId>
             <scope>provided</scope>
         </dependency>
-        
+
         <dependency>
             <groupId>org.codehaus.groovy</groupId>
             <artifactId>groovy-all</artifactId>
@@ -309,7 +309,7 @@ under the License.
         <finalName>${project.parent.artifactId}</finalName>
 
         <plugins>
-            
+
             <plugin>
                 <groupId>org.apache.openjpa</groupId>
                 <artifactId>openjpa-maven-plugin</artifactId>
@@ -360,7 +360,7 @@ under the License.
                     </execution>
                 </executions>
             </plugin>
-            
+
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-dependency-plugin</artifactId>
@@ -375,7 +375,7 @@ under the License.
                     </execution>
                 </executions>
             </plugin>
-                
+
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
@@ -537,7 +537,7 @@ under the License.
                             <deployable>
                                 <groupId>org.apache.syncope</groupId>
                                 <artifactId>syncope-build-tools</artifactId>
-                                <type>war</type>                                
+                                <type>war</type>
                                 <properties>
                                     <context>syncope-build-tools</context>
                                 </properties>
@@ -601,9 +601,9 @@ under the License.
             </testResource>
         </testResources>
     </build>
-    
+
     <profiles>
-    
+
         <profile>
             <id>dev</id>
             <properties>
@@ -613,7 +613,7 @@ under the License.
             </properties>
             <build>
                 <defaultGoal>clean verify</defaultGoal>
-                
+
                 <plugins>
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
@@ -671,7 +671,7 @@ under the License.
                 </plugins>
             </build>
         </profile>
-        
+
         <profile>
             <id>jrebel</id>
             <properties>
@@ -681,7 +681,7 @@ under the License.
             </properties>
             <build>
                 <defaultGoal>clean verify</defaultGoal>
-                
+
                 <plugins>
                     <plugin>
                         <groupId>org.zeroturnaround</groupId>
@@ -698,8 +698,8 @@ under the License.
                                             <exclude>workflow.properties</exclude>
                                         </excludes>
                                     </resource>
-                                </resources>    
-                            </classpath>    
+                                </resources>
+                            </classpath>
                         </configuration>
                         <executions>
                             <execution>
@@ -711,7 +711,7 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-                    
+
                     <plugin>
                         <groupId>org.codehaus.cargo</groupId>
                         <artifactId>cargo-maven2-plugin</artifactId>
@@ -723,7 +723,7 @@ under the License.
                 </plugins>
             </build>
         </profile>
-        
+
         <profile>
             <id>oracle-it</id>
             <properties>
@@ -741,7 +741,7 @@ under the License.
             </dependencies>
             <build>
                 <defaultGoal>clean verify</defaultGoal>
-                
+
                 <plugins>
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
@@ -763,7 +763,7 @@ under the License.
                         </executions>
                     </plugin>
                 </plugins>
-                
+
                 <testResources>
                     <testResource>
                         <directory>src/test/resources</directory>
@@ -779,7 +779,7 @@ under the License.
                 </testResources>
             </build>
         </profile>
-        
+
         <profile>
             <id>postgres-it</id>
             <properties>
@@ -813,7 +813,7 @@ under the License.
                 </testResources>
             </build>
         </profile>
-        
+
         <profile>
             <id>mysql-it</id>
             <properties>
@@ -847,14 +847,14 @@ under the License.
                 </testResources>
             </build>
         </profile>
-        
+
         <profile>
             <id>notification-test</id>
-            
+
             <properties>
                 <mail.password />
             </properties>
-                        
+
             <build>
                 <defaultGoal>clean test</defaultGoal>
 
@@ -902,7 +902,7 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-                    
+
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>build-helper-maven-plugin</artifactId>
@@ -922,8 +922,8 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-                </plugins>  
-                
+                </plugins>
+
                 <testResources>
                     <testResource>
                         <directory>src/test/resources</directory>
@@ -941,11 +941,11 @@ under the License.
                 </testResources>
             </build>
         </profile>
-        
+
         <profile>
             <id>glassfish-it</id>
-            
-            <dependencies>                                   
+
+            <dependencies>
                 <dependency>
                     <groupId>org.apache.openjpa</groupId>
                     <artifactId>openjpa-all</artifactId>
@@ -955,13 +955,13 @@ under the License.
                     <groupId>org.codehaus.groovy</groupId>
                     <artifactId>groovy-all</artifactId>
                 </dependency>
-                
+
                 <dependency>
                     <groupId>com.h2database</groupId>
                     <artifactId>h2</artifactId>
                 </dependency>
             </dependencies>
-            
+
             <build>
                 <defaultGoal>clean verify</defaultGoal>
 
@@ -974,7 +974,7 @@ under the License.
                             <skipTests>true</skipTests>
                         </configuration>
                     </plugin>
-                
+
                     <plugin>
                         <groupId>org.codehaus.cargo</groupId>
                         <artifactId>cargo-maven2-plugin</artifactId>
@@ -995,7 +995,7 @@ under the License.
                 </plugins>
             </build>
         </profile>
-        
+
         <profile>
             <id>jboss-it</id>
 
@@ -1011,7 +1011,7 @@ under the License.
                     <groupId>org.codehaus.groovy</groupId>
                     <artifactId>groovy-all</artifactId>
                 </dependency>
-                
+
                 <dependency>
                     <groupId>com.h2database</groupId>
                     <artifactId>h2</artifactId>
@@ -1021,8 +1021,8 @@ under the License.
             <build>
                 <defaultGoal>clean verify</defaultGoal>
 
-                <plugins>   
-                
+                <plugins>
+
                     <plugin>
                         <groupId>org.apache.openjpa</groupId>
                         <artifactId>openjpa-maven-plugin</artifactId>
@@ -1034,7 +1034,7 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-                
+
                     <plugin>
                         <groupId>org.codehaus.mojo</groupId>
                         <artifactId>exec-maven-plugin</artifactId>
@@ -1061,7 +1061,7 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-                    
+
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-antrun-plugin</artifactId>
@@ -1082,7 +1082,7 @@ under the License.
                             </execution>
                         </executions>
                     </plugin>
-      
+
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-surefire-plugin</artifactId>
@@ -1091,7 +1091,7 @@ under the License.
                             <skipTests>true</skipTests>
                         </configuration>
                     </plugin>
-                    
+
                     <plugin>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-war-plugin</artifactId>
@@ -1100,7 +1100,7 @@ under the License.
                             <packagingExcludes>WEB-INF/lib/dom4j*.jar,WEB-INF/lib/mail*.jar</packagingExcludes>
                         </configuration>
                     </plugin>
-                
+
                     <plugin>
                         <groupId>org.codehaus.cargo</groupId>
                         <artifactId>cargo-maven2-plugin</artifactId>
@@ -1141,7 +1141,7 @@ under the License.
                         </executions>
                     </plugin>
                 </plugins>
-                
+
                 <resources>
                     <resource>
                         <directory>src/main/resources</directory>
@@ -1178,7 +1178,7 @@ under the License.
             </build>
         </profile>
     </profiles>
-    
+
     <reporting>
         <plugins>
             <plugin>

Modified: incubator/syncope/trunk/hibernate-enhancer/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/hibernate-enhancer/pom.xml?rev=1296188&r1=1296187&r2=1296188&view=diff
==============================================================================
--- incubator/syncope/trunk/hibernate-enhancer/pom.xml (original)
+++ incubator/syncope/trunk/hibernate-enhancer/pom.xml Fri Mar  2 13:15:25 2012
@@ -40,12 +40,12 @@ under the License.
             <groupId>org.springframework</groupId>
             <artifactId>spring-core</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>org.javassist</groupId>
             <artifactId>javassist</artifactId>
         </dependency>
-        
+
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId> 
             <artifactId>geronimo-jpa_2.0_spec</artifactId> 
@@ -65,7 +65,7 @@ under the License.
             </resource>
         </resources>
     </build>
-    
+
     <reporting>
         <plugins>
             <plugin>

Modified: incubator/syncope/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/pom.xml?rev=1296188&r1=1296187&r2=1296188&view=diff
==============================================================================
--- incubator/syncope/trunk/pom.xml (original)
+++ incubator/syncope/trunk/pom.xml Fri Mar  2 13:15:25 2012
@@ -18,7 +18,7 @@
 
     <name>Apache Syncope Root</name>
     <description>Syncope root POM</description>
-    
+
     <groupId>org.apache.syncope</groupId>
     <artifactId>syncope-root</artifactId>
     <version>1.1-SNAPSHOT</version>

Modified: incubator/syncope/trunk/quality/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/quality/pom.xml?rev=1296188&r1=1296187&r2=1296188&view=diff
==============================================================================
--- incubator/syncope/trunk/quality/pom.xml (original)
+++ incubator/syncope/trunk/quality/pom.xml Fri Mar  2 13:15:25 2012
@@ -34,7 +34,7 @@ under the License.
     <description>Configuration for widely used quality enforcement plugins: pmd, checkstyle, findbugs...</description>
     <groupId>org.apache.syncope</groupId>
     <artifactId>syncope-quality</artifactId>
-    
+
     <build>
         <resources>
             <resource>