You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by pf...@apache.org on 2005/03/17 09:20:37 UTC

cvs commit: jakarta-tapestry/contrib build.xml

pferraro    2005/03/17 00:20:37

  Modified:    examples/Tutorial2 Tag: branch-3-0 build.xml
               examples/Vlib Tag: branch-3-0 build.xml
               examples/DevelopmentEnvironment Tag: branch-3-0 build.xml
               examples/VlibBeans Tag: branch-3-0 build.xml
               examples/wap Tag: branch-3-0 build.xml
               junit    Tag: branch-3-0 build.xml
               examples/Workbench Tag: branch-3-0 build.xml
               framework Tag: branch-3-0 build.xml
               contrib  Tag: branch-3-0 build.xml
  Log:
  Explicitly set javac source option to 1.3 to fix compatibility with java 1.5 compiler.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.8.4.1   +1 -1      jakarta-tapestry/examples/Tutorial2/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/Tutorial2/build.xml,v
  retrieving revision 1.8
  retrieving revision 1.8.4.1
  diff -u -r1.8 -r1.8.4.1
  --- build.xml	3 Mar 2003 16:57:14 -0000	1.8
  +++ build.xml	17 Mar 2005 08:20:27 -0000	1.8.4.1
  @@ -70,7 +70,7 @@
   
     <target name="compile" depends="prepare">
       <javac srcdir="${src.dir}"
  -	   destdir="${classes.dir}">
  +	   destdir="${classes.dir}" target="1.1" source="1.3">
         <classpath refid="libs"/>
       </javac>
     </target>
  
  
  
  No                   revision
  No                   revision
  1.32.2.1  +2 -2      jakarta-tapestry/examples/Vlib/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/Vlib/build.xml,v
  retrieving revision 1.32
  retrieving revision 1.32.2.1
  diff -u -r1.32 -r1.32.2.1
  --- build.xml	10 Mar 2004 19:24:38 -0000	1.32
  +++ build.xml	17 Mar 2005 08:20:28 -0000	1.32.2.1
  @@ -29,7 +29,7 @@
   	<target name="compile" depends="init"
   		description="Compile all classes in the framework.">
   		<javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on"
  -			target="1.1">
  +			target="1.1" source="1.3">
   			<classpath refid="compile.classpath"/>
   		</javac>
   	</target>
  
  
  
  No                   revision
  No                   revision
  1.3.4.1   +1 -1      jakarta-tapestry/examples/DevelopmentEnvironment/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/DevelopmentEnvironment/build.xml,v
  retrieving revision 1.3
  retrieving revision 1.3.4.1
  diff -u -r1.3 -r1.3.4.1
  --- build.xml	3 Mar 2003 16:57:15 -0000	1.3
  +++ build.xml	17 Mar 2005 08:20:31 -0000	1.3.4.1
  @@ -67,7 +67,7 @@
   
     <target name="compile" depends="prepare">
       <javac srcdir="${src.dir}"
  -	   destdir="${classes.dir}">
  +	   destdir="${classes.dir}" target="1.1" source="1.3">
         <classpath refid="libs"/>
       </javac>
     </target>
  
  
  
  No                   revision
  No                   revision
  1.17.2.1  +2 -2      jakarta-tapestry/examples/VlibBeans/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/VlibBeans/build.xml,v
  retrieving revision 1.17
  retrieving revision 1.17.2.1
  diff -u -r1.17 -r1.17.2.1
  --- build.xml	10 Mar 2004 19:24:38 -0000	1.17
  +++ build.xml	17 Mar 2005 08:20:31 -0000	1.17.2.1
  @@ -26,7 +26,7 @@
   	<target name="compile" depends="init"
   		description="Compile all classes in the JAR.">
   		<javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on"
  -			target="1.1">
  +			target="1.1" source="1.3">
   			<classpath refid="compile.classpath"/>
   		</javac>
   	</target>
  
  
  
  No                   revision
  No                   revision
  1.27.2.1  +2 -2      jakarta-tapestry/examples/wap/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/wap/build.xml,v
  retrieving revision 1.27
  retrieving revision 1.27.2.1
  diff -u -r1.27 -r1.27.2.1
  --- build.xml	10 Mar 2004 19:24:38 -0000	1.27
  +++ build.xml	17 Mar 2005 08:20:31 -0000	1.27.2.1
  @@ -26,7 +26,7 @@
   	<target name="compile" depends="init"
   		description="Compile all classes in the tutorial.">
   		<javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on"
  -			target="1.1">
  +			target="1.1" source="1.3">
   			<classpath refid="compile.classpath"/>
   		</javac>
   	</target>
  
  
  
  No                   revision
  No                   revision
  1.36.2.1  +2 -2      jakarta-tapestry/junit/Attic/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/junit/Attic/build.xml,v
  retrieving revision 1.36
  retrieving revision 1.36.2.1
  diff -u -r1.36 -r1.36.2.1
  --- build.xml	10 Mar 2004 19:24:38 -0000	1.36
  +++ build.xml	17 Mar 2005 08:20:31 -0000	1.36.2.1
  @@ -50,7 +50,7 @@
     </target>
   
     <target name="compile" depends="init" description="Compile all test classes.">
  -    <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on" target="1.1">
  +    <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on" target="1.1" source="1.3">
         <classpath refid="compile-tests.classpath"/>
       </javac>
     </target>
  
  
  
  No                   revision
  No                   revision
  1.10.2.1  +2 -2      jakarta-tapestry/examples/Workbench/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/examples/Workbench/build.xml,v
  retrieving revision 1.10
  retrieving revision 1.10.2.1
  diff -u -r1.10 -r1.10.2.1
  --- build.xml	10 Mar 2004 19:24:38 -0000	1.10
  +++ build.xml	17 Mar 2005 08:20:33 -0000	1.10.2.1
  @@ -29,7 +29,7 @@
   	<target name="compile" depends="init"
   		description="Compile all classes in the tutorial.">
   		<javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on"
  -			target="1.1">
  +			target="1.1" source="1.3">
   			<classpath refid="compile.classpath"/>
   		</javac>
   	</target>
  
  
  
  No                   revision
  No                   revision
  1.28.2.1  +2 -2      jakarta-tapestry/framework/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/build.xml,v
  retrieving revision 1.28
  retrieving revision 1.28.2.1
  diff -u -r1.28 -r1.28.2.1
  --- build.xml	10 Mar 2004 19:24:38 -0000	1.28
  +++ build.xml	17 Mar 2005 08:20:35 -0000	1.28.2.1
  @@ -24,7 +24,7 @@
   	<target name="compile" depends="init"
   		description="Compile all classes in the framework.">
   		<javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on"
  -			target="1.1">
  +			target="1.1" source="1.3">
   			<classpath refid="project.class.path"/>
   		</javac>
   	</target>
  
  
  
  No                   revision
  No                   revision
  1.21.2.1  +2 -2      jakarta-tapestry/contrib/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/contrib/build.xml,v
  retrieving revision 1.21
  retrieving revision 1.21.2.1
  diff -u -r1.21 -r1.21.2.1
  --- build.xml	10 Mar 2004 19:24:38 -0000	1.21
  +++ build.xml	17 Mar 2005 08:20:37 -0000	1.21.2.1
  @@ -27,7 +27,7 @@
   	<target name="compile" depends="init"
   		description="Compile all classes in the framework.">
   		<javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on"
  -			target="1.1">
  +			target="1.1" source="1.3">
   			<classpath refid="project.classpath"/>
   		</javac>
   	</target>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-dev-help@jakarta.apache.org