Revision 7012

View differences:

tags/vBefore3D_Branch/applications/appgvSIG/A.txt
1
 ============================================================================
2
                   The Apache Software License, Version 1.1
3
 ============================================================================
4
 
5
 Copyright (C) 2000 The Apache Software Foundation. All rights reserved.
6
 
7
 Redistribution and use in source and binary forms, with or without modifica-
8
 tion, are permitted provided that the following conditions are met:
9
 
10
 1. Redistributions of  source code must  retain the above copyright  notice,
11
    this list of conditions and the following disclaimer.
12
 
13
 2. Redistributions in binary form must reproduce the above copyright notice,
14
    this list of conditions and the following disclaimer in the documentation
15
    and/or other materials provided with the distribution.
16
 
17
 3. The end-user documentation included with the redistribution, if any, must
18
    include  the following  acknowledgment:  "This product includes  software
19
    developed  by the  Apache Software Foundation  (http://www.apache.org/)."
20
    Alternately, this  acknowledgment may  appear in the software itself,  if
21
    and wherever such third-party acknowledgments normally appear.
22
 
23
 4. The names "Batik" and  "Apache Software Foundation"  must not be  used to
24
    endorse  or promote  products derived  from this  software without  prior
25
    written permission. For written permission, please contact
26
    apache@apache.org.
27
 
28
 5. Products  derived from this software may not  be called "Apache", nor may
29
    "Apache" appear  in their name,  without prior written permission  of the
30
    Apache Software Foundation.
31
 
32
 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
33
 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
34
 FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
35
 APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
36
 INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
37
 DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
38
 OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
39
 ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
40
 (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
41
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
 
43
 This software  consists of voluntary contributions made  by many individuals
44
 on  behalf  of the Apache Software  Foundation. For more  information on the
45
 Apache Software Foundation, please see <http://www.apache.org/>.
0 46

  
tags/vBefore3D_Branch/applications/appgvSIG/build.xml
1
<project name="Generar extension en MDIAPP" default="dist" basedir=".">
2
    <description>
3
        Instala el plugin
4
    </description>
5
	<!-- set global properties for this build -->
6
	<!-- <property name="buildDate" value="20041018"/> -->
7
	<property name="version" value="1.0 beta ${eclipse.startTime}"/>
8
	<property name="src" location="src"/>
9
	<property name="build" location="bin"/>
10
	<property name="dist"  location="dist"/>
11
	<property name="lib"   location="lib"/>
12
	<property name="plugin" value="com.iver.cit.gvsig"/>
13
	<property name="fmapdir" value="../libFMap"/>
14
	<property name="extensionDir" location="../_fwAndami/gvSIG/extensiones"/>
15
	<property name="andamiLibs" location="../_fwAndami/lib"/>
16
	<property name="fmapLibs"   location="../libFMap/lib"/>
17
	<property name="andamiJar"  location="../_fwAndami/andami.jar"/>
18
	<property name="makeZip" location="makeZip"/>
19
	<property name="zipName" value="gvSIG-${version}"/>
20
	<property name="build-doc" value="build-doc"/>
21
	<property name="compile-classpath" value="${lib}/batik-awt-util.jar:${lib}/batik-bridge.jar:${lib}/batik-css.jar:${lib}/batik-dom.jar:${lib}/batik-ext.jar:${lib}/batik-extension.jar:${lib}/batik-gui-util.jar:${lib}/batik-gvt.jar:${lib}/batik-parser.jar:${lib}/batik-script.jar:${lib}/batik-svg-dom.jar:${lib}/batik-svggen.jar:${lib}/batik-swing.jar:${lib}/batik-transcoder.jar:${lib}/batik-util.jar:${lib}/batik-xml.jar:${andamiLibs}/beans.jar:${andamiLibs}/castor-0.9.5.3-xml.jar:${fmapLibs}/cms.jar:${fmapLibs}/driver-manager-1.1.jar:${fmapLibs}/fmap.jar:${fmapLibs}/geoapi-2.0.jar:${fmapLibs}/gdbms-0.8-SNAPSHOT.jar:${fmapLibs}/gt2-legacy.jar:${fmapLibs}/gt2-main.jar:${fmapLibs}/gt2-postgis.jar:${fmapLibs}/gt2-wfs.jar:${fmapLibs}/gt2-wms.jar:${lib}/itext-1.4.2.jar:${fmapLibs}/jecw-0.0.1.jar:${lib-fmap}/jecwcompress-0.0.0.jar:${andamiJar}:${lib}/jep-2.24.jar:${lib-fmap}/jgdal-0.1.0.jar:${lib}/JimiProClasses.zip:${fmapLibs}/jogr.jar:${fmapLibs}/jts-1.7.jar:${lib}/junit.jar:${andamiLibs}/JWizardComponent.jar:${andamiLibs}/iver-utiles.jar:${andamiLibs}/log4j-1.2.8.jar:${andamiLibs}/looks-2.0.2.jar:${lib}/js.jar:${lib}/pdf-transcoder.jar:${lib-fmap}/units-0.01.jar:${lib-fmap}/wmsclient.jar:${lib}/xml-apis.jar:"/>
22
		
23
	<target name="init">
24
		<!-- Create the time stamp -->
25
		<tstamp/>
26
		<!-- Create the build directory structure used by compile -->
27
		<mkdir dir="${build}"/>
28
		<!-- Creamos un fichero con el timeStamp para que lo lea el FPanelAbout -->
29
		<!-- <buildnumber/> -->
30
	</target>
31

  
32
	<target name="build-doc" depends="" description="Genera un zip con la documentación">
33
		<javadoc
34
			packagenames="com.iver.cit.gvsig.*"
35
			sourcepath="src"
36
			defaultexcludes="yes"
37
			destdir="${build-doc}/gvSIG-api"
38
			windowtitle="gvSIG API">
39
		</javadoc>
40
	</target>
41

  
42
	<target name="dist"
43
				depends="init"
44
				description="generate the distribution" >
45
		<!-- Create the distribution directory -->
46
		<mkdir dir="${dist}"/>
47

  
48
		<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
49
		<copy todir="${dist}/lib">
50
			<fileset dir="./lib" includes="*.jar,*.zip"/>
51
		</copy>
52
		<copy todir="${dist}/lib">
53
			<fileset dir="${fmapdir}/lib" includes="*.jar"/>
54
		</copy>
55
		<jar jarfile="${dist}/lib/fmap.jar" basedir="${fmapdir}/bin"/>
56
		<jar jarfile="${dist}/lib/${plugin}.jar" basedir="${build}"/>
57
		<copy file="config/config.xml" todir="${dist}"/>
58
		<copy file="config/about.htm" todir="${dist}"/>
59
		<copy file="build.number" todir="${dist}"/>
60
		<copy todir="${dist}">
61
			<fileset dir="config" includes="text*.properties"/>
62
		</copy>
63
		<copy todir="${dist}/images">
64
			<fileset dir="images/" includes="*"/>
65
		</copy>
66
		<copy todir="${dist}/northimages">
67
			<fileset dir="northimages/" includes="*"/>
68
		</copy>
69

  
70
		<move todir="${extensionDir}/${plugin}/">
71
			<fileset dir="${dist}" includes="**/**"/>
72
		</move>
73
	</target>
74

  
75
  <target name="makeZip"
76
  	description="Genera un zip con todo lo necesario para ejecutar gvSIG"
77
  	depends="dist">
78
    <!-- Create the distribution directory -->
79
    <mkdir dir="${dist}/${zipName}"/>
80
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/bin" manifest="../mdiApp/manifest.mf"/>
81
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/" includes="images/*" update="true"/>
82
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/" includes="plugin.dtd" update="true"/>
83
    <copy todir="${dist}/${zipName}">
84
		<fileset dir="../mdiApp">
85
			<include name="extensiones/${plugin}/**"/>
86
			<include name="extensiones/plugin.*"/>
87
			<include name="plugin.*"/>
88
		</fileset>
89
		<!-- fileset dir="${dist}" includes="gvSIG.jar"/ -->
90
		<fileset dir="../mdiApp_v02_estable">
91
			<include name="lib/**"/>
92
		</fileset>
93
		<fileset dir="distFiles" includes="**/**"/>
94
    </copy>
95
	<zip zipfile="${zipName}.zip">
96
		<fileset dir="${dist}">
97
			<include name="**/**"/>
98
		</fileset>
99
	</zip>
100
 <!--   <delete dir="${dist}"/> -->
101
  </target>
102
	
103
	<target name="batch-build"
104
			description="compile the sources, create the jar file"
105
			depends="get-fmap-libs,compile,create-jar,copy-libs,copy-data-files,move-to-andami">
106
	</target>
107
	
108
	<target name="compile" description="compile the source">
109
		<!-- Create the time stamp -->
110
		<tstamp/>
111
		<!-- Create the build directory structure used by compile -->
112
		<mkdir dir="${build}"/>
113
		<!-- Creamos un fichero con el timeStamp para que lo lea el FPanelAbout -->
114
		<buildnumber />
115
		<!-- Compile the Java code from ${src} to ${build} -->
116
		<javac  srcdir="${src}"
117
			destdir="${build}"
118
			source="1.4"
119
			target="1.4"
120
			debug="${debug}"
121
			debuglevel="${debuglevel}"
122
			classpath="${compile-classpath}"
123
			excludes="com/iver/cit/gvsig/test/**"/>
124
	</target>	
125

  
126
	<target name="create-jar" description="Creates the jar file">
127
		<mkdir dir="${dist}/lib"/>
128
		<jar jarfile="${dist}/lib/${plugin}.jar" basedir="${build}"/>
129
	</target>
130
	
131
	<target name="copy-libs"
132
		depends="get-fmap-libs">
133
		<mkdir dir="${dist}"/>
134
		<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
135
		<copy todir="${dist}/lib">
136
			<fileset dir="./lib" includes="*.jar,*.zip"/>
137
		</copy>
138
	</target>
139
	
140
	<target name="get-fmap-libs">
141
		<copy todir="${dist}/lib">
142
			<fileset dir="${fmapdir}/lib" includes="*.jar"/>
143
		</copy>
144
		<jar jarfile="${dist}/lib/fmap.jar" basedir="${fmapdir}/bin"/>
145
		<copy file="${dist}/lib/fmap.jar" todir="${extensionDir}/${plugin}/lib"/>
146
	</target>
147
	
148
	<target name="copy-data-files">
149
        <copy todir="${dist}">
150
                <fileset dir="config" includes="*" />
151
        </copy>
152
		<copy file="build.number" todir="${dist}"/>
153
		<copy todir="${dist}/images">
154
			<fileset dir="images/" includes="*"/>
155
		</copy>
156
		<copy todir="${dist}/northimages">
157
			<fileset dir="northimages/" includes="*"/>
158
		</copy>
159
    </target>
160
	
161
	<target name="move-to-andami" description="Moves the build directory to andami">
162
		<move todir="${extensionDir}/${plugin}/">
163
			<fileset dir="${dist}" includes="**/**"/>
164
		</move>
165
	</target>
166

  
167
	<target name="clean"
168
			description="clean up" >
169
		<!-- Delete the ${build} and ${dist} directory trees -->
170
		<delete dir="${build}"/>
171
<!--		<delete dir="${dist}"/> -->
172
	</target>
173
	
174
	
175
	<!-- the global build starts here -->
176
	<property name="andami" location="../_fwAndami"/>
177
	<property name="utiles" location="../libIverUtiles"/>
178
	<property name="core" location="../libCorePlugin"/>
179
	<property name="driver" location="../libDriverManager"/>
180
	<property name="cms" location="../libCq CMS for java"/>
181
	<property name="fmap" location="../libFMap"/>
182
	<property name="gvSIG" location="../appgvSIG"/>
183
	<property name="remote" location="../libRemoteServices"/>
184
	<property name="gdbms" location="../libGDBMS"/>
185
	<property name="i18n" location="../libInternationalization"/>
186
	<property name="appcatalog" location="../appCatalogYNomenclatorClient"/>
187
	<property name="catalog" location="../extCatalogYNomenclator"/>
188
	<property name="dataloc" location="../extDataLocator"/>
189
	<property name="event" location="../extAddEventTheme"/>
190
	<property name="libdwg" location="../libDwg"/>
191
	<property name="extdwg" location="../extDwg"/>
192
	<property name="cad" location="../extCAD"/>
193
	<property name="geoprocessing" location="../extGeoProcessing"/>
194
	<property name="georeferencing" location="../extGeoreferencing"/>
195
	<property name="jdbc" location="../extJDBC"/>
196
	<property name="rastertools" location="../extRasterTools"/>
197
	<property name="wcs" location="../extWCS"/>
198
	<property name="wfs" location="../extWFS2"/>
199
	<property name="wms" location="../extWMS"/>
200
	<property name="scripting" location="../extScripting"/>
201
	<property name="centerview" location="../extCenterViewToPoint"/>
202
	<property name="libui" location="../libUI"/>
203
	<property name="global.installBaseDir" location="${andami}"/>
204

  
205
	<target name="build-all"
206
				depends="debug-yes,base,extensions"
207
				description="Builds the application, including extensions" />
208
	
209
	<target name="eclipse-build-all"
210
					depends="debug-no,base,extensions"
211
					description="Builds the application, including extensions, producing debug info" />
212
	
213
	<target name="debug-yes">
214
		<property name="debug" value="on"/>
215
		<property name="debuglevel" value="lines, vars"/>
216
	</target>
217
	
218
	<target name="debug-no">
219
		<property name="debug" value="off"/>
220
	</target>
221
	
222
	<target name="eclipse-base" depends="debug-yes,base" />
223
	<target name="eclipse-extensions" depends="debug-yes,base,extensions" />
224
	
225
	<target name="base"
226
			description="Builds the application, excluding extensions">
227
		<ant dir="${utiles}" target="batch-build" inheritAll="false">
228
			<property name="debug" value="${debug}"/>
229
			<property name="debuglevel" value="${debuglevel}"/>
230
			<property name="encoding" value="ISO_8859_1"/>
231
		</ant>
232
  		<ant dir="${i18n}" target="batch-build" inheritAll="false">
233
			<property name="debug" value="${debug}"/>
234
			<property name="debuglevel" value="${debuglevel}"/>
235
			<property name="encoding" value="ISO_8859_1"/>
236
		</ant>
237
		<ant dir="${andami}" target="batch-build"  inheritAll="false">
238
			<property name="debug" value="${debug}"/>
239
			<property name="debuglevel" value="${debuglevel}"/>
240
			<property name="encoding" value="ISO_8859_1"/>
241
		</ant>
242
		<ant dir="${libui}" target="batch-build" inheritAll="false">
243
			<property name="debug" value="${debug}"/>
244
			<property name="debuglevel" value="${debuglevel}"/>
245
		<property name="installBaseDir" value="${global.installBaseDir}"/>
246
			<property name="encoding" value="ISO_8859_1"/>
247
		</ant>
248
		<ant dir="${core}" target="batch-build"  inheritAll="false">
249
			<property name="debug" value="${debug}"/>
250
			<property name="debuglevel" value="${debuglevel}"/>
251
			<property name="encoding" value="ISO_8859_1"/>
252
		</ant>
253
		<ant dir="${cms}" target="batch-build"  inheritAll="false">
254
			<property name="debug" value="${debug}"/>
255
			<property name="debuglevel" value="${debuglevel}"/>
256
			<property name="encoding" value="ISO_8859_1"/>
257
		</ant>
258
		<ant dir="${driver}" target="batch-build"  inheritAll="false">
259
			<property name="debug" value="${debug}"/>
260
			<property name="debuglevel" value="${debuglevel}"/>
261
			<property name="encoding" value="ISO_8859_1"/>
262
		</ant>
263
		<ant dir="${remote}" target="batch-build"  inheritAll="false">
264
			<property name="debug" value="${debug}"/>
265
			<property name="debuglevel" value="${debuglevel}"/>
266
			<property name="encoding" value="ISO_8859_1"/>
267
		</ant>
268
		<ant dir="${gdbms}" target="batch-build" inheritAll="false">
269
			<property name="debug" value="${debug}"/>
270
			<property name="debuglevel" value="${debuglevel}"/>
271
			<property name="encoding" value="ISO_8859_1"/>
272
		</ant>
273
		<ant dir="${fmap}" target="batch-build"  inheritAll="false">
274
			<property name="debug" value="${debug}"/>
275
			<property name="debuglevel" value="${debuglevel}"/>
276
			<property name="encoding" value="ISO_8859_1"/>
277
		</ant>
278
		<ant dir="${gvSIG}" target="batch-build"  inheritAll="false">
279
			<property name="debug" value="${debug}"/>
280
			<property name="debuglevel" value="${debuglevel}"/>
281
			<property name="encoding" value="ISO_8859_1"/>
282
		</ant>
283
	</target>
284
	
285
	<target name="extensions" depends="base">
286
		<ant dir="${event}" target="batch-build" inheritAll="false">
287
			<property name="debug" value="${debug}"/>
288
			<property name="debuglevel" value="${debuglevel}"/>
289
			<property name="encoding" value="ISO_8859_1"/>
290
		</ant>
291
		<ant dir="${libdwg}" target="batch-build" inheritAll="false">
292
			<property name="debug" value="${debug}"/>
293
			<property name="debuglevel" value="${debuglevel}"/>
294
			<property name="encoding" value="ISO_8859_1"/>
295
		</ant>
296
		<ant dir="${extdwg}" target="batch-build" inheritAll="false">
297
			<property name="debug" value="${debug}"/>
298
			<property name="debuglevel" value="${debuglevel}"/>
299
			<property name="encoding" value="ISO_8859_1"/>
300
		</ant>
301
		<ant dir="${jdbc}" target="batch-build" inheritAll="false">
302
			<property name="debug" value="${debug}"/>
303
			<property name="debuglevel" value="${debuglevel}"/>
304
			<property name="encoding" value="ISO_8859_1"/>
305
		</ant>
306
		<ant dir="${cad}" target="batch-build" inheritAll="false">
307
			<property name="debug" value="${debug}"/>
308
			<property name="debuglevel" value="${debuglevel}"/>
309
			<property name="encoding" value="ISO_8859_1"/>
310
		</ant>
311
		<ant dir="${appcatalog}" target="batch-build" inheritAll="false">
312
			<property name="debug" value="${debug}"/>
313
			<property name="debuglevel" value="${debuglevel}"/>
314
			<property name="encoding" value="ISO_8859_1"/>
315
		</ant>
316
		<ant dir="${catalog}" target="batch-build" inheritAll="false">
317
			<property name="debug" value="${debug}"/>
318
			<property name="debuglevel" value="${debuglevel}"/>
319
			<property name="encoding" value="ISO_8859_1"/>
320
		</ant>
321
		<ant dir="${wcs}" target="batch-build" inheritAll="false">
322
			<property name="debug" value="${debug}"/>
323
			<property name="debuglevel" value="${debuglevel}"/>
324
			<property name="encoding" value="ISO_8859_1"/>
325
		</ant>
326
		<ant dir="${wms}" target="batch-build" inheritAll="false">
327
			<property name="debug" value="${debug}"/>
328
			<property name="debuglevel" value="${debuglevel}"/>
329
			<property name="encoding" value="ISO_8859_1"/>
330
		</ant>
331
		<ant dir="${dataloc}" target="batch-build" inheritAll="false">
332
			<property name="debug" value="${debug}"/>
333
			<property name="debuglevel" value="${debuglevel}"/>
334
			<property name="encoding" value="ISO_8859_1"/>
335
		</ant>
336
		<ant dir="${geoprocessing}" target="batch-build" inheritAll="false">
337
			<property name="debug" value="${debug}"/>
338
			<property name="debuglevel" value="${debuglevel}"/>
339
			<property name="encoding" value="ISO_8859_1"/>
340
		</ant>
341
		<ant dir="${georeferencing}" target="batch-build" inheritAll="false">
342
			<property name="debug" value="${debug}"/>
343
			<property name="debuglevel" value="${debuglevel}"/>
344
			<property name="encoding" value="ISO_8859_1"/>
345
		</ant>
346
		<ant dir="${rastertools}" target="batch-build" inheritAll="false">
347
			<property name="debug" value="${debug}"/>
348
			<property name="debuglevel" value="${debuglevel}"/>
349
			<property name="encoding" value="ISO_8859_1"/>
350
		</ant>
351
		<ant dir="${wfs}" target="batch-build" inheritAll="false">
352
			<property name="debug" value="${debug}"/>
353
			<property name="debuglevel" value="${debuglevel}"/>
354
			<property name="encoding" value="ISO_8859_1"/>
355
		</ant>
356
		<ant dir="${centerview}" target="batch-build" inheritAll="false">
357
			<property name="debug" value="${debug}"/>
358
			<property name="debuglevel" value="${debuglevel}"/>
359
			<property name="encoding" value="ISO_8859_1"/>
360
			<property name="installBaseDir" value="${global.installBaseDir}"/>
361
		</ant>
362
		<ant dir="${scripting}" target="batch-build" inheritAll="false">
363
			<property name="debug" value="${debug}"/>
364
			<property name="debuglevel" value="${debuglevel}"/>
365
			<property name="encoding" value="ISO_8859_1"/>
366
			<property name="installBaseDir" value="${global.installBaseDir}"/>
367
		</ant>
368
	</target>
369
	
370
	<target name="clean-all"
371
				depends="clean-base,clean-extensions"
372
				description="clean up" />
373
	
374
	<target name="clean-base">
375
		<!-- Delete the ${build} and ${dist} directory trees -->
376
		<ant dir="${utiles}" target="clean"/>
377
		<ant dir="${i18n}" target="clean"/>
378
		<ant dir="${andami}" target="clean"/>
379
		<ant dir="${core}" target="clean"/>
380
		<ant dir="${cms}" target="clean"/>
381
		<ant dir="${driver}" target="clean"/>
382
		<ant dir="${remote}" target="clean"/>
383
		<ant dir="${gdbms}" target="clean"/>
384
		<ant dir="${fmap}" target="clean"/>
385
		<ant dir="${gvSIG}" target="clean"/>
386
		<ant dir="${libui}" target="clean"/>
387
	</target>
388
	
389
	<target name="clean-extensions">
390
		<ant dir="${event}" target="clean" inheritAll="false" />
391
		<ant dir="${libdwg}" target="clean" inheritAll="false" />
392
		<ant dir="${extdwg}" target="clean" inheritAll="false" />
393
		<ant dir="${jdbc}" target="clean" inheritAll="false" />
394
		<ant dir="${cad}" target="clean" inheritAll="false" />
395
		<ant dir="${appcatalog}" target="clean" inheritAll="false" />
396
		<ant dir="${catalog}" target="clean" inheritAll="false" />
397
		<ant dir="${wcs}" target="clean" inheritAll="false" />
398
		<ant dir="${wms}" target="clean" inheritAll="false" />
399
		<ant dir="${dataloc}" target="clean" inheritAll="false" />
400
		<ant dir="${geoprocessing}" target="clean" inheritAll="false" />
401
		<ant dir="${georeferencing}" target="clean" inheritAll="false" />
402
		<ant dir="${rastertools}" target="clean" inheritAll="false" />
403
		<ant dir="${wfs}" target="clean" inheritAll="false" />
404
		<ant dir="${scripting}" target="clean" inheritAll="false" />
405
		<ant dir="${centerview}" target="clean" inheritAll="false" />
406
	</target>
407

  
408
	<!-- Those targets don't compile, they just generate the jars and copy files to
409
	andami. The compilation is supposed to be done by Eclipse  -->
410
	<target name="install-all"
411
					depends="install-base,install-extensions"
412
					description="Builds the application, including extensions" />
413
		
414
		<target name="install-base"
415
				description="Builds the application, excluding extensions">
416
			<ant dir="${utiles}" inheritAll="false" />
417
	  		<ant dir="${i18n}" inheritAll="false" />
418
			<ant dir="${andami}" inheritAll="false" />
419
			<ant dir="${core}" inheritAll="false" />
420
			<ant dir="${cms}" inheritAll="false" />
421
			<ant dir="${driver}" inheritAll="false" />
422
			<ant dir="${remote}" inheritAll="false" />
423
			<ant dir="${gdbms}" inheritAll="false" />
424
			<ant dir="${fmap}" inheritAll="false" />
425
			<ant dir="${gvSIG}" inheritAll="false" />
426
	<!--		<ant dir="${libui}" inheritAll="false" /> -->
427
		</target>
428
		
429
		<target name="install-extensions" depends="base">
430
			<ant dir="${event}" inheritAll="false" />
431
			<ant dir="${libdwg}" inheritAll="false" />
432
			<ant dir="${extdwg}" inheritAll="false" />
433
			<ant dir="${jdbc}" inheritAll="false" />
434
			<ant dir="${cad}" inheritAll="false" />
435
			<ant dir="${appcatalog}" inheritAll="false" />
436
			<ant dir="${catalog}" inheritAll="false" />
437
			<ant dir="${wcs}" inheritAll="false" />
438
			<ant dir="${wms}" inheritAll="false" />
439
			<ant dir="${dataloc}" inheritAll="false" />
440
			<ant dir="${geoprocessing}" inheritAll="false" />
441
			<ant dir="${georeferencing}" inheritAll="false" />
442
			<ant dir="${rastertools}" inheritAll="false" />
443
			<ant dir="${wfs}" inheritAll="false" />
444
			<ant dir="${scripting}" inheritAll="false" />
445
			<ant dir="${centerview}" inheritAll="false" />	
446
		</target>
447

  
448

  
449
	
450
	
451
	<!-- The download targets are still no working well (or maybe not working at all...) -->
452
	<target name="download"
453
			description="downloads all the projects from the CVS HEAD"
454
			depends="download-base, download-extensions">
455
	</target>
456

  
457
	<target name="download-base">
458
		<property name="downloadDir" value="tmp-download"/>
459
		<mkdir dir="${downloadDir}" />
460
		
461
		<!-- andami -->
462
		<cvs
463
			dest="${downloadDir}"
464
			package="gvSIG-project/frameworks/_fwAndami"
465
			cvsRoot=":extssh:www.gvsig.org:/var/lib/cvs-gvSIG" />
466

  
467
		<move todir="${andami}">
468
			<fileset dir="${downloadDir}/gvSIG-project/frameworks/_fwAndami"/>
469
		</move>
470
		
471
		<!-- we have to do the same for the rest of the projects -->
472
	</target>
473
	
474
	<target name="download-extensions">
475
	</target>
476

  
477
</project>
478

  
0 479

  
tags/vBefore3D_Branch/applications/appgvSIG/.classpath
1
<?xml version="1.0" encoding="UTF-8"?>
2
<classpath>
3
	<classpathentry path="src" kind="src"/>
4
	<classpathentry path="lib/JimiProClasses.zip" kind="lib"/>
5
	<classpathentry path="lib/batik-awt-util.jar" kind="lib"/>
6
	<classpathentry path="lib/batik-ext.jar" kind="lib"/>
7
	<classpathentry path="lib/batik-gui-util.jar" kind="lib"/>
8
	<classpathentry path="lib/batik-gvt.jar" kind="lib"/>
9
	<classpathentry path="lib/batik-util.jar" kind="lib"/>
10
	<classpathentry path="lib/jep-2.24.jar" kind="lib"/>
11
	<classpathentry path="org.eclipse.jdt.launching.JRE_CONTAINER" kind="con"/>
12
	<classpathentry path="/_fwAndami" kind="src"/>
13
	<classpathentry path="lib/batik-bridge.jar" kind="lib"/>
14
	<classpathentry path="lib/batik-transcoder.jar" kind="lib"/>
15
	<classpathentry path="lib/pdf-transcoder.jar" kind="lib"/>
16
	<classpathentry path="lib/batik-css.jar" kind="lib"/>
17
	<classpathentry path="lib/batik-dom.jar" kind="lib"/>
18
	<classpathentry path="lib/batik-extension.jar" kind="lib"/>
19
	<classpathentry path="lib/batik-parser.jar" kind="lib"/>
20
	<classpathentry path="lib/batik-script.jar" kind="lib"/>
21
	<classpathentry path="lib/batik-svg-dom.jar" kind="lib"/>
22
	<classpathentry path="lib/batik-svggen.jar" kind="lib"/>
23
	<classpathentry path="lib/batik-swing.jar" kind="lib"/>
24
	<classpathentry path="lib/batik-xml.jar" kind="lib"/>
25
	<classpathentry path="/libFMap/lib/cms.jar" kind="lib"/>
26
	<classpathentry path="/libFMap/lib/jogr.jar" kind="lib"/>
27
	<classpathentry path="/libFMap/lib/units-0.01.jar" kind="lib"/>
28
	<classpathentry path="/libFMap" kind="src"/>
29
	<classpathentry path="JUNIT_HOME/junit.jar" kind="var"/>
30
	<classpathentry path="/libFMap/lib/gt2-main.jar" kind="lib"/>
31
	<classpathentry path="/libFMap/lib/gt2-postgis.jar" kind="lib"/>
32
	<classpathentry path="/libFMap/lib/gt2-legacy.jar" kind="lib"/>
33
	<classpathentry path="/libFMap/lib/geoapi-2.0.jar" kind="lib"/>
34
	<classpathentry path="/libFMap/lib/jecw-0.0.1.jar" kind="lib"/>
35
	<classpathentry path="/libFMap/lib/jts-1.7.jar" kind="lib"/>
36
	<classpathentry sourcepath="/libGDBMS" path="/libFMap/lib/gdbms-0.8-SNAPSHOT.jar" kind="lib"/>
37
	<classpathentry path="/_fwAndami/lib/castor-0.9.5.3-xml.jar" kind="lib"/>
38
	<classpathentry sourcepath="/Utiles/src" path="/_fwAndami/lib/iver-utiles.jar" kind="lib"/>
39
	<classpathentry path="/_fwAndami/lib/log4j-1.2.8.jar" kind="lib"/>
40
	<classpathentry path="/_fwAndami/lib/xerces_2_5_0.jar" kind="lib"/>
41
	<classpathentry path="/_fwAndami/lib/xml-apis.jar" kind="lib"/>
42
	<classpathentry path="/libFMap/lib/driver-manager-1.1.jar" kind="lib"/>
43
	<classpathentry path="/libFMap/lib/jecwcompress-0.1.0.jar" kind="lib"/>
44
	<classpathentry path="/_fwAndami/lib/beans.jar" kind="lib"/>
45
	<classpathentry path="/_fwAndami/lib/looks-2.0.2.jar" kind="lib"/>
46
	<classpathentry path="/libFMap/lib/jgdal-0.3.1.jar" kind="lib"/>
47
	<classpathentry path="lib/itext-1.4.2.jar" kind="lib"/>
48
	<classpathentry path="/_fwAndami/lib/JWizardComponent.jar" kind="lib"/>
49
	<classpathentry path="bin" kind="output"/>
50
</classpath>
0 51

  
tags/vBefore3D_Branch/applications/appgvSIG/gpl.txt
1
		    GNU GENERAL PUBLIC LICENSE
2
		       Version 2, June 1991
3

  
4
 Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
                       59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
6
 Everyone is permitted to copy and distribute verbatim copies
7
 of this license document, but changing it is not allowed.
8

  
9
			    Preamble
10

  
11
  The licenses for most software are designed to take away your
12
freedom to share and change it.  By contrast, the GNU General Public
13
License is intended to guarantee your freedom to share and change free
14
software--to make sure the software is free for all its users.  This
15
General Public License applies to most of the Free Software
16
Foundation's software and to any other program whose authors commit to
17
using it.  (Some other Free Software Foundation software is covered by
18
the GNU Library General Public License instead.)  You can apply it to
19
your programs, too.
20

  
21
  When we speak of free software, we are referring to freedom, not
22
price.  Our General Public Licenses are designed to make sure that you
23
have the freedom to distribute copies of free software (and charge for
24
this service if you wish), that you receive source code or can get it
25
if you want it, that you can change the software or use pieces of it
26
in new free programs; and that you know you can do these things.
27

  
28
  To protect your rights, we need to make restrictions that forbid
29
anyone to deny you these rights or to ask you to surrender the rights.
30
These restrictions translate to certain responsibilities for you if you
31
distribute copies of the software, or if you modify it.
32

  
33
  For example, if you distribute copies of such a program, whether
34
gratis or for a fee, you must give the recipients all the rights that
35
you have.  You must make sure that they, too, receive or can get the
36
source code.  And you must show them these terms so they know their
37
rights.
38

  
39
  We protect your rights with two steps: (1) copyright the software, and
40
(2) offer you this license which gives you legal permission to copy,
41
distribute and/or modify the software.
42

  
43
  Also, for each author's protection and ours, we want to make certain
44
that everyone understands that there is no warranty for this free
45
software.  If the software is modified by someone else and passed on, we
46
want its recipients to know that what they have is not the original, so
47
that any problems introduced by others will not reflect on the original
48
authors' reputations.
49

  
50
  Finally, any free program is threatened constantly by software
51
patents.  We wish to avoid the danger that redistributors of a free
52
program will individually obtain patent licenses, in effect making the
53
program proprietary.  To prevent this, we have made it clear that any
54
patent must be licensed for everyone's free use or not licensed at all.
55

  
56
  The precise terms and conditions for copying, distribution and
57
modification follow.
58

59
		    GNU GENERAL PUBLIC LICENSE
60
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61

  
62
  0. This License applies to any program or other work which contains
63
a notice placed by the copyright holder saying it may be distributed
64
under the terms of this General Public License.  The "Program", below,
65
refers to any such program or work, and a "work based on the Program"
66
means either the Program or any derivative work under copyright law:
67
that is to say, a work containing the Program or a portion of it,
68
either verbatim or with modifications and/or translated into another
69
language.  (Hereinafter, translation is included without limitation in
70
the term "modification".)  Each licensee is addressed as "you".
71

  
72
Activities other than copying, distribution and modification are not
73
covered by this License; they are outside its scope.  The act of
74
running the Program is not restricted, and the output from the Program
75
is covered only if its contents constitute a work based on the
76
Program (independent of having been made by running the Program).
77
Whether that is true depends on what the Program does.
78

  
79
  1. You may copy and distribute verbatim copies of the Program's
80
source code as you receive it, in any medium, provided that you
81
conspicuously and appropriately publish on each copy an appropriate
82
copyright notice and disclaimer of warranty; keep intact all the
83
notices that refer to this License and to the absence of any warranty;
84
and give any other recipients of the Program a copy of this License
85
along with the Program.
86

  
87
You may charge a fee for the physical act of transferring a copy, and
88
you may at your option offer warranty protection in exchange for a fee.
89

  
90
  2. You may modify your copy or copies of the Program or any portion
91
of it, thus forming a work based on the Program, and copy and
92
distribute such modifications or work under the terms of Section 1
93
above, provided that you also meet all of these conditions:
94

  
95
    a) You must cause the modified files to carry prominent notices
96
    stating that you changed the files and the date of any change.
97

  
98
    b) You must cause any work that you distribute or publish, that in
99
    whole or in part contains or is derived from the Program or any
100
    part thereof, to be licensed as a whole at no charge to all third
101
    parties under the terms of this License.
102

  
103
    c) If the modified program normally reads commands interactively
104
    when run, you must cause it, when started running for such
105
    interactive use in the most ordinary way, to print or display an
106
    announcement including an appropriate copyright notice and a
107
    notice that there is no warranty (or else, saying that you provide
108
    a warranty) and that users may redistribute the program under
109
    these conditions, and telling the user how to view a copy of this
110
    License.  (Exception: if the Program itself is interactive but
111
    does not normally print such an announcement, your work based on
112
    the Program is not required to print an announcement.)
113

114
These requirements apply to the modified work as a whole.  If
115
identifiable sections of that work are not derived from the Program,
116
and can be reasonably considered independent and separate works in
117
themselves, then this License, and its terms, do not apply to those
118
sections when you distribute them as separate works.  But when you
119
distribute the same sections as part of a whole which is a work based
120
on the Program, the distribution of the whole must be on the terms of
121
this License, whose permissions for other licensees extend to the
122
entire whole, and thus to each and every part regardless of who wrote it.
123

  
124
Thus, it is not the intent of this section to claim rights or contest
125
your rights to work written entirely by you; rather, the intent is to
126
exercise the right to control the distribution of derivative or
127
collective works based on the Program.
128

  
129
In addition, mere aggregation of another work not based on the Program
130
with the Program (or with a work based on the Program) on a volume of
131
a storage or distribution medium does not bring the other work under
132
the scope of this License.
133

  
134
  3. You may copy and distribute the Program (or a work based on it,
135
under Section 2) in object code or executable form under the terms of
136
Sections 1 and 2 above provided that you also do one of the following:
137

  
138
    a) Accompany it with the complete corresponding machine-readable
139
    source code, which must be distributed under the terms of Sections
140
    1 and 2 above on a medium customarily used for software interchange; or,
141

  
142
    b) Accompany it with a written offer, valid for at least three
143
    years, to give any third party, for a charge no more than your
144
    cost of physically performing source distribution, a complete
145
    machine-readable copy of the corresponding source code, to be
146
    distributed under the terms of Sections 1 and 2 above on a medium
147
    customarily used for software interchange; or,
148

  
149
    c) Accompany it with the information you received as to the offer
150
    to distribute corresponding source code.  (This alternative is
151
    allowed only for noncommercial distribution and only if you
152
    received the program in object code or executable form with such
153
    an offer, in accord with Subsection b above.)
154

  
155
The source code for a work means the preferred form of the work for
156
making modifications to it.  For an executable work, complete source
157
code means all the source code for all modules it contains, plus any
158
associated interface definition files, plus the scripts used to
159
control compilation and installation of the executable.  However, as a
160
special exception, the source code distributed need not include
161
anything that is normally distributed (in either source or binary
162
form) with the major components (compiler, kernel, and so on) of the
163
operating system on which the executable runs, unless that component
164
itself accompanies the executable.
165

  
166
If distribution of executable or object code is made by offering
167
access to copy from a designated place, then offering equivalent
168
access to copy the source code from the same place counts as
169
distribution of the source code, even though third parties are not
170
compelled to copy the source along with the object code.
171

172
  4. You may not copy, modify, sublicense, or distribute the Program
173
except as expressly provided under this License.  Any attempt
174
otherwise to copy, modify, sublicense or distribute the Program is
175
void, and will automatically terminate your rights under this License.
176
However, parties who have received copies, or rights, from you under
177
this License will not have their licenses terminated so long as such
178
parties remain in full compliance.
179

  
180
  5. You are not required to accept this License, since you have not
181
signed it.  However, nothing else grants you permission to modify or
182
distribute the Program or its derivative works.  These actions are
183
prohibited by law if you do not accept this License.  Therefore, by
184
modifying or distributing the Program (or any work based on the
185
Program), you indicate your acceptance of this License to do so, and
186
all its terms and conditions for copying, distributing or modifying
187
the Program or works based on it.
188

  
189
  6. Each time you redistribute the Program (or any work based on the
190
Program), the recipient automatically receives a license from the
191
original licensor to copy, distribute or modify the Program subject to
192
these terms and conditions.  You may not impose any further
193
restrictions on the recipients' exercise of the rights granted herein.
194
You are not responsible for enforcing compliance by third parties to
195
this License.
196

  
197
  7. If, as a consequence of a court judgment or allegation of patent
198
infringement or for any other reason (not limited to patent issues),
199
conditions are imposed on you (whether by court order, agreement or
200
otherwise) that contradict the conditions of this License, they do not
201
excuse you from the conditions of this License.  If you cannot
202
distribute so as to satisfy simultaneously your obligations under this
203
License and any other pertinent obligations, then as a consequence you
204
may not distribute the Program at all.  For example, if a patent
205
license would not permit royalty-free redistribution of the Program by
206
all those who receive copies directly or indirectly through you, then
207
the only way you could satisfy both it and this License would be to
208
refrain entirely from distribution of the Program.
209

  
210
If any portion of this section is held invalid or unenforceable under
211
any particular circumstance, the balance of the section is intended to
212
apply and the section as a whole is intended to apply in other
213
circumstances.
214

  
215
It is not the purpose of this section to induce you to infringe any
216
patents or other property right claims or to contest validity of any
217
such claims; this section has the sole purpose of protecting the
218
integrity of the free software distribution system, which is
219
implemented by public license practices.  Many people have made
220
generous contributions to the wide range of software distributed
221
through that system in reliance on consistent application of that
222
system; it is up to the author/donor to decide if he or she is willing
223
to distribute software through any other system and a licensee cannot
224
impose that choice.
225

  
226
This section is intended to make thoroughly clear what is believed to
227
be a consequence of the rest of this License.
228

229
  8. If the distribution and/or use of the Program is restricted in
230
certain countries either by patents or by copyrighted interfaces, the
231
original copyright holder who places the Program under this License
232
may add an explicit geographical distribution limitation excluding
233
those countries, so that distribution is permitted only in or among
234
countries not thus excluded.  In such case, this License incorporates
235
the limitation as if written in the body of this License.
236

  
237
  9. The Free Software Foundation may publish revised and/or new versions
238
of the General Public License from time to time.  Such new versions will
239
be similar in spirit to the present version, but may differ in detail to
240
address new problems or concerns.
241

  
242
Each version is given a distinguishing version number.  If the Program
243
specifies a version number of this License which applies to it and "any
244
later version", you have the option of following the terms and conditions
245
either of that version or of any later version published by the Free
246
Software Foundation.  If the Program does not specify a version number of
247
this License, you may choose any version ever published by the Free Software
248
Foundation.
249

  
250
  10. If you wish to incorporate parts of the Program into other free
251
programs whose distribution conditions are different, write to the author
252
to ask for permission.  For software which is copyrighted by the Free
253
Software Foundation, write to the Free Software Foundation; we sometimes
254
make exceptions for this.  Our decision will be guided by the two goals
255
of preserving the free status of all derivatives of our free software and
256
of promoting the sharing and reuse of software generally.
257

  
258
			    NO WARRANTY
259

  
260
  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
262
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
266
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
267
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
REPAIR OR CORRECTION.
269

  
270
  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
POSSIBILITY OF SUCH DAMAGES.
279

  
280
		     END OF TERMS AND CONDITIONS
281

282
	    How to Apply These Terms to Your New Programs
283

  
284
  If you develop a new program, and you want it to be of the greatest
285
possible use to the public, the best way to achieve this is to make it
286
free software which everyone can redistribute and change under these terms.
287

  
288
  To do so, attach the following notices to the program.  It is safest
289
to attach them to the start of each source file to most effectively
290
convey the exclusion of warranty; and each file should have at least
291
the "copyright" line and a pointer to where the full notice is found.
292

  
293
    <one line to give the program's name and a brief idea of what it does.>
294
    Copyright (C) <year>  <name of author>
295

  
296
    This program is free software; you can redistribute it and/or modify
297
    it under the terms of the GNU General Public License as published by
298
    the Free Software Foundation; either version 2 of the License, or
299
    (at your option) any later version.
300

  
301
    This program is distributed in the hope that it will be useful,
302
    but WITHOUT ANY WARRANTY; without even the implied warranty of
303
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
304
    GNU General Public License for more details.
305

  
306
    You should have received a copy of the GNU General Public License
307
    along with this program; if not, write to the Free Software
308
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
309

  
310

  
311
Also add information on how to contact you by electronic and paper mail.
312

  
313
If the program is interactive, make it output a short notice like this
314
when it starts in an interactive mode:
315

  
316
    Gnomovision version 69, Copyright (C) year name of author
317
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
    This is free software, and you are welcome to redistribute it
319
    under certain conditions; type `show c' for details.
320

  
321
The hypothetical commands `show w' and `show c' should show the appropriate
322
parts of the General Public License.  Of course, the commands you use may
323
be called something other than `show w' and `show c'; they could even be
324
mouse-clicks or menu items--whatever suits your program.
325

  
326
You should also get your employer (if you work as a programmer) or your
327
school, if any, to sign a "copyright disclaimer" for the program, if
328
necessary.  Here is a sample; alter the names:
329

  
330
  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
  `Gnomovision' (which makes passes at compilers) written by James Hacker.
332

  
333
  <signature of Ty Coon>, 1 April 1989
334
  Ty Coon, President of Vice
335

  
336
This General Public License does not permit incorporating your program into
337
proprietary programs.  If your program is a subroutine library, you may
338
consider it more useful to permit linking proprietary applications with the
339
library.  If this is what you want to do, use the GNU Library General
340
Public License instead of this License.
0 341

  
tags/vBefore3D_Branch/applications/appgvSIG/jalopy-config.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<jalopy>
3
    <general>
4
        <compliance>
5
            <version>14</version>
6
        </compliance>
7
        <style>
8
            <description>Sun Java Coding Convention</description>
9
            <name>Sun</name>
10
        </style>
11
    </general>
12
    <inspector>
13
        <enable>false</enable>
14
        <naming>
15
            <classes>
16
                <abstract>[A-Z][a-zA-Z0-9]+</abstract>
17
                <general>[A-Z][a-zA-Z0-9]+</general>
18
            </classes>
19
            <fields>
20
                <default>[a-z][\w]+</default>
21
                <defaultStatic>[a-z][\w]+</defaultStatic>
22
                <defaultStaticFinal>[a-zA-Z][\w]+</defaultStaticFinal>
23
                <private>[a-z][\w]+</private>
24
                <privateStatic>[a-z][\w]+</privateStatic>
25
                <privateStaticFinal>[a-zA-Z][\w]+</privateStaticFinal>
26
                <protected>[a-z][\w]+</protected>
27
                <protectedStatic>[a-z][\w]+</protectedStatic>
28
                <protectedStaticFinal>[a-zA-Z][\w]+</protectedStaticFinal>
29
                <public>[a-z][\w]+</public>
30
                <publicStatic>[a-z][\w]+</publicStatic>
31
                <publicStaticFinal>[a-zA-Z][\w]+</publicStaticFinal>
32
            </fields>
33
            <interfaces>[A-Z][a-zA-Z0-9]+</interfaces>
34
            <labels>\w+</labels>
35
            <methods>
36
                <default>[a-z][\w]+</default>
37
                <defaultStatic>[a-z][\w]+</defaultStatic>
38
                <defaultStaticFinal>[a-z][\w]+</defaultStaticFinal>
39
                <private>[a-z][\w]+</private>
40
                <privateStatic>[a-z][\w]+</privateStatic>
41
                <privateStaticFinal>[a-z][\w]+</privateStaticFinal>
42
                <protected>[a-z][\w]+</protected>
43
                <protectedStatic>[a-z][\w]+</protectedStatic>
44
                <protectedStaticFinal>[a-z][\w]+</protectedStaticFinal>
45
                <public>[a-z][\w]+</public>
46
                <publicStatic>[a-z][\w]+</publicStatic>
47
                <publicStaticFinal>[a-z][\w]+</publicStaticFinal>
48
            </methods>
49
            <packages>[a-z]+(?:\.[a-z]+)*</packages>
50
            <parameters>
51
                <default>[a-z][\w]+</default>
52
                <final>[a-z][\w]+</final>
53
            </parameters>
54
            <variables>[a-z][\w]*</variables>
55
        </naming>
56
        <tips>
57
            <adhereToNamingConvention>false</adhereToNamingConvention>
58
            <alwaysOverrideHashCode>false</alwaysOverrideHashCode>
59
            <avoidThreadGroups>false</avoidThreadGroups>
60
            <declareCollectionComment>false</declareCollectionComment>
61
            <dontIgnoreExceptions>false</dontIgnoreExceptions>
62
            <dontSubstituteObjectEquals>false</dontSubstituteObjectEquals>
63
            <neverDeclareException>false</neverDeclareException>
64
            <neverDeclareThrowable>false</neverDeclareThrowable>
65
            <neverInvokeWaitOutsideLoop>false</neverInvokeWaitOutsideLoop>
66
            <neverReturnZeroArrays>false</neverReturnZeroArrays>
67
            <neverUseEmptyFinally>false</neverUseEmptyFinally>
68
            <obeyContractEquals>false</obeyContractEquals>
69
            <overrideToString>false</overrideToString>
70
            <referToObjectsByInterface>false</referToObjectsByInterface>
71
            <replaceStructureWithClass>false</replaceStructureWithClass>
72
            <stringLiterallI18n>false</stringLiterallI18n>
73
            <useInterfaceOnlyForTypes>false</useInterfaceOnlyForTypes>
74
            <wrongCollectionComment>false</wrongCollectionComment>
75
        </tips>
76
    </inspector>
77
    <internal>
78
        <version>6</version>
79
    </internal>
80
    <messages>
81
        <priority>
82
            <general>30000</general>
83
            <parser>30000</parser>
84
            <parserJavadoc>30000</parserJavadoc>
85
            <printer>30000</printer>
86
            <printerJavadoc>30000</printerJavadoc>
87
            <transform>30000</transform>
88
        </priority>
89
        <showErrorStackTrace>true</showErrorStackTrace>
90
    </messages>
91
    <misc>
92
        <threadCount>1</threadCount>
93
    </misc>
94
    <printer>
95
        <alignment>
96
            <methodCallChain>true</methodCallChain>
97
            <parameterMethodDeclaration>false</parameterMethodDeclaration>
98
            <ternaryOperator>true</ternaryOperator>
99
            <variableAssignment>false</variableAssignment>
100
            <variableIdentifier>false</variableIdentifier>
101
        </alignment>
102
        <backup>
103
            <directory>bak</directory>
104
            <level>0</level>
105
        </backup>
106
        <blanklines>
107
            <after>
108
                <block>1</block>
109
                <braceLeft>0</braceLeft>
110
                <class>1</class>
111
                <declaration>0</declaration>
112
                <footer>1</footer>
113
                <header>0</header>
114
                <interface>1</interface>
115
                <lastImport>2</lastImport>
116
                <method>1</method>
117
                <package>1</package>
118
            </after>
119
            <before>
120
                <block>1</block>
121
                <braceRight>0</braceRight>
122
                <caseBlock>1</caseBlock>
123
                <comment>
124
                    <javadoc>1</javadoc>
125
                    <multiline>1</multiline>
126
                    <singleline>1</singleline>
127
                </comment>
128
                <controlStatement>1</controlStatement>
129
                <declaration>1</declaration>
130
                <footer>0</footer>
131
                <header>0</header>
132
            </before>
133
            <keepUpTo>1</keepUpTo>
134
        </blanklines>
135
        <braces>
136
            <empty>
137
                <cuddle>false</cuddle>
138
                <insertStatement>false</insertStatement>
139
            </empty>
140
            <insert>
141
                <dowhile>false</dowhile>
142
                <for>false</for>
143
                <ifelse>true</ifelse>
144
                <while>false</while>
145
            </insert>
146
            <remove>
147
                <block>true</block>
148
                <dowhile>false</dowhile>
149
                <for>false</for>
150
                <ifelse>false</ifelse>
151
                <while>false</while>
152
            </remove>
153
            <treatDifferent>
154
                <methodClass>false</methodClass>
155
                <methodClassIfWrapped>false</methodClassIfWrapped>
156
            </treatDifferent>
157
        </braces>
158
        <chunks>
159
            <blanklines>true</blanklines>
160
            <comments>true</comments>
161
        </chunks>
162
        <comments>
163
            <format>
164
                <multiline>true</multiline>
165
            </format>
166
            <javadoc>
167
                <check>
168
                    <innerclass>true</innerclass>
169
                    <tags>true</tags>
170
                    <throwsTags>true</throwsTags>
171
                </check>
172
                <fieldsShort>true</fieldsShort>
173
                <generate>
174
                    <class>23</class>
175
                    <constructor>23</constructor>
176
                    <field>1</field>
177
                    <method>23</method>
178
                </generate>
179
                <parseComments>true</parseComments>
180
                <tags>
181
                    <in-line />
182
                    <standard />
183
                </tags>
184
                <templates>
185
                    <class>/**| * DOCUMENT ME!| *| * @author $author$| */</class>
186
                    <constructor>
187
                        <bottom> */</bottom>
188
                        <exception> * @throws $exceptionType$ DOCUMENT ME!</exception>
189
                        <param> * @param $paramType$ DOCUMENT ME!</param>
190
                        <top>/**| * Crea un nuevo $objectType$.</top>
191
                    </constructor>
192
                    <interface>/**| * DOCUMENT ME!| *| * @author $author$| */</interface>
193
                    <method>
194
                        <bottom> */</bottom>
195
                        <exception> * @throws $exceptionType$ DOCUMENT ME!</exception>
196
                        <param> * @param $paramType$ DOCUMENT ME!</param>
197
                        <return> * @return DOCUMENT ME!</return>
198
                        <top>/**| * DOCUMENT ME!</top>
199
                    </method>
200
                    <variable>/**| * DOCUMENT ME!| */</variable>
201
                </templates>
202
            </javadoc>
203
            <remove>
204
                <javadoc>false</javadoc>
205
                <multiline>false</multiline>
206
                <singleline>false</singleline>
207
            </remove>
208
            <separator>
209
                <fillCharacter>-</fillCharacter>
210
                <insert>false</insert>
211
                <insertRecursive>false</insertRecursive>
212
                <text>
213
                    <class>Inner Classes</class>
214
                    <constructor>Constructors</constructor>
215
                    <field>Instance fields</field>
216
                    <initializer>Instance initializers</initializer>
217
                    <interface>Inner Interfaces</interface>
218
                    <method>Methods</method>
219
                    <static>Static fields/initializers</static>
220
                </text>
221
            </separator>
222
        </comments>
223
        <environment />
224
        <footer>
225
            <keys />
226
            <smartMode>0</smartMode>
227
            <use>false</use>
228
        </footer>
229
        <header>
230
            <keys />
231
            <smartMode>0</smartMode>
232
            <use>false</use>
233
        </header>
234
        <history>
235
            <policy>disabled</policy>
236
        </history>
237
        <imports>
238
            <grouping>
239
                <defaultDepth>3</defaultDepth>
240
                <packages>*:0|gnu:2|java:2|javax:2</packages>
241
            </grouping>
242
            <policy>disabled</policy>
243
            <sort>true</sort>
244
        </imports>
245
        <indentation>
246
            <caseFromSwitch>true</caseFromSwitch>
247
            <continuation>
248
                <block>true</block>
249
                <operator>false</operator>
250
            </continuation>
251
            <firstColumnComments>true</firstColumnComments>
252
            <label>false</label>
253
            <policy>
254
                <deep>false</deep>
255
            </policy>
256
            <sizes>
257
                <braceCuddled>1</braceCuddled>
258
                <braceLeft>1</braceLeft>
259
                <braceRight>0</braceRight>
260
                <braceRightAfter>1</braceRightAfter>
261
                <continuation>4</continuation>
262
                <deep>55</deep>
263
                <extends>-1</extends>
264
                <general>4</general>
265
                <implements>-1</implements>
266
                <leading>0</leading>
267
                <tabs>8</tabs>
268
                <throws>-1</throws>
269
                <trailingComment>1</trailingComment>
270
            </sizes>
271
            <tabs>
272
                <enable>false</enable>
273
                <onlyLeading>false</onlyLeading>
274
            </tabs>
275
        </indentation>
276
        <misc>
277
            <arrayBracketsAfterIdent>false</arrayBracketsAfterIdent>
278
            <forceFormatting>false</forceFormatting>
279
            <insertExpressionParentheses>true</insertExpressionParentheses>
280
            <insertLoggingConditional>false</insertLoggingConditional>
281
            <insertTrailingNewline>true</insertTrailingNewline>
282
            <insertUID>false</insertUID>
283
        </misc>
284
        <sorting>
285
            <declaration>
286
                <class>false</class>
287
                <constructor>false</constructor>
288
                <enable>true</enable>
289
                <interface>false</interface>
290
                <method>false</method>
291
                <order>static|field|initializer|constructor|method|interface|class</order>
292
                <variable>false</variable>
293
            </declaration>
294
            <modifier>
295
                <enable>false</enable>
296
                <order>public|protected|private|abstract|static|final|synchronized|transient|volatile|native|strictfp</order>
297
            </modifier>
298
        </sorting>
299
        <whitespace>
300
            <after>
301
                <comma>true</comma>
302
                <semicolon>true</semicolon>
303
                <typeCast>true</typeCast>
304
            </after>
305
            <before>
306
                <braces>true</braces>
307
                <brackets>false</brackets>
308
                <bracketsTypes>false</bracketsTypes>
309
                <caseColon>false</caseColon>
310
                <operator>
311
                    <not>false</not>
312
                </operator>
313
                <parentheses>
314
                    <methodCall>false</methodCall>
315
                    <methodDeclaration>false</methodDeclaration>
316
                    <statement>true</statement>
317
                </parentheses>
318
            </before>
319
            <padding>
320
                <braces>true</braces>
321
                <brackets>false</brackets>
322
                <operator>
323
                    <assignment>true</assignment>
324
                    <bitwise>true</bitwise>
325
                    <logical>true</logical>
326
                    <mathematical>true</mathematical>
327
                    <relational>true</relational>
328
                    <shift>true</shift>
329
                </operator>
330
                <parenthesis>false</parenthesis>
331
                <typeCast>false</typeCast>
332
            </padding>
333
        </whitespace>
334
        <wrapping>
335
            <always>
336
                <after>
337
                    <arrayElement>0</arrayElement>
338
                    <braceRight>false</braceRight>
339
                    <extendsTypes>false</extendsTypes>
340
                    <implementsTypes>false</implementsTypes>
341
                    <label>true</label>
342
                    <methodCallChained>false</methodCallChained>
343
                    <ternaryOperator>
344
                        <first>false</first>
345
                        <second>false</second>
346
                    </ternaryOperator>
347
                    <throwsTypes>false</throwsTypes>
348
                </after>
349
                <before>
350
                    <braceLeft>false</braceLeft>
351
                    <extends>false</extends>
352
                    <implements>false</implements>
353
                    <throws>false</throws>
354
                </before>
355
                <parameter>
356
                    <methodCall>false</methodCall>
357
                    <methodCallNested>false</methodCallNested>
358
                    <methodDeclaration>false</methodDeclaration>
359
                </parameter>
360
            </always>
361
            <general>
362
                <beforeOperator>false</beforeOperator>
363
                <enable>true</enable>
364
                <lineLength>80</lineLength>
365
            </general>
366
            <ondemand>
367
                <after>
368
                    <assignment>false</assignment>
369
                    <leftParenthesis>false</leftParenthesis>
370
                    <parameter>false</parameter>
371
                    <types>
372
                        <extends>false</extends>
373
                        <implements>false</implements>
374
                        <throws>false</throws>
375
                    </types>
376
                </after>
377
                <before>
378
                    <rightParenthesis>false</rightParenthesis>
379
                </before>
380
                <groupingParentheses>false</groupingParentheses>
381
            </ondemand>
382
        </wrapping>
383
    </printer>
384
</jalopy>
385

  
0 386

  
tags/vBefore3D_Branch/applications/appgvSIG/build_sources.xml
1
<project name="Copiar las fuentes a un directorio" default="dist" basedir=".">
2
    <description>
3
        Copiar las fuentes a un directorio
4
    </description>
5
  <!-- set global properties for this build -->
6
  <property name="buildDate" value="${TSTAMP}"/>
7
  <property name="version" value="0.5"/>
8
  <property name="dist"  location="d:/fjp/COPUT/instala_gvsig/fuentes"/>
9
  <property name="fmapdir" value="../FMAP 03"/>
10
  <property name="andamidir" value="../Andami"/>
11
  <property name="coreplugindir" value="../CorePlugin"/>  
12
  <property name="gdbmsdir" value="../GDBMS"/>  
13
  <property name="jdbcspatialdir" value="../gvSIG_JDBC"/> 
14
  <property name="arcsdedir" value="../gvSIG_SDE"/>    
15
  <property name="wmsdir" value="../gvSIG_WMS"/> 
16
  <property name="wfsdir" value="../gvSIG_WFS"/> 
17
  <property name="wcsdir" value="../gvSIG WCSClient"/>   
18
  <property name="WMSClientdir" value="../WMSClient"/>     
19
  <property name="drivermanagerdir" value="../DriverManager"/>      
20
  <property name="exampledir" value="../Ejemplo"/>      
21
  <property name="makeZip" location="makeZip"/>
22
  <property name="zipName" value="src_gvSIG-${version}"/>
23

  
24
  <target name="init" depends="clean">
25
    <!-- Create the time stamp -->
26
    <tstamp/>
27
  	
28
  </target>
29
	
30

  
31

  
32
  <target name="dist" depends="init"
33
        description="generate the distribution" >
34
    <!-- Create the distribution directory -->
35
    <mkdir dir="${dist}"/>
36
    <mkdir dir="${dist}/Andami"/>
37
    <mkdir dir="${dist}/Andami/src"/>
38
    <mkdir dir="${dist}/Andami/lib"/>
39
    <mkdir dir="${dist}/FMap"/>        
40
    <mkdir dir="${dist}/FMap/src"/>    
41
    <mkdir dir="${dist}/FMap/lib"/>        
42
    <mkdir dir="${dist}/gvSIG"/>        
43
    <mkdir dir="${dist}/gvSIG/src"/>    
44
    <mkdir dir="${dist}/gvSIG/lib"/> 
45
    <mkdir dir="${dist}/gvSIG/config"/> 
46
    <mkdir dir="${dist}/gvSIG/images"/>       
47
    <mkdir dir="${dist}/CorePlugin/src"/>    
48
    <mkdir dir="${dist}/CorePlugin/images"/>       
49
    <!-- <mkdir dir="${dist}/GDBMS"/>        
50
    <mkdir dir="${dist}/GDBMS/src"/>    
51
    <mkdir dir="${dist}/GDBMS/lib"/>        
52
    <mkdir dir="${dist}/GDBMS/conf"/>
53
    <mkdir dir="${dist}/GDBMS/target"/> -->          
54
    <mkdir dir="${dist}/DriverManager"/>        
55
    <mkdir dir="${dist}/DriverManager/src"/>    
56

  
57
    <!-- <mkdir dir="${dist}/gvSIG_JDBC"/>        
58
    <mkdir dir="${dist}/gvSIG_JDBC/src"/> 
59
    <mkdir dir="${dist}/gvSIG_JDBC/config"/>    
60

  
61
    <mkdir dir="${dist}/gvSIG_SDE"/>        
62
    <mkdir dir="${dist}/gvSIG_SDE/src"/> 
63
    <mkdir dir="${dist}/gvSIG_SDE/config"/>    
64
    <mkdir dir="${dist}/gvSIG_SDE/lib"/>    
65

  
66
    <mkdir dir="${dist}/gvSIG_WFS"/>        
67
    <mkdir dir="${dist}/gvSIG_WFS/src"/> 
68
    <mkdir dir="${dist}/gvSIG_WFS/config"/>  -->  
69
	
70
    <mkdir dir="${dist}/gvSIG_WMS"/>        
71
    <mkdir dir="${dist}/gvSIG_WMS/src"/> 
72
    <mkdir dir="${dist}/gvSIG_WMS/config"/>    
73
	
74
    <mkdir dir="${dist}/gvSIG WCSClient"/>        
75
    <mkdir dir="${dist}/gvSIG WCSClient/src"/> 
76
    <mkdir dir="${dist}/gvSIG WCSClient/config"/>    
77

  
78
    <mkdir dir="${dist}/Example"/>        
79
    <mkdir dir="${dist}/Example/src"/> 
80
    <mkdir dir="${dist}/Example/config"/>    
81
    <mkdir dir="${dist}/Example/images"/>
82
	
83
        
84
    <!-- Put everything into the directory ${dist} -->
85
    <copy todir="${dist}/Andami/lib">
86
    	<fileset dir="${andamidir}/lib" includes="*.jar,*.zip"/>
87
    </copy>
88
    <copy todir="${dist}/Andami/src">
89
    	<fileset dir="${andamidir}/src" includes="**/**"/>
90
    </copy>
91
    <copy todir="${dist}/Andami">
92
    	<fileset dir="${andamidir}" includes="*.xml, *.classpath, *.project, text*.properties"/>
93
    </copy>
94
        
95
    <copy todir="${dist}/FMap/lib">
96
    	<fileset dir="${fmapdir}/lib" includes="*.jar,*.zip"/>
97
    </copy>
98
    <copy todir="${dist}/FMap/src">
99
    	<fileset dir="${fmapdir}/src" includes="**/**" />
100
    </copy>    
101
    <copy todir="${dist}/FMap">
102
    	<fileset dir="${fmapdir}" includes="*.xml, *.classpath, *.project" />
103
		<!-- <fileset dir="${fmapdir}" includes="*.xml" /> -->
104
    </copy>        
105
    
106
    <copy todir="${dist}/gvSIG/config">
107
    	<fileset dir="./config" includes="*.*"/>
108
    </copy>    
109
    <copy todir="${dist}/gvSIG/lib">
110
    	<fileset dir="./lib" includes="*.jar,*.zip"/>
111
    </copy>    
112
    <copy todir="${dist}/gvSIG/src">
113
    	<fileset dir="./src" includes="**/**"/>
114
    </copy>
115
    <copy todir="${dist}/gvSIG">
116
    	<fileset dir="." includes="*.xml, *.classpath, *.project, text*.properties"/>
117
		<!-- <fileset dir="." includes="text*.properties"/> -->
118
    </copy>
119
    <copy todir="${dist}/gvSIG/images">
120
    	<fileset dir="./images/" includes="*"/>
121
    </copy>
122
    
123
    <copy todir="${dist}/CorePlugin/src">
124
    	<fileset dir="${coreplugindir}/src" includes="**/**"/>
125
    </copy>
126
    <copy todir="${dist}/CorePlugin">
127
    	<fileset dir="${coreplugindir}" includes="*.xml, *.classpath, *.project, text*.properties"/>
128
    </copy>
129
    <copy todir="${dist}/CorePlugin/images">
130
    	<fileset dir="${coreplugindir}/images/" includes="*"/>
131
    </copy>
132

  
133
    <!-- <copy todir="${dist}/GDBMS">
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff