Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-05-30 12:26:57 +0000
committerAlexander Kurtakov2018-05-30 12:40:10 +0000
commit33eac236175466f911fdd0a2259c1a84da968f18 (patch)
treefd208b2a68a5471303f23f58ee76b0e94a3886f5 /tests
parent5e4727436bcdb4d509cb39aff99949886efa3b4c (diff)
downloadeclipse.platform.team-33eac236175466f911fdd0a2259c1a84da968f18.tar.gz
eclipse.platform.team-33eac236175466f911fdd0a2259c1a84da968f18.tar.xz
eclipse.platform.team-33eac236175466f911fdd0a2259c1a84da968f18.zip
Rearranged tests to be modules of their parent so tycho set-version works. Update version for o.e.cvs to satisfy comparator. Change-Id: Ifcbd5eefef676e8038a5dfa43307fd91b0410e61 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.compare.tests/pom.xml3
-rw-r--r--tests/org.eclipse.core.tests.net/pom.xml2
-rw-r--r--tests/org.eclipse.jsch.tests/pom.xml2
-rw-r--r--tests/org.eclipse.team.tests.core/pom.xml2
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/pom.xml2
-rw-r--r--tests/pom.xml11
6 files changed, 15 insertions, 7 deletions
diff --git a/tests/org.eclipse.compare.tests/pom.xml b/tests/org.eclipse.compare.tests/pom.xml
index 51ef6594d..79bd9475e 100644
--- a/tests/org.eclipse.compare.tests/pom.xml
+++ b/tests/org.eclipse.compare.tests/pom.xml
@@ -14,7 +14,8 @@
<parent>
<artifactId>eclipse.platform.team.tests</artifactId>
<groupId>eclipse.platform.team</groupId>
- <version>4.8.0-SNAPSHOT</version>
+ <version>4.9.0-SNAPSHOT</version>
+ <relativePath>..</relativePath>
</parent>
<groupId>org.eclipse.compare</groupId>
<artifactId>org.eclipse.compare.tests</artifactId>
diff --git a/tests/org.eclipse.core.tests.net/pom.xml b/tests/org.eclipse.core.tests.net/pom.xml
index 8112de8d7..aad366a8d 100644
--- a/tests/org.eclipse.core.tests.net/pom.xml
+++ b/tests/org.eclipse.core.tests.net/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.team.tests</artifactId>
<groupId>eclipse.platform.team</groupId>
- <version>4.8.0-SNAPSHOT</version>
+ <version>4.9.0-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.core</groupId>
<artifactId>org.eclipse.core.tests.net</artifactId>
diff --git a/tests/org.eclipse.jsch.tests/pom.xml b/tests/org.eclipse.jsch.tests/pom.xml
index bc179dbb2..a31d4578f 100644
--- a/tests/org.eclipse.jsch.tests/pom.xml
+++ b/tests/org.eclipse.jsch.tests/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.team.tests</artifactId>
<groupId>eclipse.platform.team</groupId>
- <version>4.8.0-SNAPSHOT</version>
+ <version>4.9.0-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.jsch</groupId>
<artifactId>org.eclipse.jsch.tests</artifactId>
diff --git a/tests/org.eclipse.team.tests.core/pom.xml b/tests/org.eclipse.team.tests.core/pom.xml
index ecb662936..776b1ef60 100644
--- a/tests/org.eclipse.team.tests.core/pom.xml
+++ b/tests/org.eclipse.team.tests.core/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.team.tests</artifactId>
<groupId>eclipse.platform.team</groupId>
- <version>4.8.0-SNAPSHOT</version>
+ <version>4.9.0-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.team</groupId>
<artifactId>org.eclipse.team.tests.core</artifactId>
diff --git a/tests/org.eclipse.team.tests.cvs.core/pom.xml b/tests/org.eclipse.team.tests.cvs.core/pom.xml
index d2f6ae4d9..1c3b17772 100644
--- a/tests/org.eclipse.team.tests.cvs.core/pom.xml
+++ b/tests/org.eclipse.team.tests.cvs.core/pom.xml
@@ -14,7 +14,7 @@
<parent>
<artifactId>eclipse.platform.team.tests</artifactId>
<groupId>eclipse.platform.team</groupId>
- <version>4.8.0-SNAPSHOT</version>
+ <version>4.9.0-SNAPSHOT</version>
</parent>
<groupId>org.eclipse.team</groupId>
<artifactId>org.eclipse.team.tests.cvs.core</artifactId>
diff --git a/tests/pom.xml b/tests/pom.xml
index fec566e9b..67fd9961b 100644
--- a/tests/pom.xml
+++ b/tests/pom.xml
@@ -14,12 +14,19 @@
<parent>
<groupId>eclipse.platform.team</groupId>
<artifactId>eclipse.platform.team</artifactId>
- <version>4.8.0-SNAPSHOT</version>
+ <version>4.9.0-SNAPSHOT</version>
+ <relativePath>..</relativePath>
</parent>
<artifactId>eclipse.platform.team.tests</artifactId>
- <version>4.8.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<code.ignoredWarnings>${tests.ignoredWarnings}</code.ignoredWarnings>
</properties>
+ <modules>
+ <module>org.eclipse.compare.tests</module>
+ <module>org.eclipse.core.tests.net</module>
+ <module>org.eclipse.jsch.tests</module>
+ <module>org.eclipse.team.tests.cvs.core</module>
+ <module>org.eclipse.team.tests.core</module>
+ </modules>
</project>

Back to the top