Update to get Ode Database as part of build process

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@772930 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
antelder 2009-05-08 10:38:24 +00:00
parent 8f5511f753
commit e87867b1b8
129 changed files with 30 additions and 22 deletions

View file

@ -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>

Some files were not shown because too many files have changed in this diff Show more