[jboss-cvs] JBossAS SVN: r67745 - projects/ejb3/trunk/ejb3-impl.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Dec 2 18:17:59 EST 2007


Author: ALRubinger
Date: 2007-12-02 18:17:59 -0500 (Sun, 02 Dec 2007)
New Revision: 67745

Modified:
   projects/ejb3/trunk/ejb3-impl/
   projects/ejb3/trunk/ejb3-impl/pom.xml
Log:
[EJBTHREE-1134][JBAS-5032] Updated POM in preparation for release, added 'target' to svn:ignore


Property changes on: projects/ejb3/trunk/ejb3-impl
___________________________________________________________________
Name: svn:ignore
   + target/


Modified: projects/ejb3/trunk/ejb3-impl/pom.xml
===================================================================
--- projects/ejb3/trunk/ejb3-impl/pom.xml	2007-12-02 22:27:15 UTC (rev 67744)
+++ projects/ejb3/trunk/ejb3-impl/pom.xml	2007-12-02 23:17:59 UTC (rev 67745)
@@ -1,49 +1,109 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <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">
+   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>jboss-ejb3</artifactId>
-		<groupId>org.jboss.ejb3</groupId>
-		<version>0.11.0-SNAPSHOT</version>
-		<relativePath>../build/pom.xml</relativePath>
-	</parent>
+   <!-- Define Parent -->
+   <parent>
 
-	<modelVersion>4.0.0</modelVersion>
-	<groupId>org.jboss.ejb3</groupId>
-	<artifactId>jboss-ejb3-impl</artifactId>
-	<name>JBoss EJB 3 Implementation Classes</name>
+      <groupId>org.jboss</groupId>
+      <artifactId>jboss-parent</artifactId>
+      <version>3</version>
 
-	<version>0.1.1-SNAPSHOT</version>
-	<description>
-		JBoss EJB 3 Implementation Internals conforming to API
-	</description>
-	<url>http://labs.jboss.com/jbossejb3/</url>
+      <!-- 
+         <artifactId>jboss-ejb3</artifactId>
+         <groupId>org.jboss.ejb3</groupId>
+         <version>0.11.0-SNAPSHOT</version>
+         <relativePath>../build/pom.xml</relativePath>
+      -->
+   </parent>
 
-	<scm>
-		<connection>
-			scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/trunk/
-		</connection>
-		<developerConnection>
-			scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb/trunk/
-		</developerConnection>
-		<url>
-			http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/projects/ejb3/trunk/
-		</url>
-	</scm>
+   <!-- Maven POM Model Version -->
+   <modelVersion>4.0.0</modelVersion>
 
-	<dependencies>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-			<scope>test</scope>
-		</dependency>
-		<dependency>
-			<groupId>org.jboss.ejb3</groupId>
-			<artifactId>jboss-ejb3-ext-api</artifactId>
-			<version>0.1.1-SNAPSHOT</version>
-		</dependency>
-	</dependencies>
+   <!-- Artifact Information -->
+   <groupId>org.jboss.ejb3</groupId>
+   <artifactId>jboss-ejb3-impl</artifactId>
+   <version>0.1.1-SNAPSHOT</version>
+   <name>JBoss EJB 3 Implementation Classes</name>
+   <description>
+      JBoss EJB 3 Implementation Internals conforming to API
+   </description>
+   <url>http://labs.jboss.com/jbossejb3/</url>
 
+   <!-- SCM -->
+   <scm>
+      <connection>
+         scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/trunk/
+      </connection>
+      <developerConnection>
+         scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb/trunk/
+      </developerConnection>
+      <url>
+         http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/projects/ejb3/trunk/
+      </url>
+   </scm>
+
+   <!-- 
+      
+      NOTE: This section should likely be configured in the parent
+      
+   -->
+   <build>
+      <plugins>
+
+         <!-- Maven Release Plugin Configuration -->
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-release-plugin</artifactId>
+            <configuration>
+               <tagBase>
+                  https://svn.jboss.org/repos/jbossas/projects/ejb3/tags
+               </tagBase>
+            </configuration>
+         </plugin>
+
+         <!-- JBoss Deploy Plugin -->
+         <plugin>
+            <groupId>org.jboss.maven.plugins</groupId>
+            <artifactId>maven-jboss-deploy-plugin</artifactId>
+            <version>1.4</version>
+            <executions>
+               <execution>
+                  <goals>
+                     <goal>jboss-deploy</goal>
+                  </goals>
+               </execution>
+            </executions>
+            <configuration>
+               <jbossDeployRoot>
+                  ${jboss.repository.root}
+               </jbossDeployRoot>
+               <groupId>jboss</groupId>
+            </configuration>
+            <inherited>true</inherited>
+         </plugin>
+
+      </plugins>
+   </build>
+
+   <!-- Dependencies -->
+   <dependencies>
+
+      <!-- JUnit -->
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <scope>test</scope>
+         <version>4.4</version>
+      </dependency>
+
+      <!-- EJB3 External API -->
+      <dependency>
+         <groupId>org.jboss.ejb3</groupId>
+         <artifactId>jboss-ejb3-ext-api</artifactId>
+         <version>0.1.1-SNAPSHOT</version>
+      </dependency>
+   </dependencies>
+
 </project>




More information about the jboss-cvs-commits mailing list