Revision 12257

View differences:

trunk/libraries/libArcIMS_old/build.xml
1
<project name="RemoteClient" default="dist" basedir=".">
2
	<description> Genera el jar con RemoteClient y sus dependencias </description>
3
	<!-- set global properties for this build -->
4
	<property name="src" location="src"/>
5
	<property name="build" location="bin"/>
6
	<property name="dist" location="dist"/>
7
	<property name="lib" location="lib"/>
8
	<property name="jar" value="remote-clients-arcims"/>
9
	<property name="targetDir" location="."/>
10
	<property name="targetDir2" location="../extArcims/lib"/>
11
	<property name="fmap" location="../libFMap"/>
12
	<property name="andami" location="../_fwAndami"/>
13
	
14
	<!-- to move the lib directly to andami without having to run extArcims build.xml-->
15
	<property name="extensionDir" location="${andami}/gvSIG/extensiones"/>
16
	<property name="mainplugin" value="com.iver.cit.gvsig"/>
17
	<property name="targetDir3" location="${extensionDir}/${mainplugin}/lib"/>
18
	
19
	<target name="init">
20
		<!-- Create the time stamp -->
21
		<tstamp/>
22
		<!-- Create the build directory structure used by compile -->
23
		<mkdir dir="${build}"/>
24
	</target>
25
	
26
	<target name="compile" description="compile the source">
27
		<!-- Compile the Java code from ${src} to ${bin} -->
28
		<javac srcdir="${src}" destdir="${build}"
29
			classpath="${andami}/andami.jar:${fmap}/lib/driver-manager-1.0.jar:${andami}/lib/tempFileManager.jar:lib/kxml2.jar:lib/junit.jar"/>
30
	</target>
31
	
32
	<target name="dist" description="generate the distribution">
33
		<!-- Create the distribution directory -->
34
		<mkdir dir="${dist}"/>
35
		
36
		<!-- Put everything in ${build} into the cms-${DSTAMP}.jar file -->
37
		<jar jarfile="${dist}/${jar}.jar" basedir="${build}"/>
38
		<jar jarfile="${dist}/${jar}.jar" basedir="." includes="images/*.gif"
39
			update="true"/>
40
		
41
		<copy todir="${targetDir3}">
42
			<fileset dir="${dist}" includes="${jar}.jar"/>
43
		</copy>
44
		
45
		<move todir="${targetDir2}/">
46
			<fileset dir="${dist}" includes="**/**"/>
47
		</move>
48
		<copy todir="${targetDir2}/">
49
			<fileset dir="${lib}" includes="*.jar"/>
50
		</copy>
51
		
52

  
53
		<!--   <move todir="${targetDir}/">
54
		<fileset dir="${dist}" includes="**/**"/>
55
		</move>-->
56
	</target>
57
	
58
	<target name="clean" description="clean up">
59
		<!-- Delete the ${build} and ${dist} directory trees -->
60
		<delete includeemptydirs="true" failonerror="no">
61
			<fileset dir="${build}" includes="**/*"/>
62
		</delete>
63
		<delete includeemptydirs="true" failonerror="no">
64
			<fileset dir="${dist}" includes="**/*"/>
65
		</delete>
66
	</target>
67
</project>
68

  
69

  
trunk/libraries/libArcIMS_old/.classpath
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="src" path="src"/>
4 3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5
	<classpathentry kind="lib" path="/libRemoteServices/lib/kxml2.jar"/>
6
	<classpathentry sourcepath="/libCq CMS for Java/src/org/cresques/cts" kind="lib" path="/libFMap/lib/cms.jar"/>
7 4
	<classpathentry combineaccessrules="false" kind="src" path="/libRemoteServices"/>
8
	<classpathentry sourcepath="D:/04_ECLIPSE/Otros/gdbms-0.8.0" kind="lib" path="/libFMap/lib/gdbms-0.8-SNAPSHOT.jar"/>
9 5
	<classpathentry combineaccessrules="false" kind="src" path="/libFMap"/>
10 6
	<classpathentry combineaccessrules="false" kind="src" path="/libIverUtiles"/>
11 7
	<classpathentry combineaccessrules="false" kind="src" path="/appgvSIG"/>
12 8
	<classpathentry combineaccessrules="false" kind="src" path="/_fwAndami"/>
13
	<classpathentry kind="lib" path="/_fwAndami/lib/log4j-1.2.8.jar"/>
14
	<classpathentry sourcepath="ECLIPSE_HOME/plugins/org.eclipse.jdt.source_3.1.1/src/org.junit_3.8.1/junitsrc.zip" kind="var" path="JUNIT_HOME/junit.jar"/>
15 9
	<classpathentry kind="output" path="bin"/>
16 10
</classpath>
branches/v10/libraries/libArcIMS_old/buildx.xml
1
<project name="libArcIMS" default="dist" basedir=".">
2
	<description> Genera el jar con RemoteClient y sus dependencias </description>
3
	<!-- set global properties for this build -->
4
	<property name="src" location="src"/>
5
	<property name="build" location="bin"/>
6
	<property name="dist" location="dist"/>
7
	<property name="lib" location="lib"/>
8
	<property name="jar" value="remote-clients-arcims"/>
9
	<property name="targetDir" location="."/>
10
	<property name="targetDir2" location="../extArcims/lib"/>
11
	<property name="fmap" location="../libFMap"/>
12
	<property name="andami" location="../_fwAndami"/>
13
	
14
	<!-- to move the lib directly to andami without having to run extArcims build.xml-->
15
	<property name="extensionDir" location="${andami}/gvSIG/extensiones"/>
16
	<property name="mainplugin" value="com.iver.cit.gvsig"/>
17
	<property name="targetDir3" location="${extensionDir}/${mainplugin}/lib"/>
18
	
19
	<target name="init">
20
		<!-- Create the time stamp -->
21
		<tstamp/>
22
		<!-- Create the build directory structure used by compile -->
23
		<mkdir dir="${build}"/>
24
	</target>
25
	
26
	<target name="compile" description="compile the source">
27
		<!-- Compile the Java code from ${src} to ${bin} -->
28
		<javac 
29
            srcdir="${src}" 
30
            destdir="${build}"
31
            source="${JavaSourceVersion}"
32
            target="${JavaTargetVersion}"
33
            debug="${debug}"
34
            debuglevel="${debuglevel}"         
35
			classpath="${andami}/andami.jar:${fmap}/lib/driver-manager-1.0.jar:${andami}/lib/tempFileManager.jar:lib/kxml2.jar:lib/junit.jar"/>
36
	</target>
37
	<target name="batch-build" depends="compile,dist">
38
        <echo>
39
            Compiling ${ant.project.name}...</echo>      
40
    </target>
41
	<target name="dist" description="generate the distribution">
42
		<!-- Create the distribution directory -->
43
		<mkdir dir="${dist}"/>
44
		
45
		<!-- Put everything in ${build} into the cms-${DSTAMP}.jar file -->
46
		<jar jarfile="${dist}/${jar}.jar" basedir="${build}"/>
47
		<jar jarfile="${dist}/${jar}.jar" basedir="." includes="images/*.gif"
48
			update="true"/>
49
		
50
		<copy todir="${targetDir3}">
51
			<fileset dir="${dist}" includes="${jar}.jar"/>
52
		</copy>
53
		
54
		<move todir="${targetDir2}/">
55
			<fileset dir="${dist}" includes="**/**"/>
56
		</move>
57
		<copy todir="${targetDir2}/">
58
			<fileset dir="${lib}" includes="*.jar"/>
59
		</copy>
60
		
61

  
62
		<!--   <move todir="${targetDir}/">
63
		<fileset dir="${dist}" includes="**/**"/>
64
		</move>-->
65
	</target>
66
	
67
	<target name="clean" description="clean up">
68
		<!-- Delete the ${build} and ${dist} directory trees -->
69
		<delete includeemptydirs="true" failonerror="no">
70
			<fileset dir="${build}" includes="**/*"/>
71
		</delete>
72
		<delete includeemptydirs="true" failonerror="no">
73
			<fileset dir="${dist}" includes="**/*"/>
74
		</delete>
75
	</target>
76
</project>
77

  
78

  
branches/v10/libraries/libArcIMS_old/build.xml
1
<project name="libArcIMS" default="dist" basedir=".">
2
	<description> Genera el jar con RemoteClient y sus dependencias </description>
3
	<!-- set global properties for this build -->
4
	<property name="src" location="src"/>
5
	<property name="build" location="bin"/>
6
	<property name="dist" location="dist"/>
7
	<property name="lib" location="lib"/>
8
	<property name="jar" value="remote-clients-arcims"/>
9
	<property name="targetDir" location="."/>
10
	<property name="targetDir2" location="../extArcims/lib"/>
11
	<property name="fmap" location="../libFMap"/>
12
	<property name="andami" location="../_fwAndami"/>
13
	
14
	<!-- to move the lib directly to andami without having to run extArcims build.xml-->
15
	<property name="extensionDir" location="${andami}/gvSIG/extensiones"/>
16
	<property name="mainplugin" value="com.iver.cit.gvsig"/>
17
	<property name="targetDir3" location="${extensionDir}/${mainplugin}/lib"/>
18
	
19
	<target name="init">
20
		<!-- Create the time stamp -->
21
		<tstamp/>
22
		<!-- Create the build directory structure used by compile -->
23
		<mkdir dir="${build}"/>
24
	</target>
25
	
26
	<target name="compile" description="compile the source">
27
		<!-- Compile the Java code from ${src} to ${bin} -->
28
		<javac 
29
            srcdir="${src}" 
30
            destdir="${build}"
31
            source="${JavaSourceVersion}"
32
            target="${JavaTargetVersion}"
33
            debug="${debug}"
34
            debuglevel="${debuglevel}"         
35
			classpath="${andami}/andami.jar:${fmap}/lib/driver-manager-1.0.jar:${andami}/lib/tempFileManager.jar:lib/kxml2.jar:lib/junit.jar"/>
36
	</target>
37
	<target name="batch-build" depends="compile,dist">
38
        <echo>
39
            Compiling ${ant.project.name}...</echo>      
40
    </target>
41
	<target name="dist" description="generate the distribution">
42
		<!-- Create the distribution directory -->
43
		<mkdir dir="${dist}"/>
44
		
45
		<!-- Put everything in ${build} into the cms-${DSTAMP}.jar file -->
46
		<jar jarfile="${dist}/${jar}.jar" basedir="${build}"/>
47
		<jar jarfile="${dist}/${jar}.jar" basedir="." includes="images/*.gif"
48
			update="true"/>
49
		
50
		<copy todir="${targetDir3}">
51
			<fileset dir="${dist}" includes="${jar}.jar"/>
52
		</copy>
53
		
54
		<move todir="${targetDir2}/">
55
			<fileset dir="${dist}" includes="**/**"/>
56
		</move>
57
		<copy todir="${targetDir2}/">
58
			<fileset dir="${lib}" includes="*.jar"/>
59
		</copy>
60
		
61

  
62
		<!--   <move todir="${targetDir}/">
63
		<fileset dir="${dist}" includes="**/**"/>
64
		</move>-->
65
	</target>
66
	
67
	<target name="clean" description="clean up">
68
		<!-- Delete the ${build} and ${dist} directory trees -->
69
		<delete includeemptydirs="true" failonerror="no">
70
			<fileset dir="${build}" includes="**/*"/>
71
		</delete>
72
		<delete includeemptydirs="true" failonerror="no">
73
			<fileset dir="${dist}" includes="**/*"/>
74
		</delete>
75
	</target>
76
</project>
77

  
78

  
branches/v10/libraries/libArcIMS_old/.classpath
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="src" path="src"/>
4 3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5
	<classpathentry kind="lib" path="/libRemoteServices/lib/kxml2.jar"/>
6
	<classpathentry sourcepath="/libCq CMS for Java/src/org/cresques/cts" kind="lib" path="/libFMap/lib/cms.jar"/>
7 4
	<classpathentry combineaccessrules="false" kind="src" path="/libRemoteServices"/>
8
	<classpathentry sourcepath="D:/04_ECLIPSE/Otros/gdbms-0.8.0" kind="lib" path="/libFMap/lib/gdbms-0.8-SNAPSHOT.jar"/>
9 5
	<classpathentry combineaccessrules="false" kind="src" path="/libFMap"/>
10 6
	<classpathentry combineaccessrules="false" kind="src" path="/libIverUtiles"/>
11 7
	<classpathentry combineaccessrules="false" kind="src" path="/appgvSIG"/>
12 8
	<classpathentry combineaccessrules="false" kind="src" path="/_fwAndami"/>
13
	<classpathentry kind="lib" path="/_fwAndami/lib/log4j-1.2.8.jar"/>
14
	<classpathentry sourcepath="ECLIPSE_HOME/plugins/org.eclipse.jdt.source_3.1.1/src/org.junit_3.8.1/junitsrc.zip" kind="var" path="JUNIT_HOME/junit.jar"/>
15 9
	<classpathentry kind="output" path="bin"/>
16 10
</classpath>

Also available in: Unified diff