You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by lr...@apache.org on 2007/06/28 19:32:22 UTC

svn commit: r551630 - in /incubator/tuscany/java/sca/modules/implementation-bpel: build.xml lib/ pom.xml

Author: lresende
Date: Thu Jun 28 10:32:21 2007
New Revision: 551630

URL: http://svn.apache.org/viewvc?view=rev&rev=551630
Log:
Utilizing maven plugin to unpack ode database and removing ant dependency from svn

Removed:
    incubator/tuscany/java/sca/modules/implementation-bpel/build.xml
    incubator/tuscany/java/sca/modules/implementation-bpel/lib/
Modified:
    incubator/tuscany/java/sca/modules/implementation-bpel/pom.xml

Modified: incubator/tuscany/java/sca/modules/implementation-bpel/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/implementation-bpel/pom.xml?view=diff&rev=551630&r1=551629&r2=551630
==============================================================================
--- incubator/tuscany/java/sca/modules/implementation-bpel/pom.xml (original)
+++ incubator/tuscany/java/sca/modules/implementation-bpel/pom.xml Thu Jun 28 10:32:21 2007
@@ -217,28 +217,43 @@
             <artifactId>commons-lang</artifactId>
             <version>2.1</version>
         </dependency>
-
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-artifact-ant</artifactId>
+            <version>2.0.4</version>
+        </dependency>
     </dependencies>
 
-    <build>
-        <plugins>
-            <plugin>
-                <artifactId>maven-antrun-plugin</artifactId>
-                <groupId>org.apache.maven.plugins</groupId>
-
-                <executions>
-                    <execution>
-                        <phase>test-compile</phase>
-                        <goals><goal>run</goal></goals>
-                        <configuration>
-                            <tasks>
-                                <ant antfile="build.xml" target="test-db" inheritRefs="true"/>
-                            </tasks>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-dependency-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>unpack</id>
+						<phase>test-compile</phase>
+						<goals>
+							<goal>unpack</goal>
+						</goals>
+						<configuration>
+							<artifactItems>
+								<artifactItem>
+									<groupId>org.apache.ode</groupId>
+									<artifactId>
+										ode-dao-jpa-ojpa-derby</artifactId>
+									<version>1.0-incubating</version>
+									<type>zip</type>
+									<overWrite>true</overWrite>
+									<outputDirectory>
+										${project.build.directory}/test-classes/</outputDirectory>
+								</artifactItem>
+							</artifactItems>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
 
 </project>



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