#36033 analogue for freeform projects. BLD200606141800
authorjglick@netbeans.org
Wed, 14 Jun 2006 01:02:48 +0000
changeset 72017f56ca9359e6
parent 7200 88c53acceb3a
child 7202 8a0668b983d0
#36033 analogue for freeform projects.
ant.freeform.samples/templates/anagram/build.xml
ant.freeform.samples/templates/anagram/lib/build.xml
ant.freeform.samples/templates/anagram/lib/nbproject/file-targets.xml
ant.freeform.samples/templates/anagram/lib/nbproject/netbeans-targets.xml
ant.freeform.samples/templates/anagram/nbproject/file-targets.xml
ant.freeform.samples/templates/anagram/nbproject/netbeans-targets.xml
ant.freeform.samples/templates/skeletal/build.xml
ant.freeform.samples/templates/skeletal/nbproject/file-targets.xml
ant.freeform.samples/templates/skeletal/nbproject/netbeans-targets.xml
     1.1 --- a/ant.freeform.samples/templates/anagram/build.xml	Tue Jun 13 12:33:06 2006 +0000
     1.2 +++ b/ant.freeform.samples/templates/anagram/build.xml	Wed Jun 14 01:02:48 2006 +0000
     1.3 @@ -17,6 +17,9 @@
     1.4  
     1.5      <target name="compile" depends="-libs" description="Compile main sources.">
     1.6          <mkdir dir="${classes.dir}"/>
     1.7 +        <depend srcdir="${src.dir}" destdir="${classes.dir}" cache="build/depcache">
     1.8 +            <classpath path="${cp}"/>
     1.9 +        </depend>
    1.10          <javac srcdir="${src.dir}" destdir="${classes.dir}" source="1.4" debug="${debug}" deprecation="${deprecation}">
    1.11              <classpath path="${cp}"/>
    1.12          </javac>
     2.1 --- a/ant.freeform.samples/templates/anagram/lib/build.xml	Tue Jun 13 12:33:06 2006 +0000
     2.2 +++ b/ant.freeform.samples/templates/anagram/lib/build.xml	Wed Jun 14 01:02:48 2006 +0000
     2.3 @@ -13,6 +13,9 @@
     2.4  
     2.5      <target name="compile" depends="-init" description="Compile main sources.">
     2.6          <mkdir dir="${classes.dir}"/>
     2.7 +        <depend srcdir="${src.dir}" destdir="${classes.dir}" cache="build/depcache">
     2.8 +            <classpath path="${cp}"/>
     2.9 +        </depend>
    2.10          <javac srcdir="${src.dir}" destdir="${classes.dir}" source="1.4" debug="${debug}" deprecation="${deprecation}">
    2.11              <classpath path="${cp}"/>
    2.12          </javac>
    2.13 @@ -37,6 +40,9 @@
    2.14  
    2.15      <target name="compile-tests" depends="compile">
    2.16          <mkdir dir="${test.classes.dir}"/>
    2.17 +        <depend srcdir="${test.dir}" destdir="${test.classes.dir}" cache="build/test-depcache">
    2.18 +            <classpath path="${test.cp}"/>
    2.19 +        </depend>
    2.20          <javac srcdir="${test.dir}" destdir="${test.classes.dir}" source="1.4" debug="true" deprecation="${deprecation}">
    2.21              <classpath path="${test.cp}"/>
    2.22          </javac>
     3.1 --- a/ant.freeform.samples/templates/anagram/lib/nbproject/file-targets.xml	Tue Jun 13 12:33:06 2006 +0000
     3.2 +++ b/ant.freeform.samples/templates/anagram/lib/nbproject/file-targets.xml	Wed Jun 14 01:02:48 2006 +0000
     3.3 @@ -6,6 +6,9 @@
     3.4      <target name="compile-selected" depends="-init">
     3.5          <fail unless="includes">Must set property 'includes'</fail>
     3.6          <mkdir dir="${classes.dir}"/>
     3.7 +        <depend srcdir="${src.dir}" destdir="${classes.dir}" cache="build/depcache">
     3.8 +            <classpath path="${cp}"/>
     3.9 +        </depend>
    3.10          <javac srcdir="${src.dir}" destdir="${classes.dir}" source="1.4" debug="${debug}" deprecation="${deprecation}" includes="${includes}">
    3.11              <classpath path="${cp}"/>
    3.12          </javac>
    3.13 @@ -14,6 +17,9 @@
    3.14      <target name="compile-selected-test" depends="compile">
    3.15          <fail unless="includes">Must set property 'includes'</fail>
    3.16          <mkdir dir="${test.classes.dir}"/>
    3.17 +        <depend srcdir="${test.dir}" destdir="${test.classes.dir}" cache="build/test-depcache">
    3.18 +            <classpath path="${test.cp}"/>
    3.19 +        </depend>
    3.20          <javac srcdir="${test.dir}" destdir="${test.classes.dir}" source="1.4" debug="true" deprecation="${deprecation}" includes="${includes}">
    3.21              <classpath path="${test.cp}"/>
    3.22          </javac>
     4.1 --- a/ant.freeform.samples/templates/anagram/lib/nbproject/netbeans-targets.xml	Tue Jun 13 12:33:06 2006 +0000
     4.2 +++ b/ant.freeform.samples/templates/anagram/lib/nbproject/netbeans-targets.xml	Wed Jun 14 01:02:48 2006 +0000
     4.3 @@ -35,6 +35,9 @@
     4.4      </target>
     4.5      
     4.6      <target name="debug-fix" depends="-init">
     4.7 +        <depend srcdir="${src.dir}" destdir="${classes.dir}" cache="build/depcache">
     4.8 +            <classpath path="${cp}"/>
     4.9 +        </depend>
    4.10          <javac srcdir="${src.dir}" destdir="${classes.dir}" source="1.4" debug="true" deprecation="${deprecation}">
    4.11              <classpath path="${cp}"/>
    4.12              <include name="${class}.java"/>
     5.1 --- a/ant.freeform.samples/templates/anagram/nbproject/file-targets.xml	Tue Jun 13 12:33:06 2006 +0000
     5.2 +++ b/ant.freeform.samples/templates/anagram/nbproject/file-targets.xml	Wed Jun 14 01:02:48 2006 +0000
     5.3 @@ -6,6 +6,9 @@
     5.4      <target name="compile-selected" depends="-init">
     5.5          <fail unless="includes">Must set property 'includes'</fail>
     5.6          <mkdir dir="${classes.dir}"/>
     5.7 +        <depend srcdir="${src.dir}" destdir="${classes.dir}" cache="build/depcache">
     5.8 +            <classpath path="${cp}"/>
     5.9 +        </depend>
    5.10          <javac srcdir="${src.dir}" destdir="${classes.dir}" source="1.4" debug="${debug}" deprecation="${deprecation}" includes="${includes}">
    5.11              <classpath path="${cp}"/>
    5.12          </javac>
     6.1 --- a/ant.freeform.samples/templates/anagram/nbproject/netbeans-targets.xml	Tue Jun 13 12:33:06 2006 +0000
     6.2 +++ b/ant.freeform.samples/templates/anagram/nbproject/netbeans-targets.xml	Wed Jun 14 01:02:48 2006 +0000
     6.3 @@ -18,6 +18,9 @@
     6.4      </target>
     6.5      
     6.6      <target name="debug-fix" depends="-init">
     6.7 +        <depend srcdir="${src.dir}" destdir="${classes.dir}" cache="build/depcache">
     6.8 +            <classpath path="${cp}"/>
     6.9 +        </depend>
    6.10          <javac srcdir="${src.dir}" destdir="${classes.dir}" source="1.4" debug="true" deprecation="${deprecation}">
    6.11              <classpath path="${cp}"/>
    6.12              <include name="${class}.java"/>
     7.1 --- a/ant.freeform.samples/templates/skeletal/build.xml	Tue Jun 13 12:33:06 2006 +0000
     7.2 +++ b/ant.freeform.samples/templates/skeletal/build.xml	Wed Jun 14 01:02:48 2006 +0000
     7.3 @@ -13,6 +13,9 @@
     7.4  
     7.5      <target name="compile" depends="-init" description="Compile main sources.">
     7.6          <mkdir dir="${classes.dir}"/>
     7.7 +        <depend srcdir="${src.dir}" destdir="${classes.dir}" cache="build/depcache">
     7.8 +            <classpath path="${cp}"/>
     7.9 +        </depend>
    7.10          <javac srcdir="${src.dir}" destdir="${classes.dir}" source="1.5" debug="${debug}" deprecation="${deprecation}">
    7.11              <classpath path="${cp}"/>
    7.12              <compilerarg value="-Xlint:unchecked"/>
    7.13 @@ -38,6 +41,9 @@
    7.14  
    7.15      <target name="compile-tests" depends="compile">
    7.16          <mkdir dir="${test.classes.dir}"/>
    7.17 +        <depend srcdir="${test.dir}" destdir="${test.classes.dir}" cache="build/test-depcache">
    7.18 +            <classpath path="${test.cp}"/>
    7.19 +        </depend>
    7.20          <javac srcdir="${test.dir}" destdir="${test.classes.dir}" source="1.5" debug="true" deprecation="${deprecation}">
    7.21              <classpath path="${test.cp}"/>
    7.22              <compilerarg value="-Xlint:unchecked"/>
     8.1 --- a/ant.freeform.samples/templates/skeletal/nbproject/file-targets.xml	Tue Jun 13 12:33:06 2006 +0000
     8.2 +++ b/ant.freeform.samples/templates/skeletal/nbproject/file-targets.xml	Wed Jun 14 01:02:48 2006 +0000
     8.3 @@ -6,6 +6,9 @@
     8.4      <target name="compile-selected" depends="-init">
     8.5          <fail unless="includes">Must set property 'includes'</fail>
     8.6          <mkdir dir="${classes.dir}"/>
     8.7 +        <depend srcdir="${src.dir}" destdir="${classes.dir}" cache="build/depcache">
     8.8 +            <classpath path="${cp}"/>
     8.9 +        </depend>
    8.10          <javac srcdir="${src.dir}" destdir="${classes.dir}" source="1.5" debug="${debug}" deprecation="${deprecation}" includes="${includes}">
    8.11              <classpath path="${cp}"/>
    8.12              <compilerarg value="-Xlint:unchecked"/>
    8.13 @@ -15,6 +18,9 @@
    8.14      <target name="compile-selected-test" depends="compile">
    8.15          <fail unless="includes">Must set property 'includes'</fail>
    8.16          <mkdir dir="${test.classes.dir}"/>
    8.17 +        <depend srcdir="${test.dir}" destdir="${test.classes.dir}" cache="build/test-depcache">
    8.18 +            <classpath path="${test.cp}"/>
    8.19 +        </depend>
    8.20          <javac srcdir="${test.dir}" destdir="${test.classes.dir}" source="1.5" debug="true" deprecation="${deprecation}" includes="${includes}">
    8.21              <classpath path="${test.cp}"/>
    8.22              <compilerarg value="-Xlint:unchecked"/>
     9.1 --- a/ant.freeform.samples/templates/skeletal/nbproject/netbeans-targets.xml	Tue Jun 13 12:33:06 2006 +0000
     9.2 +++ b/ant.freeform.samples/templates/skeletal/nbproject/netbeans-targets.xml	Wed Jun 14 01:02:48 2006 +0000
     9.3 @@ -35,6 +35,9 @@
     9.4      </target>
     9.5      
     9.6      <target name="debug-fix" depends="-init">
     9.7 +        <depend srcdir="${src.dir}" destdir="${classes.dir}" cache="build/depcache">
     9.8 +            <classpath path="${cp}"/>
     9.9 +        </depend>
    9.10          <javac srcdir="${src.dir}" destdir="${classes.dir}" source="1.5" debug="true" deprecation="${deprecation}">
    9.11              <classpath path="${cp}"/>
    9.12              <compilerarg value="-Xlint:unchecked"/>