| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 This build script will build the Dart RCP and Dart update site. | 2 This build script will build the Dart RCP and Dart update site. |
| 3 | 3 |
| 4 This script will setup the PDE build structure and then call into the PDE | 4 This script will setup the PDE build structure and then call into the PDE |
| 5 build system. The PDE build system has to run under Eclipse. | 5 build system. The PDE build system has to run under Eclipse. |
| 6 --> | 6 --> |
| 7 <project name="build_dart" default="build_rcp"> | 7 <project name="build_dart" default="build_rcp"> |
| 8 | 8 |
| 9 <import file="build-common.xml" /> | 9 <import file="build-common.xml" /> |
| 10 | 10 |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 target: package_rcp | 447 target: package_rcp |
| 448 - - - - - - - - - - - - - - - - - --> | 448 - - - - - - - - - - - - - - - - - --> |
| 449 <target name="package_rcp" depends="init, setupBuild, doBuild_rcp" > | 449 <target name="package_rcp" depends="init, setupBuild, doBuild_rcp" > |
| 450 <property file="build.properties" prefix="pde." /> | 450 <property file="build.properties" prefix="pde." /> |
| 451 <echo message="copying zip files from ${build.stage}/${pde.buildLabel} t
o ${build.out}"/> | 451 <echo message="copying zip files from ${build.stage}/${pde.buildLabel} t
o ${build.out}"/> |
| 452 <copy todir="${build.out}" verbose="true"> | 452 <copy todir="${build.out}" verbose="true"> |
| 453 <fileset dir="${build.stage}/${pde.buildLabel}"> | 453 <fileset dir="${build.stage}/${pde.buildLabel}"> |
| 454 <include name="*.zip" /> | 454 <include name="*.zip" /> |
| 455 </fileset> | 455 </fileset> |
| 456 </copy> | 456 </copy> |
| 457 <!-- |
| 458 { |
| 459 "revision" : "9826", |
| 460 "version" : "0.0.1_v2012070961811", |
| 461 "date" : "2012-07-09" |
| 462 } |
| 463 --> |
| 457 <echo message="creating build VERSION file"/> | 464 <echo message="creating build VERSION file"/> |
| 458 <echo file="${build.out}/VERSION" message="${build.revision}${line.separ
ator}"/> | 465 <!-- TODO(pquitslund): add version string info --> |
| 466 <echo file="${build.out}/VERSION">{ |
| 467 "revision": "${build.revision}", |
| 468 "version" : "", |
| 469 "date" : "${build.date}" |
| 470 }</echo> |
| 459 </target> | 471 </target> |
| 460 | 472 |
| 461 <!-- - - - - - - - - - - - - - - - - - | 473 <!-- - - - - - - - - - - - - - - - - - |
| 462 target: doDeploy_rcp | 474 target: doDeploy_rcp |
| 463 - - - - - - - - - - - - - - - - - --> | 475 - - - - - - - - - - - - - - - - - --> |
| 464 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 476 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
| 465 </target> | 477 </target> |
| 466 | 478 |
| 467 </project> | 479 </project> |
| OLD | NEW |