Skip to main content
summaryrefslogtreecommitdiffstats
path: root/maven
diff options
context:
space:
mode:
authorStephan Herrmann2011-06-13 09:32:21 +0000
committerStephan Herrmann2011-06-13 09:32:21 +0000
commit46cee6ba9a80f75351d85ec0c387a0cd1e38b2dd (patch)
tree79d5fd6654a8668ccd01189ae25f9683ed5233b7 /maven
parent9febfcdfe701baf4dc433d5d16a87719d31d9052 (diff)
downloadorg.eclipse.objectteams-46cee6ba9a80f75351d85ec0c387a0cd1e38b2dd.tar.gz
org.eclipse.objectteams-46cee6ba9a80f75351d85ec0c387a0cd1e38b2dd.tar.xz
org.eclipse.objectteams-46cee6ba9a80f75351d85ec0c387a0cd1e38b2dd.zip
First take at updating mvn support to OTDT 2.0.0
+ don't repeat inherited groupId and version + consume original files OTDT build + manually configure exact versions in artifact-deployer/pom.xml + also update tycho version + add a "flavor" element to be used for configuring OT/J projects in Eclipse.
Diffstat (limited to 'maven')
-rw-r--r--maven/infrastructure/artifact-deployer/objectteams-runtime-pom.xml4
-rw-r--r--maven/infrastructure/artifact-deployer/pom.xml29
2 files changed, 18 insertions, 15 deletions
diff --git a/maven/infrastructure/artifact-deployer/objectteams-runtime-pom.xml b/maven/infrastructure/artifact-deployer/objectteams-runtime-pom.xml
index 1e29e0845..c826de614 100644
--- a/maven/infrastructure/artifact-deployer/objectteams-runtime-pom.xml
+++ b/maven/infrastructure/artifact-deployer/objectteams-runtime-pom.xml
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse</groupId>
<artifactId>objectteams-runtime</artifactId>
- <version>0.8.0-SNAPSHOT</version>
+ <version>2.0.0-SNAPSHOT</version>
<description>The OT/J Runtime Library</description>
<licenses>
@@ -13,7 +13,7 @@
<comments>
This file is part of "Object Teams Development Tooling"-Software
- Copyright 2010 GK Software AG and others.
+ Copyright 2010, 2011 GK Software AG and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
diff --git a/maven/infrastructure/artifact-deployer/pom.xml b/maven/infrastructure/artifact-deployer/pom.xml
index f99e4c9b7..2fc820442 100644
--- a/maven/infrastructure/artifact-deployer/pom.xml
+++ b/maven/infrastructure/artifact-deployer/pom.xml
@@ -5,13 +5,11 @@
<parent>
<groupId>org.eclipse</groupId>
<artifactId>objectteams-parent-pom</artifactId>
- <version>0.8.0-SNAPSHOT</version>
+ <version>2.0.0-SNAPSHOT</version>
<relativePath>../parent-pom</relativePath>
</parent>
- <groupId>org.eclipse</groupId>
<artifactId>objectteams-artifact-deployer</artifactId>
- <version>${otj.version}</version>
<packaging>pom</packaging>
@@ -26,7 +24,7 @@
<comments>
This file is part of "Object Teams Development Tooling"-Software
- Copyright 2010 GK Software AG and others.
+ Copyright 2010, 2011 GK Software AG and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
@@ -40,23 +38,28 @@
</comments>
</license>
</licenses>
-
- <!-- NOTE: Run this from the command line, eclipse launch throws NPE!!! -->
-
- <!-- the follogin properties are required to be defined by an active profile: -->
+
+ <!-- the follogin properties should be defined by an active profile: -->
<!-- REMOTE: -->
<!-- ot.host : user@host for the object teams repository server -->
<!-- ot.maven.repository.path : absolute path to the maven repository on ot.host -->
<!-- LOCAL: -->
- <!-- otre.export.dir : directory where exported -->
- <!-- org.eclipse.objectteams.runtime-head.jar is located. -->
+ <!-- otre.export.dir : directory where exported otre jars are located: -->
+ <!-- org.eclipse.objectteams.runtime_${otre.version}.jar -->
+ <!-- otre_min.jar, otre_agent.jar -->
<!-- ecj.export.dir : directory where the batch compiler jar is located -->
<properties>
+ <!-- Object Teams versions, update manually: -->
+ <!-- version of the ecotj jar file: -->
+ <ecotj.version>R-2.0.0-201106070718</ecotj.version>
+ <!-- version of the org.eclipse.objectteams.runtime plugin: -->
+ <otre.version>2.0.0.201106070730</otre.version>
+
<!-- locate the jar files to install/deploy: -->
- <ecotj.jar.file>${ecj.export.dir}/ecotj-head.jar</ecotj.jar.file>
- <otre.jar.file>${otre.export.dir}/org.eclipse.objectteams.runtime-head.jar</otre.jar.file>
- <otre-agent.jar.file>${otdt.lib.dir}/otre_agent.jar</otre-agent.jar.file>
+ <ecotj.jar.file>${ecj.export.dir}/ecotj-${ecotj.version}.jar</ecotj.jar.file>
+ <otre.jar.file>${otre.export.dir}/org.eclipse.objectteams.runtime_${otre.version}.jar</otre.jar.file>
+ <otre-agent.jar.file>${otre.export.dir}/otre_agent.jar</otre-agent.jar.file>
<!-- Repository path of this module within the Object Teams svn: -->
<project-repository-path>trunk/maven/infrastructure/artifacts-deployer</project-repository-path>

Back to the top