Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2018-01-07 13:34:44 +0000
committerEike Stepper2018-01-07 13:34:44 +0000
commit273adb8832a5f090ff65aa66d4896501fdd3e9d5 (patch)
tree4c21529498d720a9abed8cae7a3ffd7b834a36e6 /releng/org.eclipse.emf.cdo.releng.parent
parentd94f991980a5c85758cf426100ead7390a4ae8d7 (diff)
downloadcdo-273adb8832a5f090ff65aa66d4896501fdd3e9d5.tar.gz
cdo-273adb8832a5f090ff65aa66d4896501fdd3e9d5.tar.xz
cdo-273adb8832a5f090ff65aa66d4896501fdd3e9d5.zip
[528979] Migrate build to Maven/Tycho
https://bugs.eclipse.org/bugs/show_bug.cgi?id=528979
Diffstat (limited to 'releng/org.eclipse.emf.cdo.releng.parent')
-rw-r--r--releng/org.eclipse.emf.cdo.releng.parent/plugins/pom.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/releng/org.eclipse.emf.cdo.releng.parent/plugins/pom.xml b/releng/org.eclipse.emf.cdo.releng.parent/plugins/pom.xml
index 849cbf29c6..a0f6735d8d 100644
--- a/releng/org.eclipse.emf.cdo.releng.parent/plugins/pom.xml
+++ b/releng/org.eclipse.emf.cdo.releng.parent/plugins/pom.xml
@@ -240,6 +240,48 @@ Eike Stepper - initial API and implementation
</plugins>
</build>
</profile>
+ <profile>
+ <id>cdo-tests</id>
+ <activation>
+ <property>
+ <name>CDO_TESTS</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <configuration>
+ <test>${CDO_TESTS}*</test>
+ <testFailureIgnore>true</testFailureIgnore>
+ <systemProperties>
+ <disable.main.suite.finished>true</disable.main.suite.finished>
+ </systemProperties>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>no-cdo-tests</id>
+ <activation>
+ <property>
+ <name>!CDO_TESTS</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <configuration>
+ <skipTests>true</skipTests>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project>

Back to the top