Revision 12272 trunk/extensions/extDataLocator/build.xml

View differences:

build.xml
18 18
	<property name="fmapJar" location="../libFMap/dist/lib/fmap.jar"/>
19 19
	<property name="gvsigJar" location="${extensionsDir}/${mainplugin}/lib/${mainplugin}.jar"/>
20 20
	<property name="compile-classpath" value="${andamiJar}:${gvsigJar}:${andamiLibs}/beans.jar:${fmapLibs}/cms.jar:${fmapLibs}/driver-manager-1.1.jar:${fmapJar}:${fmapLibs}/gdbms-0.8-SNAPSHOT.jar:${fmapLibs}/gvsig-exceptions.jar:${andamiLibs}/iver-utiles.jar" />
21
	<property name="JavaSourceVersion" value="1.4"/>
22
	<property name="JavaTargetVersion" value="1.4"/>
23
	<property name="encoding" value="ISO_8859_1"/>
24
	<property name="debug" value="on"/>
25
	<property name="debuglevel" value="lines, vars"/>
21 26

  
27

  
22 28
  <target name="init">
23 29
    <!-- Create the time stamp -->
24 30
    <tstamp/>
......
122 128
		<mkdir dir="${build}" />
123 129
		<javac  srcdir="${src}"
124 130
			destdir="${build}"
125
			source="1.4"
126
			target="1.4"
131
			source="${JavaSourceVersion}"
132
			target="${JavaTargetVersion}"
127 133
			debug="${debug}"
128 134
			debuglevel="${debuglevel}"
129
			classpath="${compile-classpath}"/>
135
			classpath="${compile-classpath}"
136
			encoding="${encoding}"/>
130 137
	</target>
131 138
	
132 139
	<target name="create-jar"

Also available in: Unified diff