[jboss-cvs] JBossAS SVN: r100798 - in projects/ejb3/components/singleton/trunk: aop-impl and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Feb 10 06:52:51 EST 2010


Author: jaikiran
Date: 2010-02-10 06:52:51 -0500 (Wed, 10 Feb 2010)
New Revision: 100798

Added:
   projects/ejb3/components/singleton/trunk/aop-impl/
   projects/ejb3/components/singleton/trunk/aop-impl/pom.xml
   projects/ejb3/components/singleton/trunk/aop-impl/src/
Removed:
   projects/ejb3/components/singleton/trunk/legacy-container-integration/pom.xml
   projects/ejb3/components/singleton/trunk/legacy-container-integration/src/
Modified:
   projects/ejb3/components/singleton/trunk/pom.xml
Log:
EJBTHREE-2010 Renamed the legacy-container-int module to aop-impl

Copied: projects/ejb3/components/singleton/trunk/aop-impl/pom.xml (from rev 100797, projects/ejb3/components/singleton/trunk/legacy-container-integration/pom.xml)
===================================================================
--- projects/ejb3/components/singleton/trunk/aop-impl/pom.xml	                        (rev 0)
+++ projects/ejb3/components/singleton/trunk/aop-impl/pom.xml	2010-02-10 11:52:51 UTC (rev 100798)
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="UTF-8"?>
+    <!--
+    vi:ts=2:sw=2:expandtab:
+    -->
+<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.jboss.ejb3.singleton</groupId>
+        <artifactId>jboss-ejb3-singleton-build</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+        <relativePath>../build/pom.xml</relativePath>
+    </parent>
+    
+    <!-- Model Information -->
+    <modelVersion>4.0.0</modelVersion>
+
+    <!-- Artifact Information  -->
+    <groupId>org.jboss.ejb3.singleton</groupId>
+    <artifactId>jboss-ejb3-singleton-aop-impl</artifactId>
+    <packaging>jar</packaging>
+    <name>JBoss EJB3.1 @Singleton container AOP implementation</name>
+    <url>http://www.jboss.org</url>
+    <description>An AOP based (delegating) implementation of the singleton container</description>
+    
+    <properties>
+        <version.ejb3.singleton.impl>${project.version}</version.ejb3.singleton.impl>
+	    <version.ejb3.core>1.2.0</version.ejb3.core>
+    </properties>
+    
+    <dependencies>
+        
+        <dependency>
+            <groupId>org.jboss.ejb3.singleton</groupId>
+            <artifactId>jboss-ejb3-singleton-impl</artifactId>
+            <version>${version.ejb3.singleton.impl}</version>
+        </dependency>
+	
+	<dependency>
+		<groupId>org.jboss.ejb3</groupId>
+		<artifactId>jboss-ejb3-core</artifactId>
+		<version>${version.ejb3.core}</version>
+	</dependency>
+
+        
+        <!-- ***************************** -->
+        <!--  Test dependencies -->
+        <!-- ***************************** -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+        </dependency>
+        
+        <!-- Get rid of this! it's required for ServiceMBeanSupport class
+            which is being extended by EJB3Deployment -->
+        <dependency>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-system-jmx</artifactId>
+          <version>5.1.0.GA</version>
+          <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.jboss.microcontainer</groupId>
+                    <artifactId>jboss-kernel</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.jboss.man</groupId>
+                    <artifactId>jboss-managed</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.jboss.man</groupId>
+                    <artifactId>jboss-metatype</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.jboss</groupId>
+                    <artifactId>jboss-vfs</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        
+        <!-- this needs to be removed - EJBTHREE-1343 -->
+        <dependency>
+          <groupId>org.jboss.jbossas</groupId>
+          <artifactId>jboss-as-server</artifactId>
+          <version>5.1.0.GA</version>
+          <exclusions>
+            <exclusion>
+              <groupId>jboss</groupId>
+              <artifactId>jboss-remoting</artifactId>
+            </exclusion>
+            <!-- jboss-as-server must not dictate the JPA API -->
+            <exclusion>
+              <groupId>org.hibernate</groupId>
+              <artifactId>ejb3-persistence</artifactId>
+            </exclusion>
+            <exclusion>
+              <groupId>org.jboss</groupId>
+              <artifactId>jboss-metadata</artifactId>
+            </exclusion>
+            <exclusion>
+              <groupId>org.jboss.jbossas</groupId>
+              <artifactId>jboss-as-security</artifactId>
+            </exclusion>
+            <!-- Conflicts with org.jboss.security:jbosssx -->
+            <exclusion>
+              <groupId>org.jboss.security</groupId>
+              <artifactId>jbosssx-client</artifactId>
+            </exclusion>
+            <exclusion>
+              <groupId>org.jboss.ws.native</groupId>
+              <artifactId>jbossws-native-jaxws</artifactId>
+            </exclusion>
+          </exclusions>
+          <scope>test</scope>
+        </dependency>
+    
+    </dependencies>
+
+</project>	
\ No newline at end of file

Copied: projects/ejb3/components/singleton/trunk/aop-impl/src (from rev 100797, projects/ejb3/components/singleton/trunk/legacy-container-integration/src)

Deleted: projects/ejb3/components/singleton/trunk/legacy-container-integration/pom.xml
===================================================================
--- projects/ejb3/components/singleton/trunk/legacy-container-integration/pom.xml	2010-02-10 11:42:43 UTC (rev 100797)
+++ projects/ejb3/components/singleton/trunk/legacy-container-integration/pom.xml	2010-02-10 11:52:51 UTC (rev 100798)
@@ -1,121 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-    <!--
-    vi:ts=2:sw=2:expandtab:
-    -->
-<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.jboss.ejb3.singleton</groupId>
-        <artifactId>jboss-ejb3-singleton-build</artifactId>
-        <version>1.0.0-SNAPSHOT</version>
-        <relativePath>../build/pom.xml</relativePath>
-    </parent>
-    
-    <!-- Model Information -->
-    <modelVersion>4.0.0</modelVersion>
-
-    <!-- Artifact Information  -->
-    <groupId>org.jboss.ejb3.singleton</groupId>
-    <artifactId>jboss-ejb3-singleton-legacy-container-int</artifactId>
-    <packaging>jar</packaging>
-    <name>JBoss EJB3.1 @Singleton container integration with the AOP based containers</name>
-    <url>http://www.jboss.org</url>
-    <description>An integration of the new jboss-ejb3-singleton-spi based singleton container with the
-    older AOP based containers</description>
-    
-    <properties>
-        <version.ejb3.singleton.impl>${project.version}</version.ejb3.singleton.impl>
-	    <version.ejb3.core>1.2.0</version.ejb3.core>
-    </properties>
-    
-    <dependencies>
-        
-        <dependency>
-            <groupId>org.jboss.ejb3.singleton</groupId>
-            <artifactId>jboss-ejb3-singleton-impl</artifactId>
-            <version>${version.ejb3.singleton.impl}</version>
-        </dependency>
-	
-	<dependency>
-		<groupId>org.jboss.ejb3</groupId>
-		<artifactId>jboss-ejb3-core</artifactId>
-		<version>${version.ejb3.core}</version>
-	</dependency>
-
-        
-        <!-- ***************************** -->
-        <!--  Test dependencies -->
-        <!-- ***************************** -->
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-        </dependency>
-        
-        <!-- Get rid of this! it's required for ServiceMBeanSupport class
-            which is being extended by EJB3Deployment -->
-        <dependency>
-          <groupId>org.jboss.jbossas</groupId>
-          <artifactId>jboss-as-system-jmx</artifactId>
-          <version>5.1.0.GA</version>
-          <scope>test</scope>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.jboss.microcontainer</groupId>
-                    <artifactId>jboss-kernel</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.jboss.man</groupId>
-                    <artifactId>jboss-managed</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.jboss.man</groupId>
-                    <artifactId>jboss-metatype</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.jboss</groupId>
-                    <artifactId>jboss-vfs</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        
-        <!-- this needs to be removed - EJBTHREE-1343 -->
-        <dependency>
-          <groupId>org.jboss.jbossas</groupId>
-          <artifactId>jboss-as-server</artifactId>
-          <version>5.1.0.GA</version>
-          <exclusions>
-            <exclusion>
-              <groupId>jboss</groupId>
-              <artifactId>jboss-remoting</artifactId>
-            </exclusion>
-            <!-- jboss-as-server must not dictate the JPA API -->
-            <exclusion>
-              <groupId>org.hibernate</groupId>
-              <artifactId>ejb3-persistence</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>org.jboss</groupId>
-              <artifactId>jboss-metadata</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>org.jboss.jbossas</groupId>
-              <artifactId>jboss-as-security</artifactId>
-            </exclusion>
-            <!-- Conflicts with org.jboss.security:jbosssx -->
-            <exclusion>
-              <groupId>org.jboss.security</groupId>
-              <artifactId>jbosssx-client</artifactId>
-            </exclusion>
-            <exclusion>
-              <groupId>org.jboss.ws.native</groupId>
-              <artifactId>jbossws-native-jaxws</artifactId>
-            </exclusion>
-          </exclusions>
-          <scope>test</scope>
-        </dependency>
-    
-    </dependencies>
-
-</project>	
\ No newline at end of file

Modified: projects/ejb3/components/singleton/trunk/pom.xml
===================================================================
--- projects/ejb3/components/singleton/trunk/pom.xml	2010-02-10 11:42:43 UTC (rev 100797)
+++ projects/ejb3/components/singleton/trunk/pom.xml	2010-02-10 11:52:51 UTC (rev 100798)
@@ -42,9 +42,9 @@
     <modules>
         <!--  Order matters -->
         <module>build</module>
-	<module>spi</module>
+	    <module>spi</module>
         <module>impl</module>
-	<module>legacy-container-integration</module>
+	    <module>aop-impl</module>
     </modules>
 
 </project>




More information about the jboss-cvs-commits mailing list