Revision 7

View differences:

branches/gdal-old/org.gvsig.gdal.app/org.gvsig.gdal.app.win.x86/buildNumber.properties
1
#Thu Nov 21 11:05:57 CET 2013
2
buildNumber=1
0 3

  
branches/gdal-old/org.gvsig.gdal.app/org.gvsig.gdal.app.win.x86/src/main/assembly/gvsig-plugin-package.xml
1
<!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
26
<assembly>
27
  <id>gvsig-plugin-package</id>
28
  <formats>
29
    <format>zip</format>
30
  </formats>
31
  <baseDirectory>${gvsig.package.info.code}</baseDirectory>
32
  <includeBaseDirectory>true</includeBaseDirectory>
33
  <files>
34
    <file>
35
      <source>target/package.info</source>
36
    </file>
37
  </files>
38

  
39
  <fileSets>
40
    <fileSet>
41
      <directory>target/org.gvsig.ogr.app.mainplugin</directory>
42
      <outputDirectory>.</outputDirectory>
43
      <excludes>
44
      	<exclude>package.info</exclude>
45
      </excludes>
46
    </fileSet>
47
    <fileSet>
48
      <directory>target/native/lib</directory>
49
      <outputDirectory>install/files</outputDirectory>
50
    </fileSet>
51
    <fileSet>
52
      <directory>src/main/resources-plugin</directory>
53
      <outputDirectory>.</outputDirectory>
54
    </fileSet>
55
  </fileSets>
56

  
57

  
58
  <dependencySets>
59
    <dependencySet>
60
      <useProjectArtifact>false</useProjectArtifact>
61
      <useTransitiveDependencies>false</useTransitiveDependencies>
62
      <outputDirectory>lib</outputDirectory>
63
		<includes>
64
            <include>org.gvsig:org.gvsig.ogr.app.mainplugin:jar</include>
65
		</includes>
66
    </dependencySet>
67
  </dependencySets>
68

  
69
</assembly>
70

  
71

  
72

  
0 73

  
branches/gdal-old/org.gvsig.gdal.app/org.gvsig.gdal.app.win.x86/src/main/resources-plugin/install/install.xml
1
<project name="org.gvsig.plugin1" default="main" basedir=".">
2
	<!--
3
		Predefined properties:
4
		gvsig_dir = gvSIG application root installation directory
5
		extensions_dir = gvSIG extensions directory
6
	-->
7
	<taskdef resource="net/sf/antcontrib/antlib.xml">
8
		<classpath>
9
			<pathelement location="${gvsig_dir}/lib/ant-contrib-1.0b3.jar" />
10
		</classpath>
11
	</taskdef>
12
	<target name="main" depends="copy_files"/>
13
    <target name="copy_files">
14
    	<copy todir="${gvsig_dir}">
15
    		<fileset dir="./files" includes="**"/>
16
		</copy>
17
	</target>
18
</project>
0 19

  
branches/gdal-old/org.gvsig.gdal.app/org.gvsig.gdal.app.win.x86/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>org.gvsig.gdal.app.win.x86</artifactId>
5
  <packaging>jar</packaging>
6
   
7
 	<parent>
8
		<groupId>org.gvsig</groupId>
9
		<artifactId>org.gvsig.gdal.app</artifactId>
10
		<version>1.0.0-SNAPSHOT</version>
11
	</parent>
12

  
13
  <properties>
14
    <gvsig.package.info.operatingSystem>win</gvsig.package.info.operatingSystem>
15
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
16
  </properties>
17

  
18
  <dependencyManagement>
19
      <dependencies>
20
            <dependency>
21
            <groupId>org.gvsig</groupId>
22
            <artifactId>org.gvsig.gdal</artifactId>
23
            <version>1.10.1</version>
24
        </dependency>                  
25
        <dependency>
26
            <groupId>org.gvsig</groupId>
27
            <artifactId>org.gvsig.gdal</artifactId>
28
            <version>1.10.1</version>
29
            <classifier>win-all-vs10-i386-dynamic</classifier>
30
            <type>tar.gz</type>
31
        </dependency>           
32
      </dependencies>
33
  </dependencyManagement>
34

  
35
  <build>
36
    <plugins>
37
  
38
      <plugin>
39
        <groupId>org.apache.maven.plugins</groupId>
40
        <artifactId>maven-dependency-plugin</artifactId>
41
        <executions>
42
          <execution>
43
          	<id>unpack</id>
44
	        <phase>process-sources</phase>
45
	        <goals>
46
	          <goal>unpack</goal>
47
	        </goals>
48
	        <configuration>
49
	          <artifactItems>
50
	            <artifactItem>
51
		            <groupId>org.gvsig</groupId>
52
		            <artifactId>org.gvsig.gdal</artifactId>
53
		            <classifier>win-all-vs10-i386-dynamic</classifier>
54
		            <version>1.10.1</version>
55
		            <type>tar.gz</type>
56
					<overWrite>true</overWrite>
57
					<outputDirectory>target/native</outputDirectory>
58
	            </artifactItem>
59
	          </artifactItems>
60
	        </configuration>
61
          </execution>
62
        </executions>
63
	  </plugin>
64
  
65
  
66
    </plugins>
67
  </build>
68

  
69
  <profiles>
70
  
71
    <profile>
72
      <id>gvsig-plugin-install-driver-windows-x86</id>
73
      <activation>
74
         <os>
75
             <family>windows</family>
76
             <arch>x86</arch>
77
         </os>
78
      </activation>
79
	  <properties>
80
	    <gvsig.install.plugin>true</gvsig.install.plugin>
81
	  </properties>
82
    </profile>
83
  </profiles>
84
  
85
</project>
86

  
0 87

  
branches/gdal-old/org.gvsig.gdal.app/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4

  
5
  <modelVersion>4.0.0</modelVersion>
6
  <artifactId>org.gvsig.gdal.app</artifactId>
7
  <packaging>pom</packaging>
8
  <name>${project.artifactId}</name>
9
  <version>1.0.0-SNAPSHOT</version>
10
    <parent>
11
		<groupId>org.gvsig</groupId>
12
		<artifactId>org.gvsig.desktop</artifactId>
13
		<version>2.0.23</version>
14
	</parent>
15
	 <url>http://devel.gvsig.org/sites/org.gvsig.gdal/${project.version}</url>
16
 	<scm>
17
        <connection>scm:svn:http://devel.gvsig.org/svn/gvsig-gdal/library/trunk</connection>
18
        <developerConnection>scm:svn:http://devel.gvsig.org/svn/gvsig-gdal/library/trunk</developerConnection>
19
        <url>https://gvsig-devel.gva.es/redmine/projects/gvsig-gdal/repository/show/library/trunk</url>
20
    </scm>
21
	<developers>
22
		<developer>
23
			<id>jjdelcerro</id>
24
			<name>Joaqu�n Jos� del Cerro</name>
25
			<email>jjdelcerro@gvsig.org</email>
26
			<roles>
27
				<role>Architect</role>
28
				<role>Developer</role>
29
			</roles>
30
		</developer>
31
		<developer>
32
			<id>jbadia</id>
33
			<name>Jos� Bad�a</name>
34
			<email>badia_jos@gva.es</email>
35
			<roles>
36
				<role>Developer</role>
37
			</roles>
38
		</developer>
39
	</developers>
40
	<distributionManagement>
41
		<site>
42
			<id>gvsig-repository</id>
43
            <url>dav:https://devel.gvsig.org/sites/org.gvsig.gdal/${project.version}</url>
44
		</site>
45
	</distributionManagement>
46
	<repositories>
47
		<repository>
48
			<id>gvsig-public-http-repository</id>
49
			<name>gvSIG maven public HTTP repository</name>
50
			<url>http://devel.gvsig.org/m2repo/j2se</url>
51
			<releases>
52
				<enabled>true</enabled>
53
				<updatePolicy>daily</updatePolicy>
54
				<checksumPolicy>warn</checksumPolicy>
55
			</releases>
56
			<snapshots>
57
				<enabled>true</enabled>
58
				<updatePolicy>daily</updatePolicy>
59
				<checksumPolicy>warn</checksumPolicy>
60
			</snapshots>
61
		</repository>
62
	</repositories>
63
	<build>
64
		<plugins>
65
			<plugin>
66
				<groupId>org.apache.maven.plugins</groupId>
67
				<artifactId>maven-release-plugin</artifactId>
68
				<configuration>
69
					<tagBase>https://devel.gvsig.org/svn/gvsig-gdal/org.gvsig.gdal/tags</tagBase>
70
				</configuration>
71
			</plugin>
72
		</plugins>
73
	</build>
74
  <dependencyManagement>
75
  <dependencies>
76
          <dependency>
77
            <groupId>org.gvsig</groupId>
78
            <artifactId>org.gvsig.gdal.app.lin.x86</artifactId>
79
            <version>1.0.0-SNAPSHOT</version>
80
          </dependency>
81
          <dependency>
82
            <groupId>org.gvsig</groupId>
83
            <artifactId>org.gvsig.gdal.app.win.x86</artifactId>
84
            <version>1.0.0-SNAPSHOT</version>
85
          </dependency>
86
          <dependency>
87
             <groupId>org.gvsig</groupId>
88
             <artifactId>org.gvsig.gdal</artifactId>
89
             <version>1.10.1</version>
90
             <type>jar</type>
91
             <scope>import</scope>
92
          </dependency>
93
	</dependencies>
94
	</dependencyManagement>
95
  <modules>
96
    <module>org.gvsig.gdal.app.lin.x86</module>
97
    <module>org.gvsig.gdal.app.win.x86</module>
98
  </modules>
99
</project>
0 100

  
branches/gdal-old/org.gvsig.gdal.app/org.gvsig.gdal.app.lin.x86/buildNumber.properties
1
#Thu Nov 21 11:05:56 CET 2013
2
buildNumber=1
0 3

  
branches/gdal-old/org.gvsig.gdal.app/org.gvsig.gdal.app.lin.x86/src/main/assembly/gvsig-plugin-package.xml
1
<!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
-->
26
<assembly>
27
  <id>gvsig-plugin-package</id>
28
  <formats>
29
    <format>zip</format>
30
  </formats>
31
  <baseDirectory>${gvsig.package.info.code}</baseDirectory>
32
  <includeBaseDirectory>true</includeBaseDirectory>
33
  <files>
34
    <file>
35
      <source>target/package.info</source>
36
    </file>
37
  </files>
38

  
39
  <fileSets>
40
    <fileSet>
41
      <directory>target/org.gvsig.gdal.app.mainplugin</directory>
42
      <outputDirectory>.</outputDirectory>
43
      <excludes>
44
      	<exclude>package.info</exclude>
45
      </excludes>
46
    </fileSet>
47
    <fileSet>
48
      <directory>target/native</directory>
49
      <outputDirectory>native</outputDirectory>
50
    </fileSet>
51
    <fileSet>
52
      <directory>src/main/resources-plugin</directory>
53
      <outputDirectory>.</outputDirectory>
54
    </fileSet>
55
  </fileSets>
56

  
57

  
58
  <dependencySets>
59
    <dependencySet>
60
      <useProjectArtifact>false</useProjectArtifact>
61
      <useTransitiveDependencies>false</useTransitiveDependencies>
62
      <outputDirectory>lib</outputDirectory>
63
		<includes>
64
            <include>org.gvsig:org.gvsig.gdal.app.mainplugin:jar</include>
65
		</includes>
66
    </dependencySet>
67
  </dependencySets>
68

  
69
</assembly>
70

  
71

  
72

  
0 73

  
branches/gdal-old/org.gvsig.gdal.app/org.gvsig.gdal.app.lin.x86/src/main/resources-plugin/autorun.sh
1
#!/bin/sh
2
#
3
# gvSIG. Desktop Geographic Information System.
4
#
5
# Copyright (C) 2007-2013 gvSIG Association.
6
#
7
# This program is free software; you can redistribute it and/or
8
# modify it under the terms of the GNU General Public License
9
# as published by the Free Software Foundation; either version 3
10
# of the License, or (at your option) any later version.
11
#
12
# This program is distributed in the hope that it will be useful,
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
# GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with this program; if not, write to the Free Software
19
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
# MA  02110-1301, USA.
21
#
22
# For any additional information, do not hesitate to contact us
23
# at info AT gvsig.com, or visit our website www.gvsig.com.
24
#
25

  
26

  
27
#
28
# Plugin autorun
29
# 
30

  
31
PLUGIN_NAME="$(basename $PLUGIN_FOLDER)"
32

  
33
# Proj4 data files
34
#export PROJ_LIB="${GVSIG_HOME_FOLDER}/plugins/$PLUGIN_NAME/projlib"
35

  
36
# Temporary fix for number locale related formatting error with proj4.
37
#export LC_NUMERIC=C
38

  
39
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PLUGIN_FOLDER/native"
40
GVSIG_NATIVE_LIBS="$GVSIG_NATIVE_LIBS:$PLUGIN_FOLDER/native"
41

  
42

  
43

  
branches/gdal-old/org.gvsig.gdal.app/org.gvsig.gdal.app.lin.x86/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <artifactId>org.gvsig.gdal.app.lin.x86</artifactId>
5
  <packaging>jar</packaging>
6
   
7
 	<parent>
8
		<groupId>org.gvsig</groupId>
9
		<artifactId>org.gvsig.gdal.app</artifactId>
10
		<version>1.0.0-SNAPSHOT</version>
11
	</parent>
12

  
13
  <properties>
14
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
15
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
16
  </properties>
17

  
18
  <dependencyManagement>
19
      <dependencies>
20
            <dependency>
21
            <groupId>org.gvsig</groupId>
22
            <artifactId>org.gvsig.gdal</artifactId>
23
            <version>1.10.1</version>
24
        </dependency>                  
25
        <dependency>
26
            <groupId>org.gvsig</groupId>
27
            <artifactId>org.gvsig.gdal</artifactId>
28
            <version>1.10.1</version>
29
            <classifier>linux-all-gcc4-i686-dynamic</classifier>
30
            <type>tar.gz</type>
31
        </dependency>           
32
      </dependencies>
33
  </dependencyManagement>
34
 	 
35
  <build>
36
    <plugins>
37
  
38
      <plugin>
39
        <groupId>org.apache.maven.plugins</groupId>
40
        <artifactId>maven-dependency-plugin</artifactId>
41
        <executions>
42
          <execution>
43
          	<id>unpack</id>
44
	        <phase>process-sources</phase>
45
	        <goals>
46
	          <goal>unpack</goal>
47
	        </goals>
48
	        <configuration>
49
	          <artifactItems>
50
	            <artifactItem>
51
		            <groupId>org.gvsig</groupId>
52
		            <artifactId>org.gvsig.gdal</artifactId>
53
                	<classifier>linux-all-gcc4-i686-dynamic</classifier>
54
		            <type>tar.gz</type>
55
					<overWrite>true</overWrite>
56
					<outputDirectory>target/native</outputDirectory>
57
	            </artifactItem>
58
	          </artifactItems>
59
	        </configuration>
60
          </execution>
61
        </executions>
62
	  </plugin>
63
  
64
  
65
    </plugins>
66
  </build>
67

  
68
  <profiles>
69
  
70
    <profile>
71
      <id>gvsig-plugin-install-driver-linux-x86</id>
72
      <activation>
73
         <os>
74
             <family>unix</family>
75
             <name>linux</name>
76
             <arch>x86</arch>
77
         </os>
78
      </activation>
79
	  <properties>
80
	    <gvsig.install.plugin>true</gvsig.install.plugin>
81
	  </properties>
82
    </profile>
83
  </profiles>
84
  
85
</project>
86

  
0 87

  
branches/gdal-old/libraries/org.gvsig.gdal/maven-metadata-local.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<metadata>
3
  <groupId>org.gvsig</groupId>
4
  <artifactId>org.gvsig.gdal</artifactId>
5
  <version>1.10.1</version>
6
  <versioning>
7
    <versions>
8
      <version>1.10.1</version>
9
    </versions>
10
    <lastUpdated>20140220123441</lastUpdated>
11
  </versioning>
12
</metadata>
0 13

  
branches/gdal-old/libraries/org.gvsig.gdal/1.10.1/org.gvsig.gdal-1.10.1.pom
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4
  <modelVersion>4.0.0</modelVersion>
5
  <groupId>org.gvsig</groupId>
6
  <artifactId>org.gvsig.gdal</artifactId>
7
  <version>1.10.1</version>
8
  <description>POM was created from install:install-file</description>
9
</project>
0 10

  

Also available in: Unified diff