~hypedyn-team/hypedyn/release-2.3

« back to all changes in this revision

Viewing changes to build/build.xml

  • Committer: alexm at edu
  • Date: 2015-05-09 08:27:00 UTC
  • Revision ID: alexm@nus.edu.sg-20150509082700-y4psat0etfx7e1jd
in-progress update to kawa 2 and java 8, add path to appbundler

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
 
36
36
  <property name="editor-mainclass" value="${src.dir}/runhypedyn.scm"/>
37
37
 
38
 
  <property name="base.kawa.jar" value="kawa-1.14.jar"/>
 
38
  <property name="base.kawa.jar" value="kawa-2.0.1.jar"/>
39
39
        
40
40
  <property name="base.hypedyn.jar" value="hypedyn.jar"/>
41
41
 
42
42
  <property name="build.hypedyn.jar"    value="${temp.dir}/${base.hypedyn.jar}"/>
43
43
  <property name="build.kawa.jar"    value="${kawa.dir}/${base.kawa.jar}"/>
 
44
  <property name="build.appbundler.classpath" value=""/>
44
45
        
45
46
  <condition property="windows"><os family="windows" /> </condition>
46
47
  
264
265
    <property environment="env"/>
265
266
 
266
267
    <target name="initappbundler" if="macosx">
267
 
        <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask"/>
 
268
        <taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask">
 
269
                        <classpath>
 
270
                                <pathelement location="${build.appbundler.classpath}/appbundler/bin/appbundler-1.0ea.jar"/>
 
271
                        </classpath>
 
272
                </taskdef>
268
273
    </target>
269
274
 
270
275