Author: antelder
Date: Fri May 8 10:38:24 2009
New Revision: 772930
URL: http://svn.apache.org/viewvc?rev=772930&view=rev
Log:
Update to get Ode Database as part of build process
Removed:
tuscany/sandbox/ant/helloworld-bpel-webapp/src/main/resources/jpadb/
Modified:
tuscany/sandbox/ant/helloworld-bpel-webapp/pom.xml
Modified: tuscany/sandbox/ant/helloworld-bpel-webapp/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/sandbox/ant/helloworld-bpel-webapp/pom.xml?rev=772930&r1=772929&r2=772930&view=diff
==============================================================================
--- tuscany/sandbox/ant/helloworld-bpel-webapp/pom.xml (original)
+++ tuscany/sandbox/ant/helloworld-bpel-webapp/pom.xml Fri May 8 10:38:24 2009
@@ -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>