Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2017-12-20 09:40:16 +0000
committerEike Stepper2017-12-20 09:40:16 +0000
commit451e3d0cd29ec7ca8a69da9125e646e88c4e4812 (patch)
tree9068ceef3540fef55673d03287e0543992b3fa03
parent44c5ad76acee80c7912a778b70727ab03557351b (diff)
downloadcdo-451e3d0cd29ec7ca8a69da9125e646e88c4e4812.tar.gz
cdo-451e3d0cd29ec7ca8a69da9125e646e88c4e4812.tar.xz
cdo-451e3d0cd29ec7ca8a69da9125e646e88c4e4812.zip
[528979] Migrate build to Maven/Tycho
https://bugs.eclipse.org/bugs/show_bug.cgi?id=528979
-rw-r--r--releng/org.eclipse.emf.cdo.releng/build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/releng/org.eclipse.emf.cdo.releng/build.xml b/releng/org.eclipse.emf.cdo.releng/build.xml
index bf3bbca457..0b0fe994e1 100644
--- a/releng/org.eclipse.emf.cdo.releng/build.xml
+++ b/releng/org.eclipse.emf.cdo.releng/build.xml
@@ -74,12 +74,12 @@
<unzip src="${build.root}/content.jar" dest="${build.root}" />
<replace file="${build.root}/content.xml" token="Build Local" value="${build.qualifier}" />
<delete file="${build.root}/content.jar" />
- <zip destfile="${build.root}/content.jar" file="${build.root}/content.xml" />
+ <zip destfile="${build.root}/content.jar" basedir="${build.root}" file="content.xml" />
<unzip src="${build.root}/artifacts.jar" dest="${build.root}" />
<replace file="${build.root}/artifacts.xml" token="Build Local" value="${build.qualifier}" />
<delete file="${build.root}/artifacts.jar" />
- <zip destfile="${build.root}/artifacts.jar" file="${build.root}/artifacts.xml" />
+ <zip destfile="${build.root}/artifacts.jar" basedir="${build.root}" file="artifacts.xml" />
</sequential>
</macrodef>

Back to the top