Skip to content
Snippets Groups Projects
Commit c9750b22 authored by david_williams's avatar david_williams
Browse files

cleanup and format

parent 207675b0
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
<!-- = = = end standard properties pattern = = = --> <!-- = = = end standard properties pattern = = = -->
<echo message="ant.file: ${ant.file}"/> <echo message="ant.file: ${ant.file}"/>
<target name="build"> <target name="build">
<mkdir dir="${buildDirectory}/${buildLabel}"/>
<!-- make sure there is a base builder, since we need the launcher --> <!-- make sure there is a base builder, since we need the launcher -->
<ant <ant
...@@ -31,7 +30,7 @@ ...@@ -31,7 +30,7 @@
<java <java
jar="${eclipse.launcher}" jar="${eclipse.launcher}"
fork="true" fork="true"
failonerror="true"> failonerror="false">
<jvmarg value="-Dosgi.ws=${env.BASEWS}"/> <jvmarg value="-Dosgi.ws=${env.BASEWS}"/>
<jvmarg value="-Dosgi.os=${env.BASEOS}"/> <jvmarg value="-Dosgi.os=${env.BASEOS}"/>
<jvmarg value="-Dosgi.arch=${env.BASEARCH}"/> <jvmarg value="-Dosgi.arch=${env.BASEARCH}"/>
...@@ -71,6 +70,10 @@ ...@@ -71,6 +70,10 @@
property="component.dir"/> property="component.dir"/>
<ant antfile="${wtp.builder.home}/scripts/build/label.xml"/> <ant antfile="${wtp.builder.home}/scripts/build/label.xml"/>
<property file="${buildDirectory}/label.properties"/> <property file="${buildDirectory}/label.properties"/>
<!-- buildLabel is defined in label.properties -->
<mkdir dir="${buildDirectory}/${buildLabel}"/>
<property <property
name="publish.xml" name="publish.xml"
value="${component.dir}/publish.xml"/> value="${component.dir}/publish.xml"/>
...@@ -111,11 +114,13 @@ ...@@ -111,11 +114,13 @@
<!-- Get the build map over for the results to point to. --> <!-- Get the build map over for the results to point to. -->
<copy <copy
failonerror="false"
file="${buildDirectory}/directory.txt" file="${buildDirectory}/directory.txt"
tofile="${result}/directory.txt"/> tofile="${result}/directory.txt"/>
<!-- Copy info for build identification --> <!-- Copy info for build identification -->
<copy <copy
failonerror="false"
file="${buildDirectory}/label.properties" file="${buildDirectory}/label.properties"
tofile="${result}/label.properties"/> tofile="${result}/label.properties"/>
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
<java <java
jar="${eclipse.launcher}" jar="${eclipse.launcher}"
fork="true" fork="true"
failonerror="true"> failonerror="false">
<jvmarg value="-Dosgi.ws=${env.BASEWS}"/> <jvmarg value="-Dosgi.ws=${env.BASEWS}"/>
<jvmarg value="-Dosgi.os=${env.BASEOS}"/> <jvmarg value="-Dosgi.os=${env.BASEOS}"/>
<jvmarg value="-Dosgi.arch=${env.BASEARCH}"/> <jvmarg value="-Dosgi.arch=${env.BASEARCH}"/>
......
...@@ -20,9 +20,8 @@ ...@@ -20,9 +20,8 @@
<!-- = = = end standard properties pattern = = = --> <!-- = = = end standard properties pattern = = = -->
<echo message="ant.file: ${ant.file}"/> <echo message="ant.file: ${ant.file}"/>
<target name="build"> <target name="build">
<mkdir dir="${buildDirectory}/${buildLabel}"/>
<!-- make sure there is a base builder, since we need the launcher --> <!-- make sure there is a base builder, since we need the launcher -->
<ant <ant
antfile="${wtp.builder.home}/scripts/build/runbuild.xml" antfile="${wtp.builder.home}/scripts/build/runbuild.xml"
target="getBaseBuilder"/> target="getBaseBuilder"/>
...@@ -31,7 +30,7 @@ ...@@ -31,7 +30,7 @@
<java <java
jar="${eclipse.launcher}" jar="${eclipse.launcher}"
fork="true" fork="true"
failonerror="true"> failonerror="false">
<jvmarg value="-Dosgi.ws=${env.BASEWS}"/> <jvmarg value="-Dosgi.ws=${env.BASEWS}"/>
<jvmarg value="-Dosgi.os=${env.BASEOS}"/> <jvmarg value="-Dosgi.os=${env.BASEOS}"/>
<jvmarg value="-Dosgi.arch=${env.BASEARCH}"/> <jvmarg value="-Dosgi.arch=${env.BASEARCH}"/>
...@@ -71,6 +70,10 @@ ...@@ -71,6 +70,10 @@
property="component.dir"/> property="component.dir"/>
<ant antfile="${wtp.builder.home}/scripts/build/label.xml"/> <ant antfile="${wtp.builder.home}/scripts/build/label.xml"/>
<property file="${buildDirectory}/label.properties"/> <property file="${buildDirectory}/label.properties"/>
<!-- buildLabel is defined in label.properties -->
<mkdir dir="${buildDirectory}/${buildLabel}"/>
<property <property
name="publish.xml" name="publish.xml"
value="${component.dir}/publish.xml"/> value="${component.dir}/publish.xml"/>
...@@ -111,11 +114,13 @@ ...@@ -111,11 +114,13 @@
<!-- Get the build map over for the results to point to. --> <!-- Get the build map over for the results to point to. -->
<copy <copy
failonerror="false"
file="${buildDirectory}/directory.txt" file="${buildDirectory}/directory.txt"
tofile="${result}/directory.txt"/> tofile="${result}/directory.txt"/>
<!-- Copy info for build identification --> <!-- Copy info for build identification -->
<copy <copy
failonerror="false"
file="${buildDirectory}/label.properties" file="${buildDirectory}/label.properties"
tofile="${result}/label.properties"/> tofile="${result}/label.properties"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment