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/03/07 09:24:57 UTC

svn commit: r1297877 [7/9] - in /incubator/syncope/trunk: ./ archetype/ archetype/src/main/resources/META-INF/maven/ archetype/src/main/resources/archetype-resources/ archetype/src/main/resources/archetype-resources/console/ archetype/src/main/resource...

Modified: incubator/syncope/trunk/core/src/test/resources/context.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/test/resources/context.xml?rev=1297877&r1=1297876&r2=1297877&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/test/resources/context.xml (original)
+++ incubator/syncope/trunk/core/src/test/resources/context.xml Wed Mar  7 08:24:55 2012
@@ -18,12 +18,11 @@ specific language governing permissions 
 under the License.
 
 -->
-
 <Context>
     <!-- Disable session persistence across Tomcat restarts -->
-    <Manager pathname="" />
+  <Manager pathname="" />
 
-    <Loader className="org.apache.catalina.loader.VirtualWebappLoader"
-            virtualClasspath="${project.build.directory}/classes:${project.build.directory}/${project.build.finalName}/WEB-INF/lib/*.jar"
-            searchVirtualFirst="true"/>
+  <Loader className="org.apache.catalina.loader.VirtualWebappLoader"
+          virtualClasspath="${project.build.directory}/classes:${project.build.directory}/${project.build.finalName}/WEB-INF/lib/*.jar"
+          searchVirtualFirst="true"/>
 </Context>

Modified: incubator/syncope/trunk/core/src/test/resources/restClientContext.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/test/resources/restClientContext.xml?rev=1297877&r1=1297876&r2=1297877&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/test/resources/restClientContext.xml (original)
+++ incubator/syncope/trunk/core/src/test/resources/restClientContext.xml Wed Mar  7 08:24:55 2012
@@ -18,28 +18,27 @@ specific language governing permissions 
 under the License.
 
 -->
-
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
                            http://www.springframework.org/schema/beans/spring-beans.xsd">
 
-    <bean id="httpClientConnManager" class="org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager"/>
-    <bean id="httpClientParams" class="org.apache.http.params.SyncBasicHttpParams"/>
-    <bean id="httpClientFactory" class="org.syncope.client.http.PreemptiveAuthHttpRequestFactory">
-        <constructor-arg value="localhost"/>
-        <constructor-arg value="9080"/>
-        <constructor-arg value="http"/>
-        <constructor-arg ref="httpClientConnManager"/>
-        <constructor-arg ref="httpClientParams"/>
-    </bean>
-    <bean id="restTemplate" class="org.springframework.web.client.RestTemplate">
-        <constructor-arg ref="httpClientFactory"/>
+  <bean id="httpClientConnManager" class="org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager"/>
+  <bean id="httpClientParams" class="org.apache.http.params.SyncBasicHttpParams"/>
+  <bean id="httpClientFactory" class="org.syncope.client.http.PreemptiveAuthHttpRequestFactory">
+    <constructor-arg value="localhost"/>
+    <constructor-arg value="9080"/>
+    <constructor-arg value="http"/>
+    <constructor-arg ref="httpClientConnManager"/>
+    <constructor-arg ref="httpClientParams"/>
+  </bean>
+  <bean id="restTemplate" class="org.springframework.web.client.RestTemplate">
+    <constructor-arg ref="httpClientFactory"/>
 
-        <property name="errorHandler">
-            <bean id="syncopeClientErrorHandler"
+    <property name="errorHandler">
+      <bean id="syncopeClientErrorHandler"
                   class="org.syncope.client.validation.SyncopeClientErrorHandler"/>
-        </property>
-    </bean>
+    </property>
+  </bean>
 
 </beans>
\ No newline at end of file

Modified: incubator/syncope/trunk/core/src/test/resources/testJDBCContext.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/test/resources/testJDBCContext.xml?rev=1297877&r1=1297876&r2=1297877&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/test/resources/testJDBCContext.xml (original)
+++ incubator/syncope/trunk/core/src/test/resources/testJDBCContext.xml Wed Mar  7 08:24:55 2012
@@ -18,18 +18,17 @@ specific language governing permissions 
 under the License.
 
 -->
-
 <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
                            http://www.springframework.org/schema/beans/spring-beans.xsd">
 
-    <bean id="testDataSource"
-          class="org.springframework.jdbc.datasource.DriverManagerDataSource">
-        <property name="driverClassName" value="${testdb.driver}"/>
-        <property name="url" value="${testdb.url}"/>
-        <property name="username" value="${testdb.username}"/>
-        <property name="password" value="${testdb.password}"/>
-    </bean>
+  <bean id="testDataSource"
+        class="org.springframework.jdbc.datasource.DriverManagerDataSource">
+    <property name="driverClassName" value="${testdb.driver}"/>
+    <property name="url" value="${testdb.url}"/>
+    <property name="username" value="${testdb.username}"/>
+    <property name="password" value="${testdb.password}"/>
+  </bean>
 
 </beans>
\ No newline at end of file

Modified: incubator/syncope/trunk/hibernate-enhancer/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/hibernate-enhancer/pom.xml?rev=1297877&r1=1297876&r2=1297877&view=diff
==============================================================================
--- incubator/syncope/trunk/hibernate-enhancer/pom.xml (original)
+++ incubator/syncope/trunk/hibernate-enhancer/pom.xml Wed Mar  7 08:24:55 2012
@@ -18,82 +18,81 @@ specific language governing permissions 
 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>org.apache.syncope</groupId>
-        <artifactId>syncope</artifactId>
-        <version>1.1-SNAPSHOT</version>
-        <relativePath>../parent</relativePath>
-    </parent>
+  <modelVersion>4.0.0</modelVersion>
 
-    <name>Apache Syncope Hibernate enhancer</name>
-    <description>When using Hibernate as JPA provider, enhance entities.</description>
+  <parent>
     <groupId>org.apache.syncope</groupId>
-    <artifactId>syncope-hibernate-enhancer</artifactId>
-
-    <dependencies>
-        <dependency>
-            <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> 
-            <scope>provided</scope>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <resources>
-            <resource>
-                <directory>..</directory>
-                <targetPath>META-INF</targetPath>
-                <includes>
-                    <include>LICENSE</include>
-                    <include>NOTICE</include>
-                </includes>
-            </resource>
-        </resources>
-    </build>
-
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-checkstyle-plugin</artifactId>
-                <version>2.9</version>
-                <configuration>
-                    <configLocation>org/syncope/checkstyle.xml</configLocation>
-                    <targetJdk>${targetJdk}</targetJdk>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-pmd-plugin</artifactId>
-                <version>2.7.1</version>
-                <configuration>
-                    <rulesets>
-                        <ruleset>org/syncope/pmd.xml</ruleset>
-                    </rulesets>
-                    <targetJdk>${targetJdk}</targetJdk>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-jxr-plugin</artifactId>
-                <version>2.3</version>
-            </plugin>
-        </plugins>
-    </reporting>
+    <artifactId>syncope</artifactId>
+    <version>1.1-SNAPSHOT</version>
+    <relativePath>../parent</relativePath>
+  </parent>
+
+  <name>Apache Syncope Hibernate enhancer</name>
+  <description>When using Hibernate as JPA provider, enhance entities.</description>
+  <groupId>org.apache.syncope</groupId>
+  <artifactId>syncope-hibernate-enhancer</artifactId>
+
+  <dependencies>
+    <dependency>
+      <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> 
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>..</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>LICENSE</include>
+          <include>NOTICE</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <version>2.9</version>
+        <configuration>
+          <configLocation>org/syncope/checkstyle.xml</configLocation>
+          <targetJdk>${targetJdk}</targetJdk>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <version>2.7.1</version>
+        <configuration>
+          <rulesets>
+            <ruleset>org/syncope/pmd.xml</ruleset>
+          </rulesets>
+          <targetJdk>${targetJdk}</targetJdk>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>2.3</version>
+      </plugin>
+    </plugins>
+  </reporting>
 
 </project>