OPENJPA-1791 Collect test base classes in daytrader module.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@996637 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Albert Lee 2010-09-13 18:46:44 +00:00
parent 8cf2d1d259
commit 243b443983
1 changed files with 27 additions and 0 deletions

View File

@ -94,6 +94,33 @@
<build>
<plugins>
<!-- Collect the common test support files from o-p-j-persistence-jdbc.tests.jar -->
<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.openjpa</groupId>
<artifactId>openjpa-persistence-jdbc</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
<includes>org/apache/openjpa/persistence/test/*.class</includes>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<!-- old way of using antrun to enhance classes
<plugin>
<groupId>org.apache.maven.plugins</groupId>