You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2011/06/10 18:52:08 UTC

svn commit: r1134386 [6/10] - in /incubator/isis/branches/0.1.2-RC4-incubating/trunk: ./ applib/ core/ core/commons/ core/metamodel/ core/progmodel/ core/runtime/ core/testsupport/ core/webapp/ progmodels/ progmodels/dflt/ progmodels/groovy/ progmodels...

Modified: incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/objectstores/sql/tests-served/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/objectstores/sql/tests-served/pom.xml?rev=1134386&r1=1134385&r2=1134386&view=diff
==============================================================================
--- incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/objectstores/sql/tests-served/pom.xml (original)
+++ incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/objectstores/sql/tests-served/pom.xml Fri Jun 10 16:52:05 2011
@@ -1,170 +1,169 @@
-<?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.isis.runtimes.dflt.objectstores</groupId>
-        <artifactId>sql</artifactId>
-        <version>0.1.2-incubating-SNAPSHOT</version>
-    </parent>
-
-    <artifactId>sql-tests-served</artifactId>
-
-    <name>Default Runtime SQL ObjectStore Integration Tests - Served</name>
-
-    <properties>
-	    <siteBaseDir>../../../../..</siteBaseDir>
-		<relativeUrl>runtimes/dflt/objecstores/sql/tests-served/</relativeUrl>
-
-        <postgresql.version>8.4-701.jdbc4</postgresql.version>
-        <mysql.version>5.0.5</mysql.version>
-    </properties>
-
-    <!-- used in Site generation for relative references. -->
-    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
-
-    <description>Runs the common tests against a few server implementations.
-Just add your server implementation to org.apache.isis.extensions.sql.objectstore</description>
-    <build>
-        <plugins>
-            <!-- TODO: currently set to ignore test failures -->
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <testFailureIgnore>true</testFailureIgnore>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>${maven-project-info-reports-plugin}</version>
-                <inherited>false</inherited>
-                <configuration>
-                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <inherited>false</inherited>
-                        <reports>
-                            <report>dependency-management</report>
-                            <report>dependencies</report>
-                            <report>dependency-convergence</report>
-                            <report>plugins</report>
-                            <report>summary</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-        </plugins>
-    </reporting>
-
-    <dependencyManagement>
-        <dependencies>
-			<!-- SQL integration tests common -->
-            <dependency>
-				<groupId>${project.groupId}</groupId>
-                <artifactId>sql-tests-common</artifactId>
-				<version>${project.version}</version>
-            </dependency>
-
-            <!-- Required to support the XML cross-test -->
-			<!--
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-                <artifactId>xml</artifactId>
-                <version>${xml-objectstore.version}</version>
-            </dependency>
-			-->
-
-            <!-- JDBC drivers -->
-            <dependency>
-                <groupId>postgresql</groupId>
-                <artifactId>postgresql</artifactId>
-                <version>${postgresql.version}</version>
-            </dependency>
-            <dependency>
-                <groupId>mysql</groupId>
-                <artifactId>mysql-connector-java</artifactId>
-                <version>${mysql.version}</version>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
-    <dependencies>
-
-        <!--  Required for TestProxy -->
-		<!-- Isis defaults -->
-        <dependency>
-            <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-            <artifactId>dflt</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-            <artifactId>dflt</artifactId>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-
-        <!--  todo: remove this dependency -->
-        <dependency>
-            <groupId>org.apache.isis.progmodels</groupId>
-            <artifactId>dflt</artifactId>
-            <version>0.1.2-incubating-SNAPSHOT</version>
-        </dependency>
-
-
-		<!-- Isis Object store -->
-        <dependency>
-		<groupId>${project.groupId}</groupId>
-            <artifactId>sql-impl</artifactId>
-        </dependency>
-
-		<!-- Test common -->
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>sql-tests-common</artifactId>
-        </dependency>
-		<dependency>
-			<groupId>${project.groupId}</groupId>
-			<artifactId>sql-tests-common</artifactId>
-            <type>test-jar</type>
-        	<scope>test</scope>
-		</dependency>
-
-        <!-- Required to support the implemented servers -->
-        <dependency>
-            <groupId>postgresql</groupId>
-            <artifactId>postgresql</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>mysql</groupId>
-            <artifactId>mysql-connector-java</artifactId>
-        </dependency>
-    </dependencies>
-</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.isis.runtimes.dflt.objectstores</groupId>
+        <artifactId>sql</artifactId>
+        <version>0.1.2-RC4-incubating</version>
+    </parent>
+
+    <artifactId>sql-tests-served</artifactId>
+
+    <name>Default Runtime SQL ObjectStore Integration Tests - Served</name>
+
+    <properties>
+	    <siteBaseDir>../../../../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/objecstores/sql/tests-served/</relativeUrl>
+
+        <postgresql.version>8.4-701.jdbc4</postgresql.version>
+        <mysql.version>5.0.5</mysql.version>
+    </properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+    <description>Runs the common tests against a few server implementations.
+Just add your server implementation to org.apache.isis.extensions.sql.objectstore</description>
+    <build>
+        <plugins>
+            <!-- TODO: currently set to ignore test failures -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <testFailureIgnore>true</testFailureIgnore>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+                <inherited>false</inherited>
+                <configuration>
+                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <inherited>false</inherited>
+                        <reports>
+                            <report>dependency-management</report>
+                            <report>dependencies</report>
+                            <report>dependency-convergence</report>
+                            <report>plugins</report>
+                            <report>summary</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <dependencyManagement>
+        <dependencies>
+			<!-- SQL integration tests common -->
+            <dependency>
+				<groupId>${project.groupId}</groupId>
+                <artifactId>sql-tests-common</artifactId>
+				<version>${project.version}</version>
+            </dependency>
+
+            <!-- Required to support the XML cross-test -->
+			<!--
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+                <artifactId>xml</artifactId>
+                <version>${xml-objectstore.version}</version>
+            </dependency>
+			-->
+
+            <!-- JDBC drivers -->
+            <dependency>
+                <groupId>postgresql</groupId>
+                <artifactId>postgresql</artifactId>
+                <version>${postgresql.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>mysql</groupId>
+                <artifactId>mysql-connector-java</artifactId>
+                <version>${mysql.version}</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+    <dependencies>
+
+        <!--  Required for TestProxy -->
+		<!-- Isis defaults -->
+        <dependency>
+            <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+            <artifactId>dflt</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+            <artifactId>dflt</artifactId>
+            <type>test-jar</type>
+            <scope>test</scope>
+        </dependency>
+
+        <!--  todo: remove this dependency -->
+        <dependency>
+            <groupId>org.apache.isis.progmodels</groupId>
+            <artifactId>dflt</artifactId>
+            <version>0.1.2-RC4-incubating</version>
+        </dependency>
+
+
+		<!-- Isis Object store -->
+        <dependency>
+		<groupId>${project.groupId}</groupId>
+            <artifactId>sql-impl</artifactId>
+        </dependency>
+
+		<!-- Test common -->
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>sql-tests-common</artifactId>
+        </dependency>
+		<dependency>
+			<groupId>${project.groupId}</groupId>
+			<artifactId>sql-tests-common</artifactId>
+            <type>test-jar</type>
+        	<scope>test</scope>
+		</dependency>
+
+        <!-- Required to support the implemented servers -->
+        <dependency>
+            <groupId>postgresql</groupId>
+            <artifactId>postgresql</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>mysql</groupId>
+            <artifactId>mysql-connector-java</artifactId>
+        </dependency>
+    </dependencies>
+</project>

Modified: incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/objectstores/xml/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/objectstores/xml/pom.xml?rev=1134386&r1=1134385&r2=1134386&view=diff
==============================================================================
--- incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/objectstores/xml/pom.xml (original)
+++ incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/objectstores/xml/pom.xml Fri Jun 10 16:52:05 2011
@@ -1,102 +1,102 @@
-<?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.isis.runtimes.dflt</groupId>
-		<artifactId>objectstores</artifactId>
-		<version>0.1.2-incubating-SNAPSHOT</version>
-	</parent>
-
-	<groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-	<artifactId>xml</artifactId>
-	<version>0.1.2-incubating-SNAPSHOT</version>
-
-	<name>Default Runtime XML ObjectStore</name>
-
-	<properties>
-        <siteBaseDir>../../../..</siteBaseDir>
-		<relativeUrl>runtimes/dflt/objectstores/xml/</relativeUrl>
-
-        <docbkxGuideTitle>Apache Isis Default Runtime XML ObjectStore</docbkxGuideTitle>
-        <docbkxGuideSubTitle>Configuration and Deployment Guide</docbkxGuideSubTitle>
-        <docbkxGuideName>isis-xml-objectstore</docbkxGuideName>
-    </properties>
-
-    <!-- used in Site generation for relative references. -->
-    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
-
-	<build>
-		<plugins>
-            <plugin>
-                <groupId>com.agilejava.docbkx</groupId>
-                <artifactId>docbkx-maven-plugin</artifactId>
-				<inherited>false</inherited>
-            </plugin>
-		</plugins>
-	</build>
-
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>${maven-project-info-reports-plugin}</version>
-                <inherited>false</inherited>
-                <configuration>
-                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <inherited>false</inherited>
-                        <reports>
-                            <report>dependencies</report>
-                            <report>dependency-convergence</report>
-                            <report>plugins</report>
-                            <report>summary</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-        </plugins>
-    </reporting>
-
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.isis.core</groupId>
-			<artifactId>metamodel</artifactId>
-			<type>test-jar</type>
-			<scope>test</scope>
-        </dependency>
-
-		<dependency>
-			<groupId>org.apache.isis.runtimes.dflt</groupId>
-            <artifactId>runtime</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.isis.runtimes.dflt</groupId>
-			<artifactId>runtime</artifactId>
-			<type>test-jar</type>
-			<scope>test</scope>
-		</dependency>
-	</dependencies>
-
-</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.isis.runtimes.dflt</groupId>
+		<artifactId>objectstores</artifactId>
+		<version>0.1.2-RC4-incubating</version>
+	</parent>
+
+	<groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+	<artifactId>xml</artifactId>
+	<version>0.1.2-RC4-incubating</version>
+
+	<name>Default Runtime XML ObjectStore</name>
+
+	<properties>
+        <siteBaseDir>../../../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/objectstores/xml/</relativeUrl>
+
+        <docbkxGuideTitle>Apache Isis Default Runtime XML ObjectStore</docbkxGuideTitle>
+        <docbkxGuideSubTitle>Configuration and Deployment Guide</docbkxGuideSubTitle>
+        <docbkxGuideName>isis-xml-objectstore</docbkxGuideName>
+    </properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+	<build>
+		<plugins>
+            <plugin>
+                <groupId>com.agilejava.docbkx</groupId>
+                <artifactId>docbkx-maven-plugin</artifactId>
+				<inherited>false</inherited>
+            </plugin>
+		</plugins>
+	</build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+                <inherited>false</inherited>
+                <configuration>
+                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <inherited>false</inherited>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>dependency-convergence</report>
+                            <report>plugins</report>
+                            <report>summary</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.isis.core</groupId>
+			<artifactId>metamodel</artifactId>
+			<type>test-jar</type>
+			<scope>test</scope>
+        </dependency>
+
+		<dependency>
+			<groupId>org.apache.isis.runtimes.dflt</groupId>
+            <artifactId>runtime</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.isis.runtimes.dflt</groupId>
+			<artifactId>runtime</artifactId>
+			<type>test-jar</type>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+</project>

Modified: incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/pom.xml?rev=1134386&r1=1134385&r2=1134386&view=diff
==============================================================================
--- incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/pom.xml (original)
+++ incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/pom.xml Fri Jun 10 16:52:05 2011
@@ -1,257 +1,256 @@
-<?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.isis</groupId>
-		<artifactId>runtimes</artifactId>
-		<version>0.1.2-incubating-SNAPSHOT</version>
-	</parent>
-
-	<groupId>org.apache.isis.runtimes</groupId>
-	<artifactId>dflt</artifactId>
-
-	<name>Isis Default Runtime</name>
-
-	<description>
-		Default runtime implementation.
-	</description>
-
-	<packaging>pom</packaging>
-
-	<properties>
-        <siteBaseDir>../..</siteBaseDir>
-		<relativeUrl>runtimes/dflt/</relativeUrl>
-        
-        <docbkxGuideTitle>Apache Isis Default Runtime</docbkxGuideTitle>
-        <docbkxGuideSubTitle>Programming, Configuration and Deployment Guide</docbkxGuideSubTitle>
-        <docbkxGuideName>isis-default-runtime</docbkxGuideName>
-    </properties>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>com.agilejava.docbkx</groupId>
-                <artifactId>docbkx-maven-plugin</artifactId>
-                <inherited>false</inherited>
-            </plugin>
-        </plugins>
-    </build>
-
-    <!-- used in Site generation for relative references. -->
-    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
-
-
-	<modules>
-		<module>runtime</module>
-		<module>monitoring</module>
-		<module>webapp</module>
-		<module>webserver</module>
-        <module>bytecode</module>
-        <module>objectstores</module>
-        <module>profilestores</module>
-        <module>remoting</module>
-	</modules>
-
-	<reporting>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>${maven-project-info-reports-plugin}</version>
-				<inherited>false</inherited>
-				<reportSets>
-					<reportSet>
-						<inherited>false</inherited>
-						<reports>
-                            <report>dependency-management</report>
-                            <report>plugins</report>
-							<report>modules</report>
-                            <report>summary</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-		</plugins>
-	</reporting>
-
-	<dependencyManagement>
-		<dependencies>
-			<dependency>
-				<groupId>org.apache.isis</groupId>
-				<artifactId>core</artifactId>
-				<version>0.1.2-incubating-SNAPSHOT</version>
-				<type>pom</type>
-				<scope>import</scope>
-			</dependency>
-
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt</groupId>
-                <artifactId>runtime</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt</groupId>
-                <artifactId>runtime</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt</groupId>
-                <artifactId>monitoring</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt</groupId>
-                <artifactId>webserver</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt</groupId>
-                <artifactId>webserver</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt</groupId>
-                <artifactId>webapp</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt</groupId>
-                <artifactId>webapp</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-
-            <!-- bytecode -->
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
-                <artifactId>dflt</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
-                <artifactId>dflt</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
-                <artifactId>javassist</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
-                <artifactId>javassist</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
-                <artifactId>identity</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
-                <artifactId>identity</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-
-            <!-- objectstores -->
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-                <artifactId>dflt</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-                <artifactId>dflt</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-                <artifactId>xml</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-                <artifactId>xml</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-                <artifactId>sql</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-                <artifactId>sql</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-                <artifactId>nosql</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
-                <artifactId>nosql</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-
-            <!-- profilestores -->
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
-                <artifactId>dflt</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
-                <artifactId>dflt</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
-                <artifactId>xml</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
-                <artifactId>xml</artifactId>
-                <version>0.1.2-incubating-SNAPSHOT</version>
-                <type>test-jar</type>
-            </dependency>
-
-        </dependencies>
-    </dependencyManagement>
-
-</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.isis</groupId>
+		<artifactId>runtimes</artifactId>
+		<version>0.1.2-RC4-incubating</version>
+	</parent>
+
+	<groupId>org.apache.isis.runtimes</groupId>
+	<artifactId>dflt</artifactId>
+
+	<name>Isis Default Runtime</name>
+
+	<description>
+		Default runtime implementation.
+	</description>
+
+	<packaging>pom</packaging>
+
+	<properties>
+        <siteBaseDir>../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/</relativeUrl>
+        
+        <docbkxGuideTitle>Apache Isis Default Runtime</docbkxGuideTitle>
+        <docbkxGuideSubTitle>Programming, Configuration and Deployment Guide</docbkxGuideSubTitle>
+        <docbkxGuideName>isis-default-runtime</docbkxGuideName>
+    </properties>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>com.agilejava.docbkx</groupId>
+                <artifactId>docbkx-maven-plugin</artifactId>
+                <inherited>false</inherited>
+            </plugin>
+        </plugins>
+    </build>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+
+	<modules>
+		<module>runtime</module>
+		<module>monitoring</module>
+		<module>webapp</module>
+		<module>webserver</module>
+        <module>bytecode</module>
+        <module>objectstores</module>
+        <module>profilestores</module>
+        <module>remoting</module>
+	</modules>
+
+	<reporting>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+				<inherited>false</inherited>
+				<reportSets>
+					<reportSet>
+						<inherited>false</inherited>
+						<reports>
+                            <report>dependency-management</report>
+                            <report>plugins</report>
+							<report>modules</report>
+                            <report>summary</report>
+						</reports>
+					</reportSet>
+				</reportSets>
+			</plugin>
+		</plugins>
+	</reporting>
+
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<groupId>org.apache.isis</groupId>
+				<artifactId>core</artifactId>
+				<version>0.1.2-RC4-incubating</version>
+				<type>pom</type>
+				<scope>import</scope>
+			</dependency>
+
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt</groupId>
+                <artifactId>runtime</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt</groupId>
+                <artifactId>runtime</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt</groupId>
+                <artifactId>monitoring</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt</groupId>
+                <artifactId>webserver</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt</groupId>
+                <artifactId>webserver</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt</groupId>
+                <artifactId>webapp</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt</groupId>
+                <artifactId>webapp</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+
+            <!-- bytecode -->
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
+                <artifactId>dflt</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
+                <artifactId>dflt</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
+                <artifactId>javassist</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
+                <artifactId>javassist</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
+                <artifactId>identity</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
+                <artifactId>identity</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+
+            <!-- objectstores -->
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+                <artifactId>dflt</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+                <artifactId>dflt</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+                <artifactId>xml</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+                <artifactId>xml</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+                <artifactId>sql</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+                <artifactId>sql</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+                <artifactId>nosql</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.objectstores</groupId>
+                <artifactId>nosql</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+
+            <!-- profilestores -->
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
+                <artifactId>dflt</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
+                <artifactId>dflt</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
+                <artifactId>xml</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
+                <artifactId>xml</artifactId>
+                <version>0.1.2-RC4-incubating</version>
+                <type>test-jar</type>
+            </dependency>
+
+        </dependencies>
+    </dependencyManagement>
+
+</project>
+

Modified: incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/dflt/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/dflt/pom.xml?rev=1134386&r1=1134385&r2=1134386&view=diff
==============================================================================
--- incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/dflt/pom.xml (original)
+++ incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/dflt/pom.xml Fri Jun 10 16:52:05 2011
@@ -1,93 +1,93 @@
-<?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.isis.runtimes.dflt</groupId>
-		<artifactId>profilestores</artifactId>
-		<version>0.1.2-incubating-SNAPSHOT</version>
-	</parent>
-
-	<groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
-	<artifactId>dflt</artifactId>
-	<name>Default ProfileStore (In-Memory)</name>
-
-	<properties>
-        <siteBaseDir>../../../..</siteBaseDir>
-		<relativeUrl>runtimes/dflt/profilestores/dflt/</relativeUrl>
-	</properties>
-
-    <!-- used in Site generation for relative references. -->
-    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
-
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>${maven-project-info-reports-plugin}</version>
-                <inherited>false</inherited>
-                <configuration>
-                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <inherited>false</inherited>
-                        <reports>
-                            <report>dependencies</report>
-                            <report>dependency-convergence</report>
-                            <report>plugins</report>
-                            <report>summary</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-        </plugins>
-    </reporting>
-
-    <dependencies>
-
-        <dependency>
-            <groupId>org.apache.isis.core</groupId>
-            <artifactId>testsupport</artifactId>
-            <scope>test</scope>
-        </dependency>
-        
-        <dependency>
-            <groupId>org.apache.isis.core</groupId>
-            <artifactId>metamodel</artifactId>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-
-		<dependency>
-		    <groupId>org.apache.isis.runtimes.dflt</groupId>
-		    <artifactId>runtime</artifactId>
-		</dependency>
-		<dependency>
-		    <groupId>org.apache.isis.runtimes.dflt</groupId>
-		    <artifactId>runtime</artifactId>
-		    <type>test-jar</type>
-		    <scope>test</scope>
-		</dependency>
-	</dependencies>
-
-</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.isis.runtimes.dflt</groupId>
+		<artifactId>profilestores</artifactId>
+		<version>0.1.2-RC4-incubating</version>
+	</parent>
+
+	<groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
+	<artifactId>dflt</artifactId>
+	<name>Default ProfileStore (In-Memory)</name>
+
+	<properties>
+        <siteBaseDir>../../../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/profilestores/dflt/</relativeUrl>
+	</properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+                <inherited>false</inherited>
+                <configuration>
+                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <inherited>false</inherited>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>dependency-convergence</report>
+                            <report>plugins</report>
+                            <report>summary</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>testsupport</artifactId>
+            <scope>test</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>metamodel</artifactId>
+            <type>test-jar</type>
+            <scope>test</scope>
+        </dependency>
+
+		<dependency>
+		    <groupId>org.apache.isis.runtimes.dflt</groupId>
+		    <artifactId>runtime</artifactId>
+		</dependency>
+		<dependency>
+		    <groupId>org.apache.isis.runtimes.dflt</groupId>
+		    <artifactId>runtime</artifactId>
+		    <type>test-jar</type>
+		    <scope>test</scope>
+		</dependency>
+	</dependencies>
+
+</project>

Modified: incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/pom.xml?rev=1134386&r1=1134385&r2=1134386&view=diff
==============================================================================
--- incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/pom.xml (original)
+++ incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/pom.xml Fri Jun 10 16:52:05 2011
@@ -1,77 +1,76 @@
-<?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.isis.runtimes</groupId>
-		<artifactId>dflt</artifactId>
-		<version>0.1.2-incubating-SNAPSHOT</version>
-	</parent>
-
-	<groupId>org.apache.isis.runtimes.dflt</groupId>
-	<artifactId>profilestores</artifactId>
-
-	<name>Default Runtime Profilestores</name>
-
-	<description>
-		Profile Store Implementations.
-	</description>
-
-	<packaging>pom</packaging>
-
-	<properties>
-        <siteBaseDir>../../..</siteBaseDir>
-		<relativeUrl>runtimes/dflt/profilestores/</relativeUrl>
-	</properties>
-
-    <!-- used in Site generation for relative references. -->
-    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
-
-	<modules>
-		<module>dflt</module>
-		<module>xml</module>
-	</modules>
-
-	<reporting>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>${maven-project-info-reports-plugin}</version>
-				<inherited>false</inherited>
-				<reportSets>
-					<reportSet>
-						<inherited>false</inherited>
-						<reports>
-                            <report>dependency-management</report>
-                            <report>plugins</report>
-							<report>modules</report>
-                            <report>summary</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-		</plugins>
-	</reporting>
-
-</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.isis.runtimes</groupId>
+		<artifactId>dflt</artifactId>
+		<version>0.1.2-RC4-incubating</version>
+	</parent>
+
+	<groupId>org.apache.isis.runtimes.dflt</groupId>
+	<artifactId>profilestores</artifactId>
+
+	<name>Default Runtime Profilestores</name>
+
+	<description>
+		Profile Store Implementations.
+	</description>
+
+	<packaging>pom</packaging>
+
+	<properties>
+        <siteBaseDir>../../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/profilestores/</relativeUrl>
+	</properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+	<modules>
+		<module>dflt</module>
+		<module>xml</module>
+	</modules>
+
+	<reporting>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+				<inherited>false</inherited>
+				<reportSets>
+					<reportSet>
+						<inherited>false</inherited>
+						<reports>
+                            <report>dependency-management</report>
+                            <report>plugins</report>
+							<report>modules</report>
+                            <report>summary</report>
+						</reports>
+					</reportSet>
+				</reportSets>
+			</plugin>
+		</plugins>
+	</reporting>
+
+</project>
+

Modified: incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/xml/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/xml/pom.xml?rev=1134386&r1=1134385&r2=1134386&view=diff
==============================================================================
--- incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/xml/pom.xml (original)
+++ incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/profilestores/xml/pom.xml Fri Jun 10 16:52:05 2011
@@ -1,102 +1,102 @@
-<?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.isis.runtimes.dflt</groupId>
-		<artifactId>profilestores</artifactId>
-		<version>0.1.2-incubating-SNAPSHOT</version>
-	</parent>
-
-	<groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
-	<artifactId>xml</artifactId>
-	<version>0.1.2-incubating-SNAPSHOT</version>
-
-	<name>Default Runtime XML ProfileStore</name>
-
-	<properties>
-        <siteBaseDir>../../../..</siteBaseDir>
-		<relativeUrl>runtimes/dflt/profilestores/xml/</relativeUrl>
-
-        <docbkxGuideTitle>Default Runtime XML ProfileStore</docbkxGuideTitle>
-        <docbkxGuideSubTitle>Configuration and Deployment Guide</docbkxGuideSubTitle>
-        <docbkxGuideName>isis-xml-profilestore</docbkxGuideName>
-    </properties>
-
-    <!-- used in Site generation for relative references. -->
-    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
-
-	<build>
-		<plugins>
-            <plugin>
-                <groupId>com.agilejava.docbkx</groupId>
-                <artifactId>docbkx-maven-plugin</artifactId>
-				<inherited>false</inherited>
-            </plugin>
-		</plugins>
-	</build>
-
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>${maven-project-info-reports-plugin}</version>
-                <inherited>false</inherited>
-                <configuration>
-                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <inherited>false</inherited>
-                        <reports>
-                            <report>dependencies</report>
-                            <report>dependency-convergence</report>
-                            <report>plugins</report>
-                            <report>summary</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-        </plugins>
-    </reporting>
-
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.isis.core</groupId>
-			<artifactId>metamodel</artifactId>
-			<type>test-jar</type>
-			<scope>test</scope>
-        </dependency>
-
-		<dependency>
-			<groupId>org.apache.isis.runtimes.dflt</groupId>
-            <artifactId>runtime</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.isis.runtimes.dflt</groupId>
-			<artifactId>runtime</artifactId>
-			<type>test-jar</type>
-			<scope>test</scope>
-		</dependency>
-	</dependencies>
-
-</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.isis.runtimes.dflt</groupId>
+		<artifactId>profilestores</artifactId>
+		<version>0.1.2-RC4-incubating</version>
+	</parent>
+
+	<groupId>org.apache.isis.runtimes.dflt.profilestores</groupId>
+	<artifactId>xml</artifactId>
+	<version>0.1.2-RC4-incubating</version>
+
+	<name>Default Runtime XML ProfileStore</name>
+
+	<properties>
+        <siteBaseDir>../../../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/profilestores/xml/</relativeUrl>
+
+        <docbkxGuideTitle>Default Runtime XML ProfileStore</docbkxGuideTitle>
+        <docbkxGuideSubTitle>Configuration and Deployment Guide</docbkxGuideSubTitle>
+        <docbkxGuideName>isis-xml-profilestore</docbkxGuideName>
+    </properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+	<build>
+		<plugins>
+            <plugin>
+                <groupId>com.agilejava.docbkx</groupId>
+                <artifactId>docbkx-maven-plugin</artifactId>
+				<inherited>false</inherited>
+            </plugin>
+		</plugins>
+	</build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+                <inherited>false</inherited>
+                <configuration>
+                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <inherited>false</inherited>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>dependency-convergence</report>
+                            <report>plugins</report>
+                            <report>summary</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.isis.core</groupId>
+			<artifactId>metamodel</artifactId>
+			<type>test-jar</type>
+			<scope>test</scope>
+        </dependency>
+
+		<dependency>
+			<groupId>org.apache.isis.runtimes.dflt</groupId>
+            <artifactId>runtime</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.isis.runtimes.dflt</groupId>
+			<artifactId>runtime</artifactId>
+			<type>test-jar</type>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+</project>

Modified: incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/common/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/common/pom.xml?rev=1134386&r1=1134385&r2=1134386&view=diff
==============================================================================
--- incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/common/pom.xml (original)
+++ incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/common/pom.xml Fri Jun 10 16:52:05 2011
@@ -1,120 +1,120 @@
-<?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.isis.runtimes.dflt</groupId>
-		<artifactId>remoting</artifactId>
-		<version>0.1.2-incubating-SNAPSHOT</version>
-	</parent>
-
-	<groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
-	<artifactId>common</artifactId>
-    <name>Default Runtime Remoting Common and APIs</name>
-
-    <!-- shouldn't be needed, but was being built as a pom for some reason -->
-    <packaging>jar</packaging>
-
-	<properties>
-        <siteBaseDir>../../../..</siteBaseDir>
-		<relativeUrl>runtimes/dflt/remoting/common/</relativeUrl>
-	</properties>
-
-    <!-- used in Site generation for relative references. -->
-    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
-
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>${maven-project-info-reports-plugin}</version>
-                <inherited>false</inherited>
-                <configuration>
-                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <inherited>false</inherited>
-                        <reports>
-                            <report>dependencies</report>
-                            <report>dependency-convergence</report>
-                            <report>plugins</report>
-                            <report>summary</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-        </plugins>
-    </reporting>
-
-	<dependencies>
-        <dependency>
-            <groupId>org.apache.isis.core</groupId>
-            <artifactId>testsupport</artifactId>
-            <scope>test</scope>
-        </dependency>
-
-		<dependency>
-			<groupId>org.apache.isis.core</groupId>
-			<artifactId>commons</artifactId>
-			<type>test-jar</type>
-			<scope>test</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.isis.core</groupId>
-            <artifactId>metamodel</artifactId>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-
-		<dependency>
-			<groupId>org.apache.isis.runtimes.dflt</groupId>
-		    <artifactId>runtime</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.isis.runtimes.dflt</groupId>
-		    <artifactId>monitoring</artifactId>
-		</dependency>
-
-
-		<dependency>
-			<groupId>org.apache.isis.runtimes.dflt</groupId>
-			<artifactId>runtime</artifactId>
-			<type>test-jar</type>
-			<scope>test</scope>
-		</dependency>
-
-        <dependency>
-            <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
-            <artifactId>identity</artifactId>
-            <scope>test</scope>
-        </dependency>
-
-        <dependency>
-            <groupId>org.easymock</groupId>
-            <artifactId>easymock</artifactId>
-            <scope>test</scope>
-        </dependency>
-	</dependencies>
-
-</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.isis.runtimes.dflt</groupId>
+		<artifactId>remoting</artifactId>
+		<version>0.1.2-RC4-incubating</version>
+	</parent>
+
+	<groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
+	<artifactId>common</artifactId>
+    <name>Default Runtime Remoting Common and APIs</name>
+
+    <!-- shouldn't be needed, but was being built as a pom for some reason -->
+    <packaging>jar</packaging>
+
+	<properties>
+        <siteBaseDir>../../../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/remoting/common/</relativeUrl>
+	</properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+                <inherited>false</inherited>
+                <configuration>
+                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <inherited>false</inherited>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>dependency-convergence</report>
+                            <report>plugins</report>
+                            <report>summary</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+	<dependencies>
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>testsupport</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+		<dependency>
+			<groupId>org.apache.isis.core</groupId>
+			<artifactId>commons</artifactId>
+			<type>test-jar</type>
+			<scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.isis.core</groupId>
+            <artifactId>metamodel</artifactId>
+            <type>test-jar</type>
+            <scope>test</scope>
+        </dependency>
+
+		<dependency>
+			<groupId>org.apache.isis.runtimes.dflt</groupId>
+		    <artifactId>runtime</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.isis.runtimes.dflt</groupId>
+		    <artifactId>monitoring</artifactId>
+		</dependency>
+
+
+		<dependency>
+			<groupId>org.apache.isis.runtimes.dflt</groupId>
+			<artifactId>runtime</artifactId>
+			<type>test-jar</type>
+			<scope>test</scope>
+		</dependency>
+
+        <dependency>
+            <groupId>org.apache.isis.runtimes.dflt.bytecode</groupId>
+            <artifactId>identity</artifactId>
+            <scope>test</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>test</scope>
+        </dependency>
+	</dependencies>
+
+</project>

Modified: incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/marshalling-encode/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/marshalling-encode/pom.xml?rev=1134386&r1=1134385&r2=1134386&view=diff
==============================================================================
--- incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/marshalling-encode/pom.xml (original)
+++ incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/marshalling-encode/pom.xml Fri Jun 10 16:52:05 2011
@@ -1,73 +1,73 @@
-<?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.isis.runtimes.dflt</groupId>
-		<artifactId>remoting</artifactId>
-		<version>0.1.2-incubating-SNAPSHOT</version>
-	</parent>
-
-	<groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
-	<artifactId>marshalling-encode</artifactId>
-    <name>Default Runtime Encodeable Marshalling</name>
-
-	<properties>
-        <siteBaseDir>../../../..</siteBaseDir>
-		<relativeUrl>runtimes/dflt/remoting/marshalling-encode/</relativeUrl>
-	</properties>
-
-    <!-- used in Site generation for relative references. -->
-    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
-
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>${maven-project-info-reports-plugin}</version>
-                <inherited>false</inherited>
-                <configuration>
-                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <inherited>false</inherited>
-                        <reports>
-                            <report>dependencies</report>
-                            <report>dependency-convergence</report>
-                            <report>plugins</report>
-                            <report>summary</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-        </plugins>
-    </reporting>
-
-	<dependencies>
-        <dependency>
-            <groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
-            <artifactId>common</artifactId>
-        </dependency>
-	</dependencies>
-
-</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.isis.runtimes.dflt</groupId>
+		<artifactId>remoting</artifactId>
+		<version>0.1.2-RC4-incubating</version>
+	</parent>
+
+	<groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
+	<artifactId>marshalling-encode</artifactId>
+    <name>Default Runtime Encodeable Marshalling</name>
+
+	<properties>
+        <siteBaseDir>../../../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/remoting/marshalling-encode/</relativeUrl>
+	</properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+                <inherited>false</inherited>
+                <configuration>
+                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <inherited>false</inherited>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>dependency-convergence</report>
+                            <report>plugins</report>
+                            <report>summary</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+	<dependencies>
+        <dependency>
+            <groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
+            <artifactId>common</artifactId>
+        </dependency>
+	</dependencies>
+
+</project>

Modified: incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/marshalling-serialize/pom.xml
URL: http://svn.apache.org/viewvc/incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/marshalling-serialize/pom.xml?rev=1134386&r1=1134385&r2=1134386&view=diff
==============================================================================
--- incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/marshalling-serialize/pom.xml (original)
+++ incubator/isis/branches/0.1.2-RC4-incubating/trunk/runtimes/dflt/remoting/marshalling-serialize/pom.xml Fri Jun 10 16:52:05 2011
@@ -1,73 +1,73 @@
-<?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.isis.runtimes.dflt</groupId>
-		<artifactId>remoting</artifactId>
-		<version>0.1.2-incubating-SNAPSHOT</version>
-	</parent>
-
-	<groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
-	<artifactId>marshalling-serialize</artifactId>
-    <name>Default Runtime Serializable Marshalling</name>
-
-	<properties>
-        <siteBaseDir>../../../..</siteBaseDir>
-		<relativeUrl>runtimes/dflt/remoting/marshalling-serialize/</relativeUrl>
-	</properties>
-
-    <!-- used in Site generation for relative references. -->
-    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
-
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-project-info-reports-plugin</artifactId>
-				<version>${maven-project-info-reports-plugin}</version>
-                <inherited>false</inherited>
-                <configuration>
-                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <inherited>false</inherited>
-                        <reports>
-                            <report>dependencies</report>
-                            <report>dependency-convergence</report>
-                            <report>plugins</report>
-                            <report>summary</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-        </plugins>
-    </reporting>
-
-	<dependencies>
-        <dependency>
-            <groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
-            <artifactId>common</artifactId>
-        </dependency>
-	</dependencies>
-
-</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.isis.runtimes.dflt</groupId>
+		<artifactId>remoting</artifactId>
+		<version>0.1.2-RC4-incubating</version>
+	</parent>
+
+	<groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
+	<artifactId>marshalling-serialize</artifactId>
+    <name>Default Runtime Serializable Marshalling</name>
+
+	<properties>
+        <siteBaseDir>../../../..</siteBaseDir>
+		<relativeUrl>runtimes/dflt/remoting/marshalling-serialize/</relativeUrl>
+	</properties>
+
+    <!-- used in Site generation for relative references. -->
+    <url>http://incubator.apache.org/isis/${relativeUrl}</url>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+				<version>${maven-project-info-reports-plugin}</version>
+                <inherited>false</inherited>
+                <configuration>
+                	<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <inherited>false</inherited>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>dependency-convergence</report>
+                            <report>plugins</report>
+                            <report>summary</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+        </plugins>
+    </reporting>
+
+	<dependencies>
+        <dependency>
+            <groupId>org.apache.isis.runtimes.dflt.remoting</groupId>
+            <artifactId>common</artifactId>
+        </dependency>
+	</dependencies>
+
+</project>