You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2012/02/22 10:10:11 UTC

svn commit: r1292203 [2/13] - in /incubator/syncope/trunk: archetype/ archetype/src/main/resources/archetype-resources/ archetype/src/main/resources/archetype-resources/console/ archetype/src/main/resources/archetype-resources/core/ archetype/src/main/...

Modified: incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/console/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/console/pom.xml?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/console/pom.xml (original)
+++ incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/console/pom.xml Wed Feb 22 09:09:31 2012
@@ -1,267 +1,268 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (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
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and 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>
-        <groupId>${groupId}</groupId>
-        <artifactId>${rootArtifactId}</artifactId>
-        <version>${version}</version>
-    </parent>
-
-    <name>Syncope sample project console</name>
-    <groupId>${groupId}</groupId>
-    <artifactId>${artifactId}</artifactId>
-    <packaging>war</packaging>
-
-    <dependencies>
-
-        <dependency>
-            <groupId>org.apache.wicket</groupId>
-            <artifactId>wicket</artifactId>
-            <type>pom</type>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.wicket</groupId>
-            <artifactId>wicket-extensions</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.wicket</groupId>
-            <artifactId>wicket-spring</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.syncope</groupId>
-            <artifactId>syncope-client</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.syncope</groupId>
-            <artifactId>syncope-console</artifactId>
-            <type>war</type>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.syncope</groupId>
-            <artifactId>syncope-console</artifactId>
-            <classifier>classes</classifier>
-        </dependency>
-
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-webmvc</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.wicket</groupId>
-            <artifactId>wicket-auth-roles</artifactId>
-            <type>jar</type>
-        </dependency>
-
-        <!-- TEST -->
-        <dependency>
-            <groupId>com.h2database</groupId>
-            <artifactId>h2</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles.soap</groupId>
-            <artifactId>org.connid.bundles.soap</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles.soap</groupId>
-            <artifactId>wssample</artifactId>
-            <type>war</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles.db</groupId>
-            <artifactId>org.connid.bundles.db.table</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles</groupId>
-            <artifactId>org.connid.bundles.csvdir</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles</groupId>
-            <artifactId>org.connid.bundles.ldap</artifactId>
-            <scope>test</scope>
-        </dependency>
-        
-        <dependency>
-            <groupId>org.apache.syncope</groupId>
-            <artifactId>syncope-build-tools</artifactId>
-            <type>war</type>
-            <scope>test</scope>
-        </dependency>
-        <!-- /TEST -->
-        
-    </dependencies>
-
-    <build>
-        <finalName>syncope-console</finalName>
-
-        <plugins>
-
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <inherited>true</inherited>
-                <executions>
-                    <execution>
-                        <id>set-bundles</id>
-                        <phase>process-test-resources</phase>
-                        <goals>
-                            <goal>copy</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-antrun-plugin</artifactId>
-                <inherited>true</inherited>
-                <executions>
-                    <execution>
-                        <id>explodeSyncopeWAR</id>
-                        <phase>pre-integration-test</phase>
-                        <configuration>
-                            <target>
-                                <unzip src="${basedir}/../core/target/syncope.war" dest="${cargo.run.dir}">
-                                    <patternset>
-                                        <exclude name="**/content.xml" />
-                                        <exclude name="**/persistence.properties" />
-                                        <exclude name="**/security.properties" />
-                                        <exclude name="**/workflow.properties" />
-                                    </patternset>
-                                </unzip>
-                                <copy file="${project.build.directory}/test-classes/db.jsp" todir="${cargo.run.dir}"/>
-                                <copy todir="${cargo.run.dir}/WEB-INF/classes" includeEmptyDirs="false">
-                                    <fileset dir="${project.build.directory}/test-classes"/>
-                                </copy>
-                            </target>
-                        </configuration>
-                        <goals>
-                            <goal>run</goal>
-                        </goals>
-                    </execution>
-                    <execution>
-                        <id>setupCSV</id>
-                        <phase>pre-integration-test</phase>
-                        <configuration>
-                            <target>
-                                <copy file="${project.build.directory}/test-classes/test.csv" todir="${java.io.tmpdir}" overwrite="true"/>
-                            </target>    
-                        </configuration>
-                        <goals>
-                            <goal>run</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-
-            <plugin>
-                <groupId>org.codehaus.cargo</groupId>
-                <artifactId>cargo-maven2-plugin</artifactId>
-                <inherited>true</inherited>
-                <configuration>
-                    <container>
-                        <dependencies>
-                            <dependency>
-                                <groupId>com.h2database</groupId>
-                                <artifactId>h2</artifactId>
-                            </dependency>
-                        </dependencies>
-                    </container>
-                    <configuration>
-                        <type>standalone</type>
-                        <properties>
-                            <cargo.servlet.port>${cargo.servlet.port}</cargo.servlet.port>
-                            <cargo.jvmargs>-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m</cargo.jvmargs>
-                        </properties>
-                        <deployables>
-                            <deployable>
-                                <location>${cargo.run.dir}</location>
-                                <properties>
-                                    <context>syncope</context>
-                                </properties>
-                            </deployable>
-                            <deployable>
-                                <location>${project.build.directory}/${project.build.finalName}.war</location>
-                                <properties>
-                                    <context>syncope-console</context>
-                                </properties>
-                            </deployable>
-                            <deployable>
-                                <location>${settings.localRepository}/org/syncope/syncope-build-tools/${syncope.version}/syncope-build-tools-${syncope.version}.war</location>
-                                <properties>
-                                    <context>syncope-build-tools</context>
-                                </properties>
-                            </deployable>
-                            <deployable>
-                                <location>${settings.localRepository}/org/connid/bundles/soap/wssample/${connid.soap.version}/wssample-${connid.soap.version}.war</location>
-                                <properties>
-                                    <context>wssample</context>
-                                </properties>
-                            </deployable>
-                        </deployables>
-                    </configuration>
-                </configuration>
-            </plugin>
-            
-        </plugins>
-
-        <resources>
-            <resource>
-                <directory>src/main/resources</directory>
-                <filtering>true</filtering>
-            </resource>
-        </resources>
-
-        <testResources>
-            <testResource>
-                <directory>src/test/resources</directory>
-                <filtering>true</filtering>
-            </testResource>
-            <testResource>
-                <directory>../core/src/test/resources</directory>
-                <filtering>true</filtering>
-            </testResource>
-        </testResources>
-    </build>
-    
-    <profiles>
-        <profile>
-            <id>embedded</id>
-            <properties>
-                <maven.test.skip>true</maven.test.skip>
-            </properties>
-            <build>
-                <defaultGoal>clean verify cargo:run</defaultGoal>    
-            </build>
-        </profile>    
-    </profiles>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (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
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and 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>

+        <groupId>${groupId}</groupId>

+        <artifactId>${rootArtifactId}</artifactId>

+        <version>${version}</version>

+    </parent>

+

+    <name>Syncope sample project console</name>

+    <groupId>${groupId}</groupId>

+    <artifactId>${artifactId}</artifactId>

+    <packaging>war</packaging>

+

+    <dependencies>

+

+        <dependency>

+            <groupId>org.apache.wicket</groupId>

+            <artifactId>wicket</artifactId>

+            <type>pom</type>

+        </dependency>

+

+        <dependency>

+            <groupId>org.apache.wicket</groupId>

+            <artifactId>wicket-extensions</artifactId>

+        </dependency>

+

+        <dependency>

+            <groupId>org.apache.wicket</groupId>

+            <artifactId>wicket-spring</artifactId>

+        </dependency>

+

+        <dependency>

+            <groupId>org.apache.syncope</groupId>

+            <artifactId>syncope-client</artifactId>

+        </dependency>

+        <dependency>

+            <groupId>org.apache.syncope</groupId>

+            <artifactId>syncope-console</artifactId>

+            <type>war</type>

+        </dependency>

+        <dependency>

+            <groupId>org.apache.syncope</groupId>

+            <artifactId>syncope-console</artifactId>

+            <classifier>classes</classifier>

+        </dependency>

+

+        <dependency>

+            <groupId>org.springframework</groupId>

+            <artifactId>spring-webmvc</artifactId>

+        </dependency>

+

+        <dependency>

+            <groupId>org.apache.wicket</groupId>

+            <artifactId>wicket-auth-roles</artifactId>

+            <type>jar</type>

+        </dependency>

+

+        <!-- TEST -->

+        <dependency>

+            <groupId>com.h2database</groupId>

+            <artifactId>h2</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles.soap</groupId>

+            <artifactId>org.connid.bundles.soap</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles.soap</groupId>

+            <artifactId>wssample</artifactId>

+            <type>war</type>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles.db</groupId>

+            <artifactId>org.connid.bundles.db.table</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles</groupId>

+            <artifactId>org.connid.bundles.csvdir</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles</groupId>

+            <artifactId>org.connid.bundles.ldap</artifactId>

+            <scope>test</scope>

+        </dependency>

+        

+        <dependency>

+            <groupId>org.apache.syncope</groupId>

+            <artifactId>syncope-build-tools</artifactId>

+            <type>war</type>

+            <scope>test</scope>

+        </dependency>

+        <!-- /TEST -->

+        

+    </dependencies>

+

+    <build>

+        <finalName>syncope-console</finalName>

+

+        <plugins>

+

+            <plugin>

+                <groupId>org.apache.maven.plugins</groupId>

+                <artifactId>maven-dependency-plugin</artifactId>

+                <inherited>true</inherited>

+                <executions>

+                    <execution>

+                        <id>set-bundles</id>

+                        <phase>process-test-resources</phase>

+                        <goals>

+                            <goal>copy</goal>

+                        </goals>

+                    </execution>

+                </executions>

+            </plugin>

+            

+            <plugin>

+                <groupId>org.apache.maven.plugins</groupId>

+                <artifactId>maven-antrun-plugin</artifactId>

+                <inherited>true</inherited>

+                <executions>

+                    <execution>

+                        <id>explodeSyncopeWAR</id>

+                        <phase>pre-integration-test</phase>

+                        <configuration>

+                            <target>

+                                <unzip src="${basedir}/../core/target/syncope.war" dest="${cargo.run.dir}">

+                                    <patternset>

+                                        <exclude name="**/content.xml" />

+                                        <exclude name="**/persistence.properties" />

+                                        <exclude name="**/security.properties" />

+                                        <exclude name="**/workflow.properties" />

+                                    </patternset>

+                                </unzip>

+                                <copy file="${project.build.directory}/test-classes/db.jsp" todir="${cargo.run.dir}"/>

+                                <copy todir="${cargo.run.dir}/WEB-INF/classes" includeEmptyDirs="false">

+                                    <fileset dir="${project.build.directory}/test-classes"/>

+                                </copy>

+                            </target>

+                        </configuration>

+                        <goals>

+                            <goal>run</goal>

+                        </goals>

+                    </execution>

+                    <execution>

+                        <id>setupCSV</id>

+                        <phase>pre-integration-test</phase>

+                        <configuration>

+                            <target>

+                                <copy file="${project.build.directory}/test-classes/test.csv" todir="${java.io.tmpdir}" overwrite="true"/>

+                            </target>    

+                        </configuration>

+                        <goals>

+                            <goal>run</goal>

+                        </goals>

+                    </execution>

+                </executions>

+            </plugin>

+

+            <plugin>

+                <groupId>org.codehaus.cargo</groupId>

+                <artifactId>cargo-maven2-plugin</artifactId>

+                <inherited>true</inherited>

+                <configuration>

+                    <container>

+                        <dependencies>

+                            <dependency>

+                                <groupId>com.h2database</groupId>

+                                <artifactId>h2</artifactId>

+                            </dependency>

+                        </dependencies>

+                    </container>

+                    <configuration>

+                        <type>standalone</type>

+                        <properties>

+                            <cargo.servlet.port>${cargo.servlet.port}</cargo.servlet.port>

+                            <cargo.jvmargs>-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m</cargo.jvmargs>

+                        </properties>

+                        <deployables>

+                            <deployable>

+                                <location>${cargo.run.dir}</location>

+                                <properties>

+                                    <context>syncope</context>

+                                </properties>

+                            </deployable>

+                            <deployable>

+                                <location>${project.build.directory}/${project.build.finalName}.war</location>

+                                <properties>

+                                    <context>syncope-console</context>

+                                </properties>

+                            </deployable>

+                            <deployable>

+                                <location>${settings.localRepository}/org/syncope/syncope-build-tools/${syncope.version}/syncope-build-tools-${syncope.version}.war</location>

+                                <properties>

+                                    <context>syncope-build-tools</context>

+                                </properties>

+                            </deployable>

+                            <deployable>

+                                <location>${settings.localRepository}/org/connid/bundles/soap/wssample/${connid.soap.version}/wssample-${connid.soap.version}.war</location>

+                                <properties>

+                                    <context>wssample</context>

+                                </properties>

+                            </deployable>

+                        </deployables>

+                    </configuration>

+                </configuration>

+            </plugin>

+            

+        </plugins>

+

+        <resources>

+            <resource>

+                <directory>src/main/resources</directory>

+                <filtering>true</filtering>

+            </resource>

+        </resources>

+

+        <testResources>

+            <testResource>

+                <directory>src/test/resources</directory>

+                <filtering>true</filtering>

+            </testResource>

+            <testResource>

+                <directory>../core/src/test/resources</directory>

+                <filtering>true</filtering>

+            </testResource>

+        </testResources>

+    </build>

+    

+    <profiles>

+        <profile>

+            <id>embedded</id>

+            <properties>

+                <maven.test.skip>true</maven.test.skip>

+            </properties>

+            <build>

+                <defaultGoal>clean verify cargo:run</defaultGoal>    

+            </build>

+        </profile>    

+    </profiles>

+</project>


Modified: incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/pom.xml?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/pom.xml (original)
+++ incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/pom.xml Wed Feb 22 09:09:31 2012
@@ -1,330 +1,331 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (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
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and 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>
-        <groupId>${groupId}</groupId>
-        <artifactId>${rootArtifactId}</artifactId>
-        <version>${version}</version>
-    </parent>
-
-    <name>Syncope sample project core</name>
-    <groupId>${groupId}</groupId>
-    <artifactId>${artifactId}</artifactId>
-    <packaging>war</packaging>
-
-    <dependencies>
-
-        <dependency>
-            <groupId>org.apache.syncope</groupId>
-            <artifactId>syncope-client</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.syncope</groupId>
-            <artifactId>syncope-core</artifactId>
-            <type>war</type>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.syncope</groupId>
-            <artifactId>syncope-core</artifactId>
-            <classifier>classes</classifier>
-        </dependency>
-
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>javax.servlet.jsp</groupId>
-            <artifactId>jsp-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>jstl</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>org.springframework.security</groupId>
-            <artifactId>spring-security-web</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.security</groupId>
-            <artifactId>spring-security-config</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.openjpa</groupId>
-            <artifactId>openjpa-all</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>org.codehaus.groovy</groupId>
-            <artifactId>groovy-all</artifactId>
-        </dependency>
-
-        <!-- TEST -->
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework</groupId>
-            <artifactId>spring-test</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>com.h2database</groupId>
-            <artifactId>h2</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles.soap</groupId>
-            <artifactId>org.connid.bundles.soap</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles.soap</groupId>
-            <artifactId>wssample</artifactId>
-            <type>war</type>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles.db</groupId>
-            <artifactId>org.connid.bundles.db.table</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles</groupId>
-            <artifactId>org.connid.bundles.csvdir</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.connid.bundles</groupId>
-            <artifactId>org.connid.bundles.ldap</artifactId>
-            <scope>test</scope>
-        </dependency>
-            
-        <dependency>
-            <groupId>org.apache.syncope</groupId>
-            <artifactId>syncope-build-tools</artifactId>
-            <type>war</type>
-            <scope>test</scope>
-        </dependency>
-        <!-- /TEST -->
-
-    </dependencies>
-
-    <build>
-        <finalName>syncope</finalName>
-
-        <plugins>
-
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <inherited>true</inherited>
-                <executions>
-                    <execution>
-                        <id>set-bundles</id>
-                        <phase>process-test-resources</phase>
-                        <goals>
-                            <goal>copy</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-failsafe-plugin</artifactId>
-                <inherited>true</inherited>
-                <configuration>
-                    <redirectTestOutputToFile>true</redirectTestOutputToFile>
-                    <encoding>utf-8</encoding>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>verify</id>
-                        <goals>
-                            <goal>verify</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-antrun-plugin</artifactId>
-                <inherited>true</inherited>
-                <executions>
-                    <execution>
-                        <id>explodeSyncopeWAR</id>
-                        <phase>pre-integration-test</phase>
-                        <configuration>
-                            <target>
-                                <unzip src="${project.build.directory}/${project.build.finalName}.war"
-                                       dest="${cargo.run.dir}">
-                                    <patternset>
-                                        <exclude name="**/content.xml"/>
-                                        <exclude name="**/persistence.properties"/>
-                                        <exclude name="**/security.properties"/>
-                                        <exclude name="**/workflow.properties" />
-                                    </patternset>
-                                </unzip>
-                                <copy file="${project.build.directory}/test-classes/db.jsp" todir="${cargo.run.dir}"/>
-                                <copy todir="${cargo.run.dir}/WEB-INF/classes" includeEmptyDirs="false">
-                                    <fileset dir="${project.build.directory}/test-classes"/>
-                                </copy>
-                            </target>
-                        </configuration>
-                        <goals>
-                            <goal>run</goal>
-                        </goals>
-                    </execution>
-                    <execution>
-                        <id>setupCSV</id>
-                        <phase>pre-integration-test</phase>
-                        <configuration>
-                            <target>
-                                <copy file="${project.build.directory}/test-classes/test.csv" todir="${java.io.tmpdir}" overwrite="true"/>
-                            </target>    
-                        </configuration>
-                        <goals>
-                            <goal>run</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-
-            <plugin>
-                <groupId>org.codehaus.cargo</groupId>
-                <artifactId>cargo-maven2-plugin</artifactId>
-                <inherited>true</inherited>
-                <configuration>
-                    <container>
-                        <dependencies>
-                            <dependency>
-                                <groupId>com.h2database</groupId>
-                                <artifactId>h2</artifactId>
-                            </dependency>
-                        </dependencies>
-                    </container>
-                    <configuration>
-                        <type>standalone</type>
-                        <properties>
-                            <cargo.servlet.port>${cargo.servlet.port}</cargo.servlet.port>
-                            <!--<cargo.jvmargs>-Xdebug -Xrunjdwp:transport=dt_socket,address=9009,server=y,suspend=n</cargo.jvmargs>-->
-                        </properties>
-                        <deployables>
-                            <deployable>
-                                <location>${cargo.run.dir}</location>
-                                <properties>
-                                    <context>syncope</context>
-                                </properties>
-                            </deployable>
-                            <deployable>
-                                <location>${settings.localRepository}/org/syncope/syncope-build-tools/${syncope.version}/syncope-build-tools-${syncope.version}.war</location>
-                                <properties>
-                                    <context>syncope-build-tools</context>
-                                </properties>
-                            </deployable>
-                            <deployable>
-                                <location>${settings.localRepository}/org/connid/bundles/soap/wssample/${connid.soap.version}/wssample-${connid.soap.version}.war</location>
-                                <properties>
-                                    <context>wssample</context>
-                                </properties>
-                            </deployable>
-                        </deployables>
-                    </configuration>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>start-container</id>
-                        <phase>pre-integration-test</phase>
-                        <goals>
-                            <goal>start</goal>
-                        </goals>
-                        <configuration>
-                            <wait>false</wait>
-                        </configuration>
-                    </execution>
-                    <execution>
-                        <id>stop-container</id>
-                        <phase>post-integration-test</phase>
-                        <goals>
-                            <goal>stop</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            
-            <plugin>
-                <groupId>org.apache.openjpa</groupId>
-                <artifactId>openjpa-maven-plugin</artifactId>
-                <inherited>true</inherited>
-                <dependencies>
-                    <dependency>
-                        <groupId>com.h2database</groupId>
-                        <artifactId>h2</artifactId>
-                        <version>${h2.version}</version>
-                    </dependency>
-                </dependencies>
-                <configuration>
-                    <includes>org/syncope/core/persistence/beans/**/*.class</includes>
-                    <connectionDriverName>org.springframework.jdbc.datasource.DriverManagerDataSource</connectionDriverName>
-                    <connectionProperties>
-                        driverClassName=org.h2.Driver,
-                        url=jdbc:h2:mem:syncopedb
-                        username=sa,
-                        password=
-                    </connectionProperties>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>enhancer</id>
-                        <phase>process-classes</phase>
-                        <goals>
-                            <goal>enhance</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-
-        </plugins>
-
-        <resources>
-            <resource>
-                <directory>src/main/resources</directory>
-                <filtering>true</filtering>
-            </resource>
-        </resources>
-
-        <testResources>
-            <testResource>
-                <directory>src/test/resources</directory>
-                <filtering>true</filtering>
-            </testResource>
-        </testResources>
-    </build>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (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
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and 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>

+        <groupId>${groupId}</groupId>

+        <artifactId>${rootArtifactId}</artifactId>

+        <version>${version}</version>

+    </parent>

+

+    <name>Syncope sample project core</name>

+    <groupId>${groupId}</groupId>

+    <artifactId>${artifactId}</artifactId>

+    <packaging>war</packaging>

+

+    <dependencies>

+

+        <dependency>

+            <groupId>org.apache.syncope</groupId>

+            <artifactId>syncope-client</artifactId>

+        </dependency>

+        <dependency>

+            <groupId>org.apache.syncope</groupId>

+            <artifactId>syncope-core</artifactId>

+            <type>war</type>

+        </dependency>

+        <dependency>

+            <groupId>org.apache.syncope</groupId>

+            <artifactId>syncope-core</artifactId>

+            <classifier>classes</classifier>

+        </dependency>

+

+        <dependency>

+            <groupId>javax.servlet</groupId>

+            <artifactId>servlet-api</artifactId>

+        </dependency>

+        <dependency>

+            <groupId>javax.servlet.jsp</groupId>

+            <artifactId>jsp-api</artifactId>

+        </dependency>

+        <dependency>

+            <groupId>javax.servlet</groupId>

+            <artifactId>jstl</artifactId>

+        </dependency>

+

+        <dependency>

+            <groupId>org.springframework.security</groupId>

+            <artifactId>spring-security-web</artifactId>

+        </dependency>

+        <dependency>

+            <groupId>org.springframework.security</groupId>

+            <artifactId>spring-security-config</artifactId>

+        </dependency>

+

+        <dependency>

+            <groupId>org.apache.openjpa</groupId>

+            <artifactId>openjpa-all</artifactId>

+        </dependency>

+

+        <dependency>

+            <groupId>org.codehaus.groovy</groupId>

+            <artifactId>groovy-all</artifactId>

+        </dependency>

+

+        <!-- TEST -->

+        <dependency>

+            <groupId>junit</groupId>

+            <artifactId>junit</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.springframework</groupId>

+            <artifactId>spring-test</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>com.h2database</groupId>

+            <artifactId>h2</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles.soap</groupId>

+            <artifactId>org.connid.bundles.soap</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles.soap</groupId>

+            <artifactId>wssample</artifactId>

+            <type>war</type>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles.db</groupId>

+            <artifactId>org.connid.bundles.db.table</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles</groupId>

+            <artifactId>org.connid.bundles.csvdir</artifactId>

+            <scope>test</scope>

+        </dependency>

+        <dependency>

+            <groupId>org.connid.bundles</groupId>

+            <artifactId>org.connid.bundles.ldap</artifactId>

+            <scope>test</scope>

+        </dependency>

+            

+        <dependency>

+            <groupId>org.apache.syncope</groupId>

+            <artifactId>syncope-build-tools</artifactId>

+            <type>war</type>

+            <scope>test</scope>

+        </dependency>

+        <!-- /TEST -->

+

+    </dependencies>

+

+    <build>

+        <finalName>syncope</finalName>

+

+        <plugins>

+

+            <plugin>

+                <groupId>org.apache.maven.plugins</groupId>

+                <artifactId>maven-dependency-plugin</artifactId>

+                <inherited>true</inherited>

+                <executions>

+                    <execution>

+                        <id>set-bundles</id>

+                        <phase>process-test-resources</phase>

+                        <goals>

+                            <goal>copy</goal>

+                        </goals>

+                    </execution>

+                </executions>

+            </plugin>

+            

+            <plugin>

+                <groupId>org.apache.maven.plugins</groupId>

+                <artifactId>maven-failsafe-plugin</artifactId>

+                <inherited>true</inherited>

+                <configuration>

+                    <redirectTestOutputToFile>true</redirectTestOutputToFile>

+                    <encoding>utf-8</encoding>

+                </configuration>

+                <executions>

+                    <execution>

+                        <id>verify</id>

+                        <goals>

+                            <goal>verify</goal>

+                        </goals>

+                    </execution>

+                </executions>

+            </plugin>

+

+            <plugin>

+                <groupId>org.apache.maven.plugins</groupId>

+                <artifactId>maven-antrun-plugin</artifactId>

+                <inherited>true</inherited>

+                <executions>

+                    <execution>

+                        <id>explodeSyncopeWAR</id>

+                        <phase>pre-integration-test</phase>

+                        <configuration>

+                            <target>

+                                <unzip src="${project.build.directory}/${project.build.finalName}.war"

+                                       dest="${cargo.run.dir}">

+                                    <patternset>

+                                        <exclude name="**/content.xml"/>

+                                        <exclude name="**/persistence.properties"/>

+                                        <exclude name="**/security.properties"/>

+                                        <exclude name="**/workflow.properties" />

+                                    </patternset>

+                                </unzip>

+                                <copy file="${project.build.directory}/test-classes/db.jsp" todir="${cargo.run.dir}"/>

+                                <copy todir="${cargo.run.dir}/WEB-INF/classes" includeEmptyDirs="false">

+                                    <fileset dir="${project.build.directory}/test-classes"/>

+                                </copy>

+                            </target>

+                        </configuration>

+                        <goals>

+                            <goal>run</goal>

+                        </goals>

+                    </execution>

+                    <execution>

+                        <id>setupCSV</id>

+                        <phase>pre-integration-test</phase>

+                        <configuration>

+                            <target>

+                                <copy file="${project.build.directory}/test-classes/test.csv" todir="${java.io.tmpdir}" overwrite="true"/>

+                            </target>    

+                        </configuration>

+                        <goals>

+                            <goal>run</goal>

+                        </goals>

+                    </execution>

+                </executions>

+            </plugin>

+

+            <plugin>

+                <groupId>org.codehaus.cargo</groupId>

+                <artifactId>cargo-maven2-plugin</artifactId>

+                <inherited>true</inherited>

+                <configuration>

+                    <container>

+                        <dependencies>

+                            <dependency>

+                                <groupId>com.h2database</groupId>

+                                <artifactId>h2</artifactId>

+                            </dependency>

+                        </dependencies>

+                    </container>

+                    <configuration>

+                        <type>standalone</type>

+                        <properties>

+                            <cargo.servlet.port>${cargo.servlet.port}</cargo.servlet.port>

+                            <!--<cargo.jvmargs>-Xdebug -Xrunjdwp:transport=dt_socket,address=9009,server=y,suspend=n</cargo.jvmargs>-->

+                        </properties>

+                        <deployables>

+                            <deployable>

+                                <location>${cargo.run.dir}</location>

+                                <properties>

+                                    <context>syncope</context>

+                                </properties>

+                            </deployable>

+                            <deployable>

+                                <location>${settings.localRepository}/org/syncope/syncope-build-tools/${syncope.version}/syncope-build-tools-${syncope.version}.war</location>

+                                <properties>

+                                    <context>syncope-build-tools</context>

+                                </properties>

+                            </deployable>

+                            <deployable>

+                                <location>${settings.localRepository}/org/connid/bundles/soap/wssample/${connid.soap.version}/wssample-${connid.soap.version}.war</location>

+                                <properties>

+                                    <context>wssample</context>

+                                </properties>

+                            </deployable>

+                        </deployables>

+                    </configuration>

+                </configuration>

+                <executions>

+                    <execution>

+                        <id>start-container</id>

+                        <phase>pre-integration-test</phase>

+                        <goals>

+                            <goal>start</goal>

+                        </goals>

+                        <configuration>

+                            <wait>false</wait>

+                        </configuration>

+                    </execution>

+                    <execution>

+                        <id>stop-container</id>

+                        <phase>post-integration-test</phase>

+                        <goals>

+                            <goal>stop</goal>

+                        </goals>

+                    </execution>

+                </executions>

+            </plugin>

+            

+            <plugin>

+                <groupId>org.apache.openjpa</groupId>

+                <artifactId>openjpa-maven-plugin</artifactId>

+                <inherited>true</inherited>

+                <dependencies>

+                    <dependency>

+                        <groupId>com.h2database</groupId>

+                        <artifactId>h2</artifactId>

+                        <version>${h2.version}</version>

+                    </dependency>

+                </dependencies>

+                <configuration>

+                    <includes>org/syncope/core/persistence/beans/**/*.class</includes>

+                    <connectionDriverName>org.springframework.jdbc.datasource.DriverManagerDataSource</connectionDriverName>

+                    <connectionProperties>

+                        driverClassName=org.h2.Driver,

+                        url=jdbc:h2:mem:syncopedb

+                        username=sa,

+                        password=

+                    </connectionProperties>

+                </configuration>

+                <executions>

+                    <execution>

+                        <id>enhancer</id>

+                        <phase>process-classes</phase>

+                        <goals>

+                            <goal>enhance</goal>

+                        </goals>

+                    </execution>

+                </executions>

+            </plugin>

+

+        </plugins>

+

+        <resources>

+            <resource>

+                <directory>src/main/resources</directory>

+                <filtering>true</filtering>

+            </resource>

+        </resources>

+

+        <testResources>

+            <testResource>

+                <directory>src/test/resources</directory>

+                <filtering>true</filtering>

+            </testResource>

+        </testResources>

+    </build>

+</project>


Modified: incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/src/main/resources/security.properties
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/src/main/resources/security.properties?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/src/main/resources/security.properties (original)
+++ incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/src/main/resources/security.properties Wed Feb 22 09:09:31 2012
@@ -6,12 +6,13 @@
 # "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
+# under the License.
 adminUser=admin
 adminMD5Password=5f4dcc3b5aa765d61d8327deb882cf99

Modified: incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/src/test/resources/security.properties
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/src/test/resources/security.properties?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/src/test/resources/security.properties (original)
+++ incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/core/src/test/resources/security.properties Wed Feb 22 09:09:31 2012
@@ -6,12 +6,13 @@
 # "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 # KIND, either express or implied.  See the License for the
 # specific language governing permissions and limitations
+# under the License.
 adminUser=admin
 adminMD5Password=5f4dcc3b5aa765d61d8327deb882cf99

Modified: incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/pom.xml?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/pom.xml (original)
+++ incubator/syncope/trunk/archetype/src/main/resources/archetype-resources/pom.xml Wed Feb 22 09:09:31 2012
@@ -1,94 +1,95 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (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
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and 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>
-
-    <parent>
-        <groupId>org.apache.syncope</groupId>
-        <artifactId>syncope</artifactId>
-        <version>1.0-SNAPSHOT</version>
-    </parent>
-
-    <properties>
-        <syncope.version>1.0-SNAPSHOT</syncope.version>
-    </properties>
-
-    <name>Syncope sample project</name>
-    <groupId>${groupId}</groupId>
-    <artifactId>${artifactId}</artifactId>
-    <version>${version}</version>
-    <packaging>pom</packaging>
-
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.apache.syncope</groupId>
-                <artifactId>syncope-client</artifactId>
-                <version>${syncope.version}</version>
-            </dependency> 
-
-            <dependency>
-                <groupId>org.apache.syncope</groupId>
-                <artifactId>syncope-build-tools</artifactId>
-                <version>${syncope.version}</version>
-                <type>war</type>
-            </dependency> 
-            
-            <dependency>
-                <groupId>org.apache.syncope</groupId>
-                <artifactId>syncope-core</artifactId>
-                <version>${syncope.version}</version>
-                <type>war</type>
-            </dependency> 
-            <dependency>
-                <groupId>org.apache.syncope</groupId>
-                <artifactId>syncope-core</artifactId>
-                <version>${syncope.version}</version>
-                <classifier>classes</classifier>
-                <scope>provided</scope>
-            </dependency> 
-
-            <dependency>
-                <groupId>org.apache.syncope</groupId>
-                <artifactId>syncope-console</artifactId>
-                <version>${syncope.version}</version>
-                <type>war</type>
-            </dependency> 
-            <dependency>
-                <groupId>org.apache.syncope</groupId>
-                <artifactId>syncope-console</artifactId>
-                <version>${syncope.version}</version>
-                <classifier>classes</classifier>
-                <scope>provided</scope>
-            </dependency> 
-        </dependencies>
-    </dependencyManagement>
-    
-    <modules>
-        <module>core</module>
-        <module>console</module>
-    </modules>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (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
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and 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>

+

+    <parent>

+        <groupId>org.apache.syncope</groupId>

+        <artifactId>syncope</artifactId>

+        <version>1.0-SNAPSHOT</version>

+    </parent>

+

+    <properties>

+        <syncope.version>1.0-SNAPSHOT</syncope.version>

+    </properties>

+

+    <name>Syncope sample project</name>

+    <groupId>${groupId}</groupId>

+    <artifactId>${artifactId}</artifactId>

+    <version>${version}</version>

+    <packaging>pom</packaging>

+

+    <dependencyManagement>

+        <dependencies>

+            <dependency>

+                <groupId>org.apache.syncope</groupId>

+                <artifactId>syncope-client</artifactId>

+                <version>${syncope.version}</version>

+            </dependency> 

+

+            <dependency>

+                <groupId>org.apache.syncope</groupId>

+                <artifactId>syncope-build-tools</artifactId>

+                <version>${syncope.version}</version>

+                <type>war</type>

+            </dependency> 

+            

+            <dependency>

+                <groupId>org.apache.syncope</groupId>

+                <artifactId>syncope-core</artifactId>

+                <version>${syncope.version}</version>

+                <type>war</type>

+            </dependency> 

+            <dependency>

+                <groupId>org.apache.syncope</groupId>

+                <artifactId>syncope-core</artifactId>

+                <version>${syncope.version}</version>

+                <classifier>classes</classifier>

+                <scope>provided</scope>

+            </dependency> 

+

+            <dependency>

+                <groupId>org.apache.syncope</groupId>

+                <artifactId>syncope-console</artifactId>

+                <version>${syncope.version}</version>

+                <type>war</type>

+            </dependency> 

+            <dependency>

+                <groupId>org.apache.syncope</groupId>

+                <artifactId>syncope-console</artifactId>

+                <version>${syncope.version}</version>

+                <classifier>classes</classifier>

+                <scope>provided</scope>

+            </dependency> 

+        </dependencies>

+    </dependencyManagement>

+    

+    <modules>

+        <module>core</module>

+        <module>console</module>

+    </modules>

+

+</project>


Modified: incubator/syncope/trunk/build-tools/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/pom.xml?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/pom.xml (original)
+++ incubator/syncope/trunk/build-tools/pom.xml Wed Feb 22 09:09:31 2012
@@ -8,7 +8,7 @@ to you under the Apache License, Version
 "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
@@ -16,6 +16,7 @@ software distributed under the License i
 KIND, either express or implied.  See the License for the
 specific language governing permissions and 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">

Modified: incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/ApacheDSRootDseServlet.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/ApacheDSRootDseServlet.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/ApacheDSRootDseServlet.java (original)
+++ incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/ApacheDSRootDseServlet.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.buildtools;
 

Modified: incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/ApacheDSStartStopListener.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/ApacheDSStartStopListener.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/ApacheDSStartStopListener.java (original)
+++ incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/ApacheDSStartStopListener.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.buildtools;
 

Modified: incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/H2StartStopListener.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/H2StartStopListener.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/H2StartStopListener.java (original)
+++ incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/H2StartStopListener.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.buildtools;
 

Modified: incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/JarSchemaLdifExtractor.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/JarSchemaLdifExtractor.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/JarSchemaLdifExtractor.java (original)
+++ incubator/syncope/trunk/build-tools/src/main/java/org/syncope/buildtools/JarSchemaLdifExtractor.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.buildtools;
 

Modified: incubator/syncope/trunk/build-tools/src/main/resources/applicationContext.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/src/main/resources/applicationContext.xml?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/src/main/resources/applicationContext.xml (original)
+++ incubator/syncope/trunk/build-tools/src/main/resources/applicationContext.xml Wed Feb 22 09:09:31 2012
@@ -8,7 +8,7 @@ to you under the Apache License, Version
 "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
@@ -16,6 +16,7 @@ software distributed under the License i
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
+
 -->
 
 <beans xmlns="http://www.springframework.org/schema/beans"

Modified: incubator/syncope/trunk/build-tools/src/main/resources/log4j.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/src/main/resources/log4j.xml?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/src/main/resources/log4j.xml (original)
+++ incubator/syncope/trunk/build-tools/src/main/resources/log4j.xml Wed Feb 22 09:09:31 2012
@@ -8,7 +8,7 @@ to you under the Apache License, Version
 "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
@@ -16,6 +16,7 @@ software distributed under the License i
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
+
 -->
 
 <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd" >

Modified: incubator/syncope/trunk/build-tools/src/main/webapp/WEB-INF/glassfish-web.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/src/main/webapp/WEB-INF/glassfish-web.xml?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/src/main/webapp/WEB-INF/glassfish-web.xml (original)
+++ incubator/syncope/trunk/build-tools/src/main/webapp/WEB-INF/glassfish-web.xml Wed Feb 22 09:09:31 2012
@@ -8,7 +8,7 @@ to you under the Apache License, Version
 "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
@@ -16,6 +16,7 @@ software distributed under the License i
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
+
 -->
 
 <!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD 

Modified: incubator/syncope/trunk/build-tools/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/build-tools/src/main/webapp/WEB-INF/web.xml?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/build-tools/src/main/webapp/WEB-INF/web.xml (original)
+++ incubator/syncope/trunk/build-tools/src/main/webapp/WEB-INF/web.xml Wed Feb 22 09:09:31 2012
@@ -8,7 +8,7 @@ to you under the Apache License, Version
 "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
@@ -16,6 +16,7 @@ software distributed under the License i
 KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
+
 -->
 
 <web-app xmlns="http://java.sun.com/xml/ns/javaee"

Modified: incubator/syncope/trunk/client/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/pom.xml?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/pom.xml (original)
+++ incubator/syncope/trunk/client/pom.xml Wed Feb 22 09:09:31 2012
@@ -8,7 +8,7 @@ to you under the Apache License, Version
 "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
@@ -16,6 +16,7 @@ software distributed under the License i
 KIND, either express or implied.  See the License for the
 specific language governing permissions and 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">

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/AbstractBaseBean.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/AbstractBaseBean.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/AbstractBaseBean.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/AbstractBaseBean.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/SchemaList.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/SchemaList.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/SchemaList.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/SchemaList.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/SyncopeConstants.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/SyncopeConstants.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/SyncopeConstants.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/SyncopeConstants.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/http/PreemptiveAuthHttpRequestFactory.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/http/PreemptiveAuthHttpRequestFactory.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/http/PreemptiveAuthHttpRequestFactory.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/http/PreemptiveAuthHttpRequestFactory.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.http;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/AbstractAttributableMod.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/AbstractAttributableMod.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/AbstractAttributableMod.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/AbstractAttributableMod.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.mod;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/AttributeMod.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/AttributeMod.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/AttributeMod.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/AttributeMod.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.mod;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/MembershipMod.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/MembershipMod.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/MembershipMod.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/MembershipMod.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.mod;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/ReferenceMod.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/ReferenceMod.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/ReferenceMod.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/ReferenceMod.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.mod;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/RoleMod.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/RoleMod.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/RoleMod.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/RoleMod.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.mod;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/UserMod.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/UserMod.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/UserMod.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/mod/UserMod.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.mod;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/AbstractReportletConf.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/AbstractReportletConf.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/AbstractReportletConf.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/AbstractReportletConf.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.report;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/ReportletConf.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/ReportletConf.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/ReportletConf.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/ReportletConf.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.report;
 

Modified: incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/UserReportletConf.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/UserReportletConf.java?rev=1292203&r1=1292202&r2=1292203&view=diff
==============================================================================
--- incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/UserReportletConf.java (original)
+++ incubator/syncope/trunk/client/src/main/java/org/syncope/client/report/UserReportletConf.java Wed Feb 22 09:09:31 2012
@@ -7,13 +7,14 @@
  * "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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
+ * under the License.
  */
 package org.syncope.client.report;