Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Le Menez2019-02-07 13:41:39 +0000
committerQuentin Le Menez2019-02-19 09:26:43 +0000
commit0008788c3b16845b0758f8808edd2c87f4310501 (patch)
treed82e3e3fb10f43e264f8062000b72e2a0c0155c5 /releng/tests/main-tests-with-cdo/targetPlatform/pom.xml
parentcf1997b9c3a1dac823a8cde546c6dcabf159296d (diff)
downloadorg.eclipse.papyrus-0008788c3b16845b0758f8808edd2c87f4310501.tar.gz
org.eclipse.papyrus-0008788c3b16845b0758f8808edd2c87f4310501.tar.xz
org.eclipse.papyrus-0008788c3b16845b0758f8808edd2c87f4310501.zip
Bug 542929 - [Releng] [CDO] Rewire the way tests are compiled in order to allow multiple tests configurations
- Update modified pom.xml files headers - Delete .project files in root and releng Change-Id: I6c76f0adb7a7c18baa4d45d78af62db4dfa69a5d Signed-off-by: Quentin Le Menez <quentin.lemenez@cea.fr>
Diffstat (limited to 'releng/tests/main-tests-with-cdo/targetPlatform/pom.xml')
-rwxr-xr-xreleng/tests/main-tests-with-cdo/targetPlatform/pom.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/releng/tests/main-tests-with-cdo/targetPlatform/pom.xml b/releng/tests/main-tests-with-cdo/targetPlatform/pom.xml
new file mode 100755
index 00000000000..ba9eeaf9fea
--- /dev/null
+++ b/releng/tests/main-tests-with-cdo/targetPlatform/pom.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <artifactId>org.eclipse.papyrus.tests.cdo.releng</artifactId>
+ <groupId>org.eclipse.papyrus</groupId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.papyrus.main.tests.cdo.target.parent</artifactId>
+ <packaging>pom</packaging>
+
+ <profiles>
+ <profile>
+ <id>portable</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>portable</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>eclipse</id>
+ <activation>
+ <property>
+ <name>target.suffix</name>
+ <value>eclipse</value>
+ </property>
+ </activation>
+ <modules>
+ <module>eclipse</module>
+ </modules>
+ </profile>
+ </profiles>
+
+</project>
+

Back to the top