mirror of https://github.com/apache/openjpa.git
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<artifactId>org.apache.openjpa.eclipse.all</artifactId>
|
|
<groupId>org.apache.openjpa.eclipse</groupId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>org.apache.openjpa.eclipse</groupId>
|
|
<artifactId>org.apache.openjpa.eclipse.tests</artifactId>
|
|
<version>1.0.0</version>
|
|
<packaging>eclipse-test-plugin</packaging>
|
|
|
|
<name>OpenJPA Bytecode Enhancer Feature</name>
|
|
<description>
|
|
OpenJPA Bytecode Enhancer Tests
|
|
</description>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.4.3</version>
|
|
<configuration>
|
|
<argLine>${surefire.jvm.args}</argLine>
|
|
<useFile>false</useFile>
|
|
<trimStackTrace>false</trimStackTrace>
|
|
<useSystemClassLoader>true</useSystemClassLoader>
|
|
<disableXmlReport>true</disableXmlReport>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|