You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@labs.apache.org by si...@apache.org on 2009/04/23 02:50:57 UTC

svn commit: r767746 - in /labs/magma/trunk: database-jpa/ foundation-beans-view/ foundation-database/ foundation-i18n/ foundation-website/ fragment-content-web/ jobs-simple/ magma-domain-archetype/src/main/resources/archetype-resources/

Author: simoneg
Date: Thu Apr 23 00:50:56 2009
New Revision: 767746

URL: http://svn.apache.org/viewvc?rev=767746&view=rev
Log:
LABS-351 : removing references to foundation-conversion

Modified:
    labs/magma/trunk/database-jpa/pom.xml
    labs/magma/trunk/foundation-beans-view/pom.xml
    labs/magma/trunk/foundation-database/pom.xml
    labs/magma/trunk/foundation-i18n/pom.xml
    labs/magma/trunk/foundation-website/pom.xml
    labs/magma/trunk/fragment-content-web/pom.xml
    labs/magma/trunk/jobs-simple/pom.xml
    labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/pom.xml

Modified: labs/magma/trunk/database-jpa/pom.xml
URL: http://svn.apache.org/viewvc/labs/magma/trunk/database-jpa/pom.xml?rev=767746&r1=767745&r2=767746&view=diff
==============================================================================
--- labs/magma/trunk/database-jpa/pom.xml (original)
+++ labs/magma/trunk/database-jpa/pom.xml Thu Apr 23 00:50:56 2009
@@ -40,7 +40,7 @@
 		</dependency>
 		<dependency>
 			<groupId>org.apache.magma</groupId>
-			<artifactId>foundation-conversion</artifactId>
+			<artifactId>foundation-beans</artifactId>
 			<version>0.0.2-SNAPSHOT</version>
 		</dependency>
 		<dependency>

Modified: labs/magma/trunk/foundation-beans-view/pom.xml
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-beans-view/pom.xml?rev=767746&r1=767745&r2=767746&view=diff
==============================================================================
--- labs/magma/trunk/foundation-beans-view/pom.xml (original)
+++ labs/magma/trunk/foundation-beans-view/pom.xml Thu Apr 23 00:50:56 2009
@@ -42,10 +42,5 @@
 			<version>4.4</version>
 			<scope>test</scope>
 		</dependency>
-	  <dependency>
-      <groupId>org.apache.magma</groupId>
-      <artifactId>foundation-conversion</artifactId>
-      <version>0.0.2-SNAPSHOT</version>
-    </dependency>
   </dependencies>
 </project>

Modified: labs/magma/trunk/foundation-database/pom.xml
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-database/pom.xml?rev=767746&r1=767745&r2=767746&view=diff
==============================================================================
--- labs/magma/trunk/foundation-database/pom.xml (original)
+++ labs/magma/trunk/foundation-database/pom.xml Thu Apr 23 00:50:56 2009
@@ -1,25 +1,27 @@
 <?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
+	<!--
+		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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+		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
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 	<modelVersion>4.0.0</modelVersion>
 	<parent>
-	  <groupId>org.apache.magma</groupId>
-	  <artifactId>magma-parent</artifactId>
-	  <version>2</version>
+		<groupId>org.apache.magma</groupId>
+		<artifactId>magma-parent</artifactId>
+		<version>2</version>
 	</parent>
 	<groupId>org.apache.magma</groupId>
 	<artifactId>foundation-database</artifactId>
@@ -39,22 +41,17 @@
 			<groupId>org.apache.geronimo.specs</groupId>
 			<artifactId>geronimo-jpa_3.0_spec</artifactId>
 			<version>1.0</version>
-		</dependency>		
+		</dependency>
 		<dependency>
 			<groupId>junit</groupId>
 			<artifactId>junit</artifactId>
 			<version>4.4</version>
 			<scope>test</scope>
 		</dependency>
-	  <dependency>
-      <groupId>org.apache.magma</groupId>
-      <artifactId>foundation-validation</artifactId>
-      <version>0.0.2-SNAPSHOT</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.magma</groupId>
-      <artifactId>foundation-conversion</artifactId>
-      <version>0.0.2-SNAPSHOT</version>
-    </dependency>
-  </dependencies>
+		<dependency>
+			<groupId>org.apache.magma</groupId>
+			<artifactId>foundation-validation</artifactId>
+			<version>0.0.2-SNAPSHOT</version>
+		</dependency>
+	</dependencies>
 </project>
\ No newline at end of file

Modified: labs/magma/trunk/foundation-i18n/pom.xml
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-i18n/pom.xml?rev=767746&r1=767745&r2=767746&view=diff
==============================================================================
--- labs/magma/trunk/foundation-i18n/pom.xml (original)
+++ labs/magma/trunk/foundation-i18n/pom.xml Thu Apr 23 00:50:56 2009
@@ -21,7 +21,7 @@
     </dependency>
     <dependency>
       <groupId>org.apache.magma</groupId>
-      <artifactId>foundation-conversion</artifactId>
+      <artifactId>foundation-beans</artifactId>
       <version>0.0.2-SNAPSHOT</version>
     </dependency>
     <dependency>

Modified: labs/magma/trunk/foundation-website/pom.xml
URL: http://svn.apache.org/viewvc/labs/magma/trunk/foundation-website/pom.xml?rev=767746&r1=767745&r2=767746&view=diff
==============================================================================
--- labs/magma/trunk/foundation-website/pom.xml (original)
+++ labs/magma/trunk/foundation-website/pom.xml Thu Apr 23 00:50:56 2009
@@ -46,7 +46,7 @@
 		</dependency>
 		<dependency>
 			<groupId>org.apache.magma</groupId>
-			<artifactId>foundation-conversion</artifactId>
+			<artifactId>foundation-beans</artifactId>
 			<version>0.0.2-SNAPSHOT</version>
 		</dependency>
 		<dependency>

Modified: labs/magma/trunk/fragment-content-web/pom.xml
URL: http://svn.apache.org/viewvc/labs/magma/trunk/fragment-content-web/pom.xml?rev=767746&r1=767745&r2=767746&view=diff
==============================================================================
--- labs/magma/trunk/fragment-content-web/pom.xml (original)
+++ labs/magma/trunk/fragment-content-web/pom.xml Thu Apr 23 00:50:56 2009
@@ -22,11 +22,6 @@
 			<artifactId>foundation-website</artifactId>
 			<version>0.0.2-SNAPSHOT</version>
 		</dependency>
-  		<dependency>
-			<groupId>org.apache.magma</groupId>
-			<artifactId>foundation-beans</artifactId>
-			<version>0.0.2-SNAPSHOT</version>
-		</dependency>
 		<dependency>
 			<groupId>org.apache.magma</groupId>
 			<artifactId>foundation-beans-view</artifactId>
@@ -48,22 +43,6 @@
 			<version>0.0.2-SNAPSHOT</version>
 		</dependency>
 		<dependency>
-			<groupId>org.apache.magma</groupId>
-			<artifactId>foundation-conversion</artifactId>
-			<version>0.0.2-SNAPSHOT</version>
-		</dependency>	
-		<dependency>
-			<groupId>org.apache.magma</groupId>
-			<artifactId>foundation-validation</artifactId>
-			<version>0.0.2-SNAPSHOT</version>
-		</dependency>	
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<version>4.4</version>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
 	      <groupId>org.apache.magma</groupId>
 	      <artifactId>website-administration</artifactId>
 	      <version>0.0.2-SNAPSHOT</version>

Modified: labs/magma/trunk/jobs-simple/pom.xml
URL: http://svn.apache.org/viewvc/labs/magma/trunk/jobs-simple/pom.xml?rev=767746&r1=767745&r2=767746&view=diff
==============================================================================
--- labs/magma/trunk/jobs-simple/pom.xml (original)
+++ labs/magma/trunk/jobs-simple/pom.xml Thu Apr 23 00:50:56 2009
@@ -20,7 +20,7 @@
     </dependency>
     <dependency>
       <groupId>org.apache.magma</groupId>
-      <artifactId>foundation-conversion</artifactId>
+      <artifactId>foundation-beans</artifactId>
       <version>0.0.2-SNAPSHOT</version>
     </dependency>
     <dependency>

Modified: labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/pom.xml?rev=767746&r1=767745&r2=767746&view=diff
==============================================================================
--- labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/pom.xml (original)
+++ labs/magma/trunk/magma-domain-archetype/src/main/resources/archetype-resources/pom.xml Thu Apr 23 00:50:56 2009
@@ -34,11 +34,6 @@
 		</dependency>
 		<dependency>
 			<groupId>org.apache.magma</groupId>
-			<artifactId>foundation-conversion</artifactId>
-			<version>0.0.2-SNAPSHOT</version>
-		</dependency>	
-		<dependency>
-			<groupId>org.apache.magma</groupId>
 			<artifactId>foundation-validation</artifactId>
 			<version>0.0.2-SNAPSHOT</version>
 		</dependency>	



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org
For additional commands, e-mail: commits-help@labs.apache.org