Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml')
-rw-r--r--jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml122
1 files changed, 120 insertions, 2 deletions
diff --git a/jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml b/jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml
index 2efe729df1..054d89c025 100644
--- a/jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml
+++ b/jpa/tests/org.eclipse.jpt.jpa.core.tests/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2013 Eclipse Foundation and others.
+ Copyright (c) 2012, 2014 Eclipse Foundation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -23,5 +23,123 @@
<groupId>org.eclipse.webtools.dali</groupId>
<artifactId>org.eclipse.jpt.jpa.core.tests</artifactId>
<version>3.4.0-SNAPSHOT</version>
- <packaging>eclipse-plugin</packaging>
+ <packaging>eclipse-test-plugin</packaging>
+
+ <properties>
+ <org.eclipse.jpt.jpa.jar>${project.build.directory}/dependency/javax.persistence-2.1.0.jar</org.eclipse.jpt.jpa.jar>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.8</version>
+ <executions>
+ <execution>
+ <id>get-dependencies</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.eclipse.persistence</groupId>
+ <artifactId>javax.persistence</artifactId>
+ <version>2.1.0</version>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>default-test</id>
+ <phase>none</phase>
+ </execution>
+ <execution>
+ <id>suite1</id>
+ <phase>test</phase>
+ <configuration>
+ <testSuite>${project.artifactId}</testSuite>
+ <testClass>org.eclipse.jpt.jpa.core.tests.internal.model.JptJpaCoreModelTests</testClass>
+ </configuration>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>suite2</id>
+ <phase>test</phase>
+ <configuration>
+ <testSuite>${project.artifactId}</testSuite>
+ <testClass>org.eclipse.jpt.jpa.core.tests.internal.resource.JptJpaCoreResourceModelTests</testClass>
+ <systemProperties combine.children="append">
+ <org.eclipse.jpt.jpa.jar>${org.eclipse.jpt.jpa.jar}</org.eclipse.jpt.jpa.jar>
+ </systemProperties>
+ <dependencies>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>javax.persistence</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ </dependencies>
+ </configuration>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>suite3</id>
+ <phase>test</phase>
+ <configuration>
+ <testSuite>${project.artifactId}</testSuite>
+ <testClass>org.eclipse.jpt.jpa.core.tests.internal.context.JptJpaCoreContextModelTests</testClass>
+ <systemProperties combine.children="append">
+ <org.eclipse.jpt.jpa.jar>${org.eclipse.jpt.jpa.jar}</org.eclipse.jpt.jpa.jar>
+ </systemProperties>
+ <dependencies>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>javax.persistence</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ </dependencies>
+ </configuration>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>suite4</id>
+ <phase>test</phase>
+ <configuration>
+ <testSuite>${project.artifactId}</testSuite>
+ <testClass>org.eclipse.jpt.jpa.core.tests.internal.JptJpaCoreMiscTests</testClass>
+ <systemProperties combine.children="append">
+ <org.eclipse.jpt.jpa.jar>${org.eclipse.jpt.jpa.jar}</org.eclipse.jpt.jpa.jar>
+ </systemProperties>
+ <dependencies>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>javax.persistence</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ </dependencies>
+ </configuration>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top