summaryrefslogtreecommitdiffstats
path: root/sandbox/ant/helloworld-bpel-webapp/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/ant/helloworld-bpel-webapp/pom.xml')
-rw-r--r--sandbox/ant/helloworld-bpel-webapp/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/sandbox/ant/helloworld-bpel-webapp/pom.xml b/sandbox/ant/helloworld-bpel-webapp/pom.xml
index 7826877e60..3c7839e89f 100644
--- a/sandbox/ant/helloworld-bpel-webapp/pom.xml
+++ b/sandbox/ant/helloworld-bpel-webapp/pom.xml
@@ -48,6 +48,36 @@
<build>
<finalName>${artifactId}</finalName>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>unpack</id>
+ <phase>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.1</version>
+ <type>zip</type>
+ <overWrite>false</overWrite>
+ <outputDirectory>${project.build.directory}/classes</outputDirectory>
+ <includes>**/*</includes>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
</build>
</project>