Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Oberhuber2017-06-13 15:05:12 +0000
committerMartin Oberhuber2017-06-15 08:51:55 +0000
commitea27371641119a327daecdff8ea75ef4d7fb0972 (patch)
tree461cf0343f6c91011f04aed56f78e4e0861fb4c2
parent4d0f4748072e1359939148c69e15ea5a26cdf1fa (diff)
downloadorg.eclipse.tcf-ea27371641119a327daecdff8ea75ef4d7fb0972.tar.gz
org.eclipse.tcf-ea27371641119a327daecdff8ea75ef4d7fb0972.tar.xz
org.eclipse.tcf-ea27371641119a327daecdff8ea75ef4d7fb0972.zip
Releng: Fix missing -SNAPSHOT in tcf.debug.test/pom.xml
Change-Id: I1b0dfaf1e400e019bbc478ec20dd870433c19aab Signed-off-by: Martin Oberhuber <mober.at+eclipse@gmail.com>
-rw-r--r--tests/plugins/org.eclipse.tcf.debug.test/pom.xml15
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/plugins/org.eclipse.tcf.debug.test/pom.xml b/tests/plugins/org.eclipse.tcf.debug.test/pom.xml
index 9487568d9..90fb39021 100644
--- a/tests/plugins/org.eclipse.tcf.debug.test/pom.xml
+++ b/tests/plugins/org.eclipse.tcf.debug.test/pom.xml
@@ -2,7 +2,7 @@
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
+ <modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.eclipse.tcf</groupId>
@@ -11,13 +11,12 @@
<relativePath>../../../admin/pom-build.xml</relativePath>
</parent>
- <version>1.5.0.qualifier</version>
+ <version>1.5.0-SNAPSHOT</version>
<artifactId>org.eclipse.tcf.debug.test</artifactId>
<packaging>eclipse-test-plugin</packaging>
<properties>
<jacoco.append>true</jacoco.append>
-
<ui.test.vmargs>-Xmx512m -XX:MaxPermSize=256m</ui.test.vmargs>
</properties>
@@ -43,7 +42,7 @@
<!--
<debugPort>8003</debugPort>
-->
-
+
<systemProperties>
<osgi.debug>${basedir}/tracing/.options</osgi.debug>
<tcf.agent.path>${WORKSPACE}/.agent</tcf.agent.path>
@@ -63,7 +62,7 @@
</includes>
</configuration>
</plugin>
-
+
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
@@ -109,7 +108,7 @@
<fileset dir="${basedir}/../../../plugins/org.eclipse.tcf/src"/>
</sourcefiles>
</group>
-
+
<group name="org.eclipse.tcf.core">
<classfiles>
<fileset dir="${basedir}/../../../plugins/org.eclipse.tcf.core/target/classes"/>
@@ -118,7 +117,7 @@
<fileset dir="${basedir}/../../../plugins/org.eclipse.tcf.core/src"/>
</sourcefiles>
</group>
-
+
<group name="org.eclipse.tcf.debug">
<classfiles>
<fileset dir="${basedir}/../../../plugins/org.eclipse.tcf.debug/target/classes"/>
@@ -136,7 +135,7 @@
<fileset dir="${basedir}/../../../plugins/org.eclipse.tcf.debug.ui/src"/>
</sourcefiles>
</group>
-
+
<group name="org.eclipse.tcf.cdt.ui">
<classfiles>
<fileset dir="${basedir}/../../../plugins/org.eclipse.tcf.cdt.ui/target/classes"/>

Back to the top