You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cu...@apache.org on 2012/04/13 21:58:22 UTC

svn commit: r1325930 [2/2] - in /aries/branches/1.0-prototype: application/application-modeller-standalone/pom.xml ejb/ejb-modeller-itest/pom.xml ejb/ejb-modeller/pom.xml ejb/openejb-extender-itest/pom.xml ejb/openejb-extender/pom.xml ejb/pom.xml

Modified: aries/branches/1.0-prototype/ejb/openejb-extender/pom.xml
URL: http://svn.apache.org/viewvc/aries/branches/1.0-prototype/ejb/openejb-extender/pom.xml?rev=1325930&r1=1325929&r2=1325930&view=diff
==============================================================================
--- aries/branches/1.0-prototype/ejb/openejb-extender/pom.xml (original)
+++ aries/branches/1.0-prototype/ejb/openejb-extender/pom.xml Fri Apr 13 19:58:21 2012
@@ -1,144 +1,144 @@
-<?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">
-    <parent>
-        <groupId>org.apache.aries</groupId>
-        <artifactId>java5-parent</artifactId>
-        <version>1.0.0-SNAPSHOT</version>
-        <relativePath />
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.aries.ejb</groupId>
-    <artifactId>org.apache.aries.ejb.openejb.extender</artifactId>
-    <packaging>bundle</packaging>
-    <name>Aries OpenEJB Runtime Extender</name>
-    <version>0.1-SNAPSHOT</version>
-
-     <scm>
-         <connection>scm:svn:http://svn.apache.org/repos/asf/aries/trunk/ejb/openejb-extender</connection>
-         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/aries/trunk/ejb/openejb-extender</developerConnection>
-         <url>http://svn.apache.org/viewvc/aries/trunk/ejb/openejb-extender</url>
-     </scm>
-
-    <properties>
-		<aries.osgi.export/>
-		<aries.osgi.import>
-		  org.apache.aries.jpa.container.context;resolution:=optional,
-		  *
-		</aries.osgi.import>
-        <aries.osgi.private.pkg>
-          org.apache.aries.ejb.*
-        </aries.osgi.private.pkg>
-		<aries.osgi.activator>
-          org.apache.aries.ejb.openejb.extender.EJBExtender
-        </aries.osgi.activator>
-    </properties>
-
-    <dependencies>
-    	<dependency>
-    		<groupId>org.apache.aries</groupId>
-    		<artifactId>org.apache.aries.util</artifactId>
-    		<version>1.0.0-SNAPSHOT</version>
-    	</dependency>
-    	<dependency>
-    		<groupId>org.apache.openejb</groupId>
-    		<artifactId>openejb-core</artifactId>
-    		<version>4.0.0-beta-1</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.apache.openejb</groupId>
-                    <artifactId>javaee-api</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.slf4j</groupId>
-                    <artifactId>slf4j-log4j12</artifactId>
-                </exclusion>
-            </exclusions>
-    	</dependency>
-    	<dependency>
-    		<groupId>org.osgi</groupId>
-    		<artifactId>org.osgi.core</artifactId>
-    		<version>4.3.0</version>
-    		<scope>provided</scope>
-    	</dependency>
-        <dependency>
-        	<groupId>org.osgi</groupId>
-        	<artifactId>org.osgi.compendium</artifactId>
-        	<scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-simple</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.aries.testsupport</groupId>
-        	<artifactId>org.apache.aries.testsupport.unit</artifactId>
-        	<version>1.0.0-SNAPSHOT</version>
-        	<scope>test</scope>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.geronimo.specs</groupId>
-        	<artifactId>geronimo-jpa_2.0_spec</artifactId>
-        	<version>1.1</version>
-        	<scope>provided</scope>
-        </dependency>
-        <!--<dependency>-->
-        	<!--<groupId>org.apache.geronimo.specs</groupId>-->
-        	<!--<artifactId>geronimo-annotation_1.1_spec</artifactId>-->
-        	<!--<version>1.0.1</version>-->
-        	<!--<scope>test</scope>-->
-        <!--</dependency>-->
-        <!--<dependency>-->
-        	<!--<groupId>org.apache.geronimo.specs</groupId>-->
-        	<!--<artifactId>geronimo-validation_1.0_spec</artifactId>-->
-        	<!--<version>1.1</version>-->
-        	<!--<scope>test</scope>-->
-        <!--</dependency>-->
-        <dependency>
-        	<groupId>org.apache.geronimo.specs</groupId>
-        	<artifactId>geronimo-jta_1.1_spec</artifactId>
-        	<version>1.1.1</version>
-        	<scope>provided</scope>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.geronimo.specs</groupId>
-        	<artifactId>geronimo-ejb_3.1_spec</artifactId>
-        	<version>1.0.2</version>
-        	<scope>provided</scope>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.aries.proxy</groupId>
-        	<artifactId>org.apache.aries.proxy.api</artifactId>
-        	<version>1.0.0-SNAPSHOT</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.aries.jpa</groupId>
-        	<artifactId>org.apache.aries.jpa.api</artifactId>
-        	<version>1.0.0-SNAPSHOT</version>
-        </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">
+    <parent>
+        <groupId>org.apache.aries</groupId>
+        <artifactId>java5-parent</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+        <relativePath />
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.aries.ejb</groupId>
+    <artifactId>org.apache.aries.ejb.openejb.extender</artifactId>
+    <packaging>bundle</packaging>
+    <name>Aries OpenEJB Runtime Extender</name>
+    <version>1.0.0-SNAPSHOT</version>
+
+     <scm>
+         <connection>scm:svn:http://svn.apache.org/repos/asf/aries/trunk/ejb/openejb-extender</connection>
+         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/aries/trunk/ejb/openejb-extender</developerConnection>
+         <url>http://svn.apache.org/viewvc/aries/trunk/ejb/openejb-extender</url>
+     </scm>
+
+    <properties>
+		<aries.osgi.export />
+		<aries.osgi.import>
+		  org.apache.aries.jpa.container.context;resolution:=optional,
+		  *
+		</aries.osgi.import>
+        <aries.osgi.private.pkg>
+          org.apache.aries.ejb.*
+        </aries.osgi.private.pkg>
+		<aries.osgi.activator>
+          org.apache.aries.ejb.openejb.extender.EJBExtender
+        </aries.osgi.activator>
+    </properties>
+
+    <dependencies>
+    	<dependency>
+    		<groupId>org.apache.aries</groupId>
+    		<artifactId>org.apache.aries.util</artifactId>
+    		<version>1.0.0-SNAPSHOT</version>
+    	</dependency>
+    	<dependency>
+    		<groupId>org.apache.openejb</groupId>
+    		<artifactId>openejb-core</artifactId>
+    		<version>4.0.0-beta-1</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.openejb</groupId>
+                    <artifactId>javaee-api</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.slf4j</groupId>
+                    <artifactId>slf4j-log4j12</artifactId>
+                </exclusion>
+            </exclusions>
+    	</dependency>
+    	<dependency>
+    		<groupId>org.osgi</groupId>
+    		<artifactId>org.osgi.core</artifactId>
+    		<version>4.3.0</version>
+    		<scope>provided</scope>
+    	</dependency>
+        <dependency>
+        	<groupId>org.osgi</groupId>
+        	<artifactId>org.osgi.compendium</artifactId>
+        	<scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.aries.testsupport</groupId>
+        	<artifactId>org.apache.aries.testsupport.unit</artifactId>
+        	<version>1.0.0-SNAPSHOT</version>
+        	<scope>test</scope>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.geronimo.specs</groupId>
+        	<artifactId>geronimo-jpa_2.0_spec</artifactId>
+        	<version>1.1</version>
+        	<scope>provided</scope>
+        </dependency>
+        <!--<dependency>-->
+        	<!--<groupId>org.apache.geronimo.specs</groupId>-->
+        	<!--<artifactId>geronimo-annotation_1.1_spec</artifactId>-->
+        	<!--<version>1.0.1</version>-->
+        	<!--<scope>test</scope>-->
+        <!--</dependency>-->
+        <!--<dependency>-->
+        	<!--<groupId>org.apache.geronimo.specs</groupId>-->
+        	<!--<artifactId>geronimo-validation_1.0_spec</artifactId>-->
+        	<!--<version>1.1</version>-->
+        	<!--<scope>test</scope>-->
+        <!--</dependency>-->
+        <dependency>
+        	<groupId>org.apache.geronimo.specs</groupId>
+        	<artifactId>geronimo-jta_1.1_spec</artifactId>
+        	<version>1.1.1</version>
+        	<scope>provided</scope>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.geronimo.specs</groupId>
+        	<artifactId>geronimo-ejb_3.1_spec</artifactId>
+        	<version>1.0.2</version>
+        	<scope>provided</scope>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.aries.proxy</groupId>
+        	<artifactId>org.apache.aries.proxy.api</artifactId>
+        	<version>1.0.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.aries.jpa</groupId>
+        	<artifactId>org.apache.aries.jpa.api</artifactId>
+        	<version>1.0.0-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+
+</project>

Modified: aries/branches/1.0-prototype/ejb/pom.xml
URL: http://svn.apache.org/viewvc/aries/branches/1.0-prototype/ejb/pom.xml?rev=1325930&r1=1325929&r2=1325930&view=diff
==============================================================================
--- aries/branches/1.0-prototype/ejb/pom.xml (original)
+++ aries/branches/1.0-prototype/ejb/pom.xml Fri Apr 13 19:58:21 2012
@@ -1,46 +1,46 @@
-<?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">
-    <parent>
-        <artifactId>java5-parent</artifactId>
-        <groupId>org.apache.aries</groupId>
-        <version>1.0.0-SNAPSHOT</version>
-        <relativePath />
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <groupId>org.apache.aries.ejb</groupId>
-    <version>0.1-SNAPSHOT</version>
-    <artifactId>ejb</artifactId>
-    <packaging>pom</packaging>
-    <name>Aries EJB Component</name>
-
-    <properties>
-      <openWebBeansVersion>1.1.1</openWebBeansVersion>
-      <xbeansVersion>3.8</xbeansVersion>
-    </properties>
-    
-    <modules>
-        <module>ejb-modeller</module>
-        <module>ejb-modeller-itest</module>
-        <module>openejb-extender</module>
-        <module>openejb-extender-itest</module>
-    </modules>
-
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+    
+     http://www.apache.org/licenses/LICENSE-2.0
+    
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <parent>
+        <artifactId>java5-parent</artifactId>
+        <groupId>org.apache.aries</groupId>
+        <version>1.0.0-SNAPSHOT</version>
+        <relativePath />
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.aries.ejb</groupId>
+    <version>1.0.0-SNAPSHOT</version>
+    <artifactId>ejb</artifactId>
+    <packaging>pom</packaging>
+    <name>Aries EJB Component</name>
+
+    <properties>
+      <openWebBeansVersion>1.1.1</openWebBeansVersion>
+      <xbeansVersion>3.8</xbeansVersion>
+    </properties>
+    
+    <modules>
+        <module>ejb-modeller</module>
+        <module>ejb-modeller-itest</module>
+        <module>openejb-extender</module>
+        <module>openejb-extender-itest</module>
+    </modules>
+
+</project>