mirror of https://github.com/apache/openjpa.git
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:
parent
8cf2d1d259
commit
243b443983
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue