Skip to content

Commit

Permalink
Fix promoter classpath
Browse files Browse the repository at this point in the history
  • Loading branch information
estepper committed Nov 25, 2023
1 parent f75fbcc commit f0fe93f
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions org.eclipse.emf.cdo.releng.promotion/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@
</delete>
<mkdir dir="bin" />
<ant antfile="lib-install.ant" useNativeBasedir="true" />
<javac srcdir="src" destdir="bin" debug="on" includeantruntime="false" />
<javac srcdir="src" destdir="bin" debug="on" includeantruntime="false">
<classpath>
<pathelement location="lib/gson.jar" />
<pathelement location="lib/github.jar" />
</classpath>
</javac>
<jar destfile="promoter.jar">
<fileset dir="bin">
<include name="**" />
Expand All @@ -38,7 +43,12 @@
<include name="${compositionTempPath}" />
</fileset>
</delete>
<java classpath="promoter.jar" classname="${config.classPromoter}">
<java classname="${config.classPromoter}">
<classpath>
<pathelement location="lib/gson.jar" />
<pathelement location="lib/github.jar" />
<pathelement location="promoter.jar" />
</classpath>
<sysproperty key="JOB_URL" value="${env.JOB_URL}" />
<sysproperty key="JOB_NAME" value="${env.JOB_NAME}" />
<!-- <sysproperty key="ANT_HOME" value="${env.ANT_HOME}" /> -->
Expand Down

0 comments on commit f0fe93f

Please sign in to comment.