[jbpm-commits] JBoss JBPM SVN: r6779 - projects/migration_tool/trunk.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Oct 21 16:00:09 EDT 2010


Author: MohReece
Date: 2010-10-21 16:00:09 -0400 (Thu, 21 Oct 2010)
New Revision: 6779

Modified:
   projects/migration_tool/trunk/pom.xml
Log:
Updated organizational stuff.

Modified: projects/migration_tool/trunk/pom.xml
===================================================================
--- projects/migration_tool/trunk/pom.xml	2010-10-21 19:59:38 UTC (rev 6778)
+++ projects/migration_tool/trunk/pom.xml	2010-10-21 20:00:09 UTC (rev 6779)
@@ -1,60 +1,59 @@
 <?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">
+<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">
 
-    <!-- Model Information -->
-    <modelVersion>4.0.0</modelVersion>
-    <prerequisites>
-        <maven>2.2.0</maven>
-    </prerequisites>
-   
-    <!-- The Basics -->
-    <groupId>jboss</groupId>
-    <artifactId>jpdl2bpmn2</artifactId>
-    <version>1.0-SNAPSHOT</version>
-    <packaging>jar</packaging>
-    
-    <name>jPDL to BPMN2 translator</name>
-    <description>jpdl to bpmn2 translation project</description>
-    
-    <developers>
-        <developer>
-            <id>erics</id>
-            <name>Eric Schabell</name>
-            <email>erics at redhat.com</email>
-            <roles>
-                <role>architect</role>
-            </roles>
-            <timezone>+2</timezone>
-        </developer>
-    </developers>
-    
-    <dependencies>
-    
-        <!-- XSLT -->
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.jbpm.jbpm5</groupId>
+	<artifactId>jpdl3-bpmn2</artifactId>
+	<name>jPDL3-BPMN2</name>
+	<version>1.0-SNAPSHOT</version>
+	<description>jPDL3.x to BPMN2 migration</description>
+	<url>http://community.jboss.org/wiki/jBPM5migrationtoolproject</url>
+
+	<developers>
+		<developer>
+			<id>erics</id>
+			<name>Eric D. Schabell</name>
+			<email>erics at redhat.com</email>
+			<roles>
+				<role>Head Nacho</role>
+			</roles>
+			<timezone>+2</timezone>
+		</developer>
+		<developer>
+			<id>MohReece</id>
+			<name>Maurice de Chateau</name>
+			<email>maurice.de.chateau at gmail.com</email>
+			<timezone>+2</timezone>
+		</developer>
+	</developers>
+
+	<dependencies>
+		<!-- XSLT -->
+		<dependency>
+			<groupId>xalan</groupId>
+			<artifactId>xalan</artifactId>
+			<version>2.7.1</version>
+		</dependency>
+		<dependency>
+			<groupId>xerces</groupId>
+			<artifactId>xercesImpl</artifactId>
+			<version>2.9.1</version>
+		</dependency>
+		<dependency>
+			<groupId>xml-apis</groupId>
+			<artifactId>xml-apis</artifactId>
+			<version>1.0.b2</version>
+		</dependency>
+
+		<!-- Test -->
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.8.1</version>
+			<scope>test</scope>
+		</dependency>
         <dependency>
-            <groupId>xalan</groupId>
-            <artifactId>xalan</artifactId>
-            <version>2.7.1</version>
-        </dependency>
-        <dependency>
-            <groupId>xerces</groupId>
-            <artifactId>xercesImpl</artifactId>
-            <version>2.9.1</version>
-        </dependency>
-        <dependency>
-            <groupId>xml-apis</groupId>
-            <artifactId>xml-apis</artifactId>
-            <version>1.0.b2</version>
-        </dependency>
-        
-        <!-- Test -->
-        <dependency>
-	        <groupId>junit</groupId>
-	        <artifactId>junit</artifactId>
-	        <version>4.8.1</version>
-            <scope>test</scope>
-	    </dependency>
-        <dependency>
         	<groupId>dom4j</groupId>
         	<artifactId>dom4j</artifactId>
         	<version>1.6.1</version>
@@ -68,43 +67,34 @@
         	<type>jar</type>
         	<scope>provided</scope>
         </dependency>
-    </dependencies>
-    
-    <build>
+	</dependencies>
+
+	<build>
+		<resources>
+			<resource>
+				<directory>src/main/xslt</directory>
+			</resource>
+			<resource>
+				<directory>src/main/resources</directory>
+			</resource>
+		</resources>
         <testResources>
             <testResource>
                 <directory>src/main/use_cases</directory>
             </testResource>
+            <testResource>
+                <directory>src/test/resources</directory>
+            </testResource>
         </testResources>
-        <resources>
-            <resource>
-                <directory>src/main/xslt</directory>
-            </resource>
-            <resource>
-                <directory>src/main/resources</directory>
-            </resource>
-        </resources>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <version>2.3.1</version>
-                <configuration>
-                   <source>1.6</source>
-                 <target>1.6</target>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-    
-    <!-- 
-        <scm>...</scm> 
-     -->
-        
-    <!-- <properties> </properties> -->
-    
-    <!-- Environment Settings -->
-    <!-- <repositories> ... </repositories> <pluginRepositories> ... </pluginRepositories> -->
-    <!-- <profiles> ... </profiles> -->
-    
-</project>
\ No newline at end of file
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+</project>



More information about the jbpm-commits mailing list