Skip to main content
summaryrefslogtreecommitdiffstats
path: root/maven
diff options
context:
space:
mode:
authorStephan Herrmann2012-04-03 20:41:03 +0000
committerStephan Herrmann2012-04-03 20:41:03 +0000
commit86e2231a3bf7cfe99f35e204580e950a77871fda (patch)
treee5d2057f3b9661f591fa69fa113a38ef8a45871c /maven
parentc7d1e34efc0e900d358bd42425c92260626142a1 (diff)
downloadorg.eclipse.objectteams-86e2231a3bf7cfe99f35e204580e950a77871fda.tar.gz
org.eclipse.objectteams-86e2231a3bf7cfe99f35e204580e950a77871fda.tar.xz
org.eclipse.objectteams-86e2231a3bf7cfe99f35e204580e950a77871fda.zip
Update tycho dependency to 0.14.1 from org.eclipse.tycho namespace.
Diffstat (limited to 'maven')
-rw-r--r--maven/infrastructure/artifact-deployer/pom.xml2
-rw-r--r--maven/infrastructure/parent-pom/pom.xml8
-rw-r--r--maven/testproject/pom.xml4
3 files changed, 7 insertions, 7 deletions
diff --git a/maven/infrastructure/artifact-deployer/pom.xml b/maven/infrastructure/artifact-deployer/pom.xml
index c1c550504..1c3208a7c 100644
--- a/maven/infrastructure/artifact-deployer/pom.xml
+++ b/maven/infrastructure/artifact-deployer/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.eclipse</groupId>
<artifactId>objectteams-parent-pom</artifactId>
- <version>2.0.0</version>
+ <version>2.1.0-SNAPSHOT</version>
<relativePath>../parent-pom</relativePath>
</parent>
diff --git a/maven/infrastructure/parent-pom/pom.xml b/maven/infrastructure/parent-pom/pom.xml
index 60c1ffe5a..ab951b0ee 100644
--- a/maven/infrastructure/parent-pom/pom.xml
+++ b/maven/infrastructure/parent-pom/pom.xml
@@ -4,7 +4,7 @@
<groupId>org.eclipse</groupId>
<artifactId>objectteams-parent-pom</artifactId>
- <version>2.0.1-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Object Teams parent pom</name>
@@ -86,7 +86,7 @@
<!-- Versions of dependencies: -->
<bcel.version>5.2</bcel.version>
- <tycho.version>0.11.1</tycho.version>
+ <tycho.version>0.14.1</tycho.version>
<!-- Absolut paths for providing startup arguments to the JVM -->
<otj.otre.location>${settings.localRepository}/org/eclipse/objectteams-runtime/${otj.version}/objectteams-runtime-${otj.version}.jar</otj.otre.location>
@@ -143,13 +143,13 @@
<dependencies>
<!-- compile time only dependencies: -->
<dependency>
- <groupId>org.sonatype.tycho</groupId>
+ <groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-jdt</artifactId>
<version>${tycho.version}</version>
<exclusions>
<!-- Exclude the original JDT/Core to be replaced by the OT/J variant: -->
<exclusion>
- <groupId>org.sonatype.tycho</groupId>
+ <groupId>org.eclipse.tycho</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
</exclusion>
</exclusions>
diff --git a/maven/testproject/pom.xml b/maven/testproject/pom.xml
index 94863b671..501047b3a 100644
--- a/maven/testproject/pom.xml
+++ b/maven/testproject/pom.xml
@@ -5,13 +5,13 @@
<parent>
<groupId>org.eclipse</groupId>
<artifactId>objectteams-parent-pom</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</parent>
<packaging>jar</packaging>
<artifactId>objectteams-compile-test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.1-SNAPSHOT</version>
<name>Object Teams test project</name>
<!-- simply repeat this declaration from the parent pom, otherwise Maven duplicates the artifactId in the path -->

Back to the top