build.xml
changeset 1240 4b353465cd30
parent 1238 57914fd9382f
child 1241 e38683764572
     1.1 --- a/build.xml	Tue Jun 16 17:53:32 2009 +0200
     1.2 +++ b/build.xml	Wed Jun 17 15:11:07 2009 +0200
     1.3 @@ -6,6 +6,7 @@
     1.4          <antcall target="base"/>
     1.5          <antcall target="beans"/>
     1.6          <antcall target="applet"/>
     1.7 +        <antcall target="deprecated7"/>
     1.8      </target>
     1.9      <!-- basic parameters -->
    1.10      <path id="src.path">
    1.11 @@ -35,10 +36,17 @@
    1.12              </or>
    1.13              <none>
    1.14                  <selector refid="applet"/>
    1.15 +                <selector refid="deprecated7"/>
    1.16              </none>
    1.17          </and>
    1.18      </selector>
    1.19  
    1.20 +    <selector id="deprecated7">
    1.21 +        <or>
    1.22 +            <filename name="java/beans/Beans*"/>
    1.23 +        </or>
    1.24 +    </selector>
    1.25 +
    1.26      <selector id="corba">
    1.27          <or>
    1.28              <filename name="org/omg/**"/>
    1.29 @@ -51,11 +59,18 @@
    1.30              <selector refid="applet"/>
    1.31              <selector refid="beans"/>
    1.32              <selector refid="corba"/>
    1.33 +            <selector refid="deprecated7"/>
    1.34          </none>
    1.35      </selector>
    1.36  
    1.37      <!-- individual compilation tasks -->
    1.38  
    1.39 +    <target name="deprecated7">
    1.40 +        <antcall target="-compile-one-module">
    1.41 +            <param name="module" value="deprecated7"/>
    1.42 +            <param name="depends" value="beans:applet"/>
    1.43 +        </antcall>
    1.44 +    </target>
    1.45      <target name="applet">
    1.46          <antcall target="-compile-one-module">
    1.47              <param name="module" value="applet"/>
    1.48 @@ -91,7 +106,7 @@
    1.49      <!-- shared routine to compile one of the modules -->
    1.50      <target name="-compile-one-module">
    1.51          <mkdir dir="${build.dir}/classes/${module}"/>
    1.52 -        <pathconvert pathsep="," property="module.cp">
    1.53 +        <pathconvert pathsep=":"  property="module.cp">
    1.54              <path path="${depends}"/>
    1.55              <mapper type="regexp" from=".*[/\\]([^/\\]*)" to="${build.dir}/\1.jar"/>
    1.56          </pathconvert>