Update of /cvsroot/squirrel-sql/sql12/plugins/cache
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv26360/plugins/cache
Modified Files:
plugin_build.xml
Log Message:
Added missing source/target attributes for specifying that the output should be compatible with the lowest supported java version, which is currently 1.5.
Index: plugin_build.xml
===================================================================
RCS file: /cvsroot/squirrel-sql/sql12/plugins/cache/plugin_build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** plugin_build.xml 18 May 2008 16:13:13 -0000 1.2
--- plugin_build.xml 26 May 2008 15:03:23 -0000 1.3
***************
*** 1,5 ****
<?xml version="1.0"?>
<!--
! This is an Apache Ant build file to build the SQL script plugin
for distribution.
-->
--- 1,5 ----
<?xml version="1.0"?>
<!--
! This is an Apache Ant build file to build the Cache plugin
for distribution.
-->
***************
*** 13,18 ****
<property name="optimize" value="off"/>
<property name="deprecation" value="on"/>
! <!-- adjust these lines to your need -->
<!--
<property name="p_plugin.work_dir" value="/home/gerd/work/java/squirrel1_2/squirrel-sql-dist/squirrel-sql/cache"/>
--- 13,19 ----
<property name="optimize" value="off"/>
<property name="deprecation" value="on"/>
+ <property name="targetVM" value="1.5"/>
! <!-- adapt these lines to your need -->
<!--
<property name="p_plugin.work_dir" value="/home/gerd/work/java/squirrel1_2/squirrel-sql-dist/squirrel-sql/cache"/>
***************
*** 51,55 ****
debug="${debug}"
optimize="${optimize}"
! includeJavaRuntime="yes">
<classpath>
<fileset dir="lib">
--- 52,58 ----
debug="${debug}"
optimize="${optimize}"
! includeJavaRuntime="yes"
! source="${targetVM}"
! target="${targetVM}">
<classpath>
<fileset dir="lib">
***************
*** 106,112 ****
<!--**********************************************************************-->
-
-
-
<jar jarfile="${p_plugin.dist_dir}/${internal_name}/src.jar" compress="false">
<fileset dir=".">
--- 109,112 ----
|