summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/getting-started/helloworld-bpel/pom.xml
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-05-04 13:46:07 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-05-04 13:46:07 +0000
commite6593a2115e888d1f828b3bc3ae0d1bd954720c2 (patch)
treea0fe5433a642768b5fff3b832628386f12e38106 /sca-java-2.x/trunk/samples/getting-started/helloworld-bpel/pom.xml
parent7b2562998ac69d732009bb084f06856b615a8930 (diff)
UPdates to try to get the bpel sample working
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1099445 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/samples/getting-started/helloworld-bpel/pom.xml29
1 files changed, 28 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/helloworld-bpel/pom.xml b/sca-java-2.x/trunk/samples/getting-started/helloworld-bpel/pom.xml
index 2333050b93..1ebb6432bb 100644
--- a/sca-java-2.x/trunk/samples/getting-started/helloworld-bpel/pom.xml
+++ b/sca-java-2.x/trunk/samples/getting-started/helloworld-bpel/pom.xml
@@ -28,7 +28,7 @@
<relativePath>../../pom.xml</relativePath>
</parent>
- <packaging>zip</packaging>
+ <!-- packaging>zip</packaging -->
<artifactId>helloworld-bpel</artifactId>
<version>2.0-SNAPSHOT</version>
@@ -88,6 +88,33 @@
</dependency>
</dependencies>
</plugin>
+
+ <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.1</version>
+ <type>zip</type>
+ <overWrite>true</overWrite>
+ <outputDirectory>${project.build.directory}/test-classes/</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
</build>