Revision 7139

View differences:

trunk/applications/appgvSIG/build.xml
41 41

  
42 42
	<target name="dist"
43 43
				depends="init"
44
				description="generate the distribution" >
44
				description="Generate the distribution of the gvSIG plugin. To build just the appgvSIG project from Eclipse " >
45 45
		<!-- Create the distribution directory -->
46 46
		<mkdir dir="${dist}"/>
47 47

  
......
73 73
	</target>
74 74

  
75 75
  <target name="makeZip"
76
  	description="Genera un zip con todo lo necesario para ejecutar gvSIG"
76
  	description="Genera un zip con todo lo necesario para ejecutar gvSIG. Actualmente no se usa"
77 77
  	depends="dist">
78 78
    <!-- Create the distribution directory -->
79 79
    <mkdir dir="${dist}/${zipName}"/>
......
101 101
  </target>
102 102
	
103 103
	<target name="batch-build"
104
			description="compile the sources, create the jar file"
104
			description="Global build for the whole gvSIG + extensions. Compiles all the sources and builds the application so that it's ready to execute"
105 105
			depends="get-fmap-libs,compile,create-jar,copy-libs,copy-data-files,move-to-andami">
106 106
	</target>
107 107
	
......
204 204

  
205 205
	<target name="build-all"
206 206
				depends="debug-yes,base,extensions"
207
				description="Builds the application, including extensions" />
207
				description="Global build for the whole gvSIG + extensions. Compiles all the sources and builds the application so that it's ready to execute" />
208 208
	
209 209
	<target name="eclipse-build-all"
210 210
					depends="debug-no,base,extensions"
......
409 409
	andami. The compilation is supposed to be done by Eclipse  -->
410 410
	<target name="install-all"
411 411
					depends="install-base,install-extensions"
412
					description="Builds the application, including extensions" />
412
					description="Generate jars and copy files to Andami for the whole application (gvSIG+libs+extensions). Compilation is supposed to be automatically done by Eclipse" />
413 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>
414
	<target name="install-base"
415
				description="Generate jars and copy files to Andami for the application (gvSIG+libs). Compilation is supposed to be automatically done by Eclipse" >
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 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>
429
	<target name="install-extensions" depends="base"
430
			description="Generate jars and copy files to Andami for the extensions. Compilation is supposed to be automatically done by Eclipse" >
431
		<ant dir="${event}" inheritAll="false" />
432
		<ant dir="${libdwg}" inheritAll="false" />
433
		<ant dir="${extdwg}" inheritAll="false" />
434
		<ant dir="${jdbc}" inheritAll="false" />
435
		<ant dir="${cad}" inheritAll="false" />
436
		<ant dir="${appcatalog}" inheritAll="false" />
437
		<ant dir="${catalog}" inheritAll="false" />
438
		<ant dir="${wcs}" inheritAll="false" />
439
		<ant dir="${wms}" inheritAll="false" />
440
		<ant dir="${dataloc}" inheritAll="false" />
441
		<ant dir="${geoprocessing}" inheritAll="false" />
442
		<ant dir="${georeferencing}" inheritAll="false" />
443
		<ant dir="${rastertools}" inheritAll="false" />
444
		<ant dir="${wfs}" inheritAll="false" />
445
		<ant dir="${scripting}" inheritAll="false" />
446
		<ant dir="${centerview}" inheritAll="false" />	
447
	</target>
447 448

  
448

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

  
457
	<target name="download-base">
457
	<target name="download-base" description="Not working yet. It will download the base projects required to build gvSIG">
458 458
		<property name="downloadDir" value="tmp-download"/>
459 459
		<mkdir dir="${downloadDir}" />
460 460
		
......
471 471
		<!-- we have to do the same for the rest of the projects -->
472 472
	</target>
473 473
	
474
	<target name="download-extensions">
474
	<target name="download-extensions" description="Not working yet. It will download the extensions">
475 475
	</target>
476 476

  
477 477
</project>

Also available in: Unified diff