Revision 120

View differences:

tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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/xsd/maven-4.0.0.xsd">
3
	
4
    <modelVersion>4.0.0</modelVersion>
5
    <artifactId>org.gvsig.gdal.app</artifactId>
6
    <packaging>pom</packaging>
7
    <name>org.gvsig.gdal.app</name>
8
    <parent>
9
        <groupId>org.gvsig</groupId>
10
        <artifactId>org.gvsig.gdal</artifactId>
11
        <version>1.0.13</version>
12
    </parent>
13

  
14
    <properties>
15
        <gvsig.install.plugin>false</gvsig.install.plugin>  
16
        <gvsig.install.plugin.package>true</gvsig.install.plugin.package>
17
        <gvsig.package.info.state>testing</gvsig.package.info.state>
18
        <gvsig.package.info.official>true</gvsig.package.info.official>
19
        <gvsig.package.info.operatingSystem>all</gvsig.package.info.operatingSystem>
20
        <gvsig.package.info.architecture>all</gvsig.package.info.architecture>
21
        <gvsig.package.info.categories>Formats</gvsig.package.info.categories>
22
        <gvsig.package.info.poolURL>https://devel.gvsig.org/download/projects/gvsig-gdal/pool/</gvsig.package.info.poolURL>
23
        <gvsig.package.info.dependencies />
24
        <gvsig.package.info.codealias />
25
    </properties>
26

  
27
    <modules>
28
        <module>org.gvsig.gdal.app.mainplugin</module>
29
        <module>org.gvsig.gdal.app.gpx</module>
30
    </modules>
31
</project>
0 32

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.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
add_library_path "$PLUGIN_FOLDER/gdal"
34
export GDAL_DATA="${PLUGIN_FOLDER}/gdal/data"
35

  
36
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libgdaljni.so"
37
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libgdalconstjni.so"
38
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libogrjni.so"
39
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libosrjni.so"
40
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libproj.so.0"
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.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

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

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

  
58

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

  
70
</assembly>
0 71

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.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.mainplugin.lin.x86</artifactId>
5
    <packaging>jar</packaging>
6

  
7
    <parent>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.gdal.app.mainplugin</artifactId>
10
        <version>1.0.13</version>
11
    </parent>
12

  
13

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

  
18
        <gdal.classifier>osgeolive-9.0-ubuntu-14.04.3-i686</gdal.classifier>
19
        <gdal.version>1.11.2.1</gdal.version>
20
    </properties>
21

  
22
    <dependencyManagement>
23
        <dependencies>
24
            <dependency>
25
                <groupId>org.gdal</groupId>
26
                <artifactId>gdal</artifactId>
27
                <version>${gdal.version}</version>
28
                <classifier>${gdal.classifier}</classifier>
29
                <scope>runtime</scope>
30
                <type>tar.gz</type>
31
            </dependency>
32
            <dependency>
33
                <groupId>org.gdal</groupId>
34
                <artifactId>gdal</artifactId>
35
                <version>${gdal.version}</version>
36
                <classifier>${gdal.classifier}</classifier>
37
                <scope>runtime</scope>
38
                <type>jar</type>
39
            </dependency>
40
        </dependencies>
41
    </dependencyManagement>
42

  
43

  
44
    <dependencies>
45
        <dependency>
46
            <groupId>org.gvsig</groupId>
47
            <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
48
            <type>zip</type>
49
        </dependency>
50
        <dependency>
51
            <groupId>org.gdal</groupId>
52
            <artifactId>gdal</artifactId>
53
            <classifier>${gdal.classifier}</classifier>
54
            <scope>runtime</scope>
55
            <type>tar.gz</type>
56
        </dependency>
57
        <dependency>
58
            <groupId>org.gdal</groupId>
59
            <artifactId>gdal</artifactId>
60
            <classifier>${gdal.classifier}</classifier>
61
            <scope>runtime</scope>
62
            <type>jar</type>
63
        </dependency>
64
    </dependencies>
65

  
66

  
67
    <build>
68
        <plugins>
69

  
70
            <plugin>
71
                <groupId>org.apache.maven.plugins</groupId>
72
                <artifactId>maven-dependency-plugin</artifactId>
73
                <executions>
74
                    <execution>
75
                        <id>unpack</id>
76
                        <phase>process-sources</phase>
77
                        <goals>
78
                            <goal>unpack</goal>
79
                        </goals>
80
                        <configuration>
81
                            <artifactItems>
82
                                <artifactItem>
83
                                    <groupId>org.gvsig</groupId>
84
                                    <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
85
                                    <type>zip</type>
86
                                    <overWrite>true</overWrite>
87
                                    <outputDirectory>target</outputDirectory>
88
                                </artifactItem>
89
                                <artifactItem>
90
                                    <groupId>org.gdal</groupId>
91
                                    <artifactId>gdal</artifactId>
92
                                    <version>${gdal.version}</version>
93
                                    <classifier>${gdal.classifier}</classifier>
94
                                    <type>tar.gz</type>
95
                                    <overWrite>true</overWrite>
96
                                    <outputDirectory>target/native/gdal</outputDirectory>
97
                                </artifactItem>
98
                            </artifactItems>
99
                        </configuration>
100
                    </execution>
101
                </executions>
102
            </plugin>
103

  
104
        </plugins>
105
    </build>
106

  
107
</project>
0 108

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.lin.x86/buildNumber.properties
1
#Thu Dec 10 11:41:17 CET 2015
2
buildNumber=20
0 3

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.common/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>${project.artifactId}</baseDirectory>
32
  <includeBaseDirectory>true</includeBaseDirectory>
33
  <files>
34
    <file>
35
      <source>target/${project.artifactId}-${project.version}.jar</source>
36
      <outputDirectory>lib</outputDirectory>
37
    </file>
38
    <file>
39
      <source>target/package.info</source>
40
    </file>
41
  </files>
42

  
43
  <fileSets>
44
    <fileSet>
45
      <directory>src/main/resources-plugin</directory>
46
      <outputDirectory>.</outputDirectory>
47
    </fileSet>
48
  </fileSets>
49

  
50

  
51
  <dependencySets>
52
    <dependencySet>
53
      <useProjectArtifact>false</useProjectArtifact>
54
      <useTransitiveDependencies>false</useTransitiveDependencies>
55
      <outputDirectory>lib</outputDirectory>
56
		  <includes>
57
        <include>org.gvsig:org.gvsig.gdal.app.mainplugin:jar</include>
58
		  </includes>
59
    </dependencySet>
60
  </dependencySets>
61

  
62
</assembly>
63

  
64

  
0 65

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.common/src/main/java/org/gvsig/gdal/app/mainplugin/common/GdalExtension.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
* 
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
* 
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
* 
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22
package org.gvsig.gdal.app.mainplugin.common;
23

  
24
import org.gvsig.andami.plugins.Extension;
25

  
26
/**
27
 * Extension to add Gdal library support
28
 *
29
 * @author Nacho Brodin (nachobrodin@gmail.com)
30
 */
31
public class GdalExtension extends Extension {
32

  
33
	public void execute(String actionCommand) {
34
	}
35

  
36
	public void initialize() {
37
	}
38
	
39
	public boolean isEnabled() {
40
		return false;
41
	}
42

  
43
	public boolean isVisible() {
44
		return false;
45
	}
46

  
47
}
0 48

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.common/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<libraries library-dir="lib"/>
4
	<resourceBundle name="text"/>
5
	<extensions>
6
		<extension class-name="org.gvsig.gdal.app.mainplugin.common.GdalExtension"
7
			description=""
8
			active="true"
9
			priority="1">
10
		</extension>
11
	</extensions>
12
</plugin-config>
0 13

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.common/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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/maven-v4_0_0.xsd">
4
    <modelVersion>4.0.0</modelVersion>
5
    <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
6
    <packaging>jar</packaging>
7
    <name>${project.artifactId}</name>
8
    <description>Gdal bindings for gvSIG.</description>
9
    <parent>
10
        <groupId>org.gvsig</groupId>
11
        <artifactId>org.gvsig.gdal.app.mainplugin</artifactId>
12
        <version>1.0.13</version>
13
    </parent>
14

  
15
    <dependencies>
16
        <dependency>
17
            <groupId>org.gvsig</groupId>
18
            <artifactId>org.gvsig.andami</artifactId>
19
            <scope>compile</scope>
20
        </dependency>
21
    </dependencies>
22
	
23
    <properties>
24
        <!-- Control the deploy of the plugin in gvsig.product.folder.path/gvSIG/extensiones -->
25
        <gvsig.install.plugin>false</gvsig.install.plugin>
26
        <!--  Control the deploy of the plugin package in gvsig.product.folder.path/install -->
27
        <gvsig.install.plugin.package>false</gvsig.install.plugin.package>
28
    </properties>		
29
</project>
0 30

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.common/buildNumber.properties
1
#Thu Dec 10 11:41:16 CET 2015
2
buildNumber=20
0 3

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.win.x86_64/buildNumber.properties
1
#Thu Dec 10 11:41:44 CET 2015
2
buildNumber=19
0 3

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.win.x86_64/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
add_library_path "$PLUGIN_FOLDER/gdal"
34
export GDAL_DATA="${PLUGIN_FOLDER}/gdal/data"
35

  
36
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/gdaljni.dll"
37
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/gdalconstjni.dll"
38
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/ogrjni.dll"
39
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/osrjni.dll"
40
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/proj.dll"
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.win.x86_64/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.common</directory>
42
            <outputDirectory>.</outputDirectory>
43
            <excludes>
44
                <exclude>package.info</exclude>
45
            </excludes>
46
        </fileSet>
47
        <fileSet>
48
            <directory>target/native/gdal</directory>
49
            <outputDirectory>gdal</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.gdal:gdal:jar</include>
65
            </includes>
66
        </dependencySet>
67
    </dependencySets>
68

  
69
</assembly>
70

  
71

  
72

  
0 73

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.win.x86_64/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.mainplugin.win.x86_64</artifactId>
5
    <packaging>jar</packaging>
6
   
7
    <parent>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.gdal.app.mainplugin</artifactId>
10
        <version>1.0.13</version>
11
    </parent>
12
	
13
    <properties>
14
        <gvsig.package.info.operatingSystem>win</gvsig.package.info.operatingSystem>
15
        <gvsig.package.info.architecture>x86_64</gvsig.package.info.architecture>
16

  
17
        <gdal.classifier>win-vc2010-x86_64-dynamic</gdal.classifier>
18
        <gdal.version>1.11.1.1600</gdal.version>
19
    </properties>
20

  
21
    <dependencies>
22
        <dependency>
23
            <groupId>org.gvsig</groupId>
24
            <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
25
            <type>zip</type>
26
        </dependency>
27
        <dependency>
28
            <groupId>org.gdal</groupId>
29
            <artifactId>gdal</artifactId>
30
            <version>${gdal.version}</version>
31
            <scope>runtime</scope>
32
        </dependency>
33
        <dependency>
34
            <groupId>org.gdal</groupId>
35
            <artifactId>gdal</artifactId>
36
            <classifier>${gdal.classifier}</classifier>
37
            <version>${gdal.version}</version>
38
            <scope>runtime</scope>
39
            <type>tar.gz</type>
40
        </dependency>
41
    </dependencies>
42

  
43
    <build>
44
        <plugins>
45
  
46
            <plugin>
47
                <groupId>org.apache.maven.plugins</groupId>
48
                <artifactId>maven-dependency-plugin</artifactId>
49
                <executions>
50
                    <execution>
51
                        <id>unpack</id>
52
                        <phase>process-sources</phase>
53
                        <goals>
54
                            <goal>unpack</goal>
55
                        </goals>
56
                        <configuration>
57
                            <artifactItems>
58
                                <artifactItem>
59
                                    <groupId>org.gvsig</groupId>
60
                                    <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
61
                                    <type>zip</type>
62
                                    <overWrite>true</overWrite>
63
                                    <outputDirectory>target</outputDirectory>
64
                                </artifactItem>
65
                                <artifactItem>
66
                                    <groupId>org.gdal</groupId>
67
                                    <artifactId>gdal</artifactId>
68
                                    <classifier>${gdal.classifier}</classifier>
69
                                    <version>${gdal.version}</version>
70
                                    <type>tar.gz</type>
71
                                    <overWrite>true</overWrite>
72
                                    <outputDirectory>target/native/gdal</outputDirectory>
73
                                </artifactItem>
74
                            </artifactItems>
75
                        </configuration>
76
                    </execution>
77
                </executions>
78
            </plugin>
79

  
80
        </plugins>
81
    </build>
82
  
83
</project>
84

  
0 85

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.all.all/buildNumber.properties
1
#Thu Dec 10 11:41:16 CET 2015
2
buildNumber=20
0 3

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.all.all/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
# library path for Debians/Ubuntu
34
add_library_path "/usr/lib/jni"
35

  
36
# library path for redhat/fedora
37
add_library_path "/usr/lib/java/gdal"
38

  
39
export GDAL_DATA="/usr/local/share/gdal"
40

  
41

  
42

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.all.all/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.common</directory>
42
            <outputDirectory>.</outputDirectory>
43
            <excludes>
44
                <exclude>package.info</exclude>
45
            </excludes>
46
        </fileSet>
47
        <fileSet>
48
            <directory>src/main/resources-plugin</directory>
49
            <outputDirectory>.</outputDirectory>
50
        </fileSet>
51
    </fileSets>
52

  
53

  
54
    <dependencySets>
55
        <dependencySet>
56
            <useProjectArtifact>false</useProjectArtifact>
57
            <useTransitiveDependencies>false</useTransitiveDependencies>
58
            <outputDirectory>lib</outputDirectory>
59
            <includes>
60
                <include>org.gdal:gdal:jar</include>
61
            </includes>
62
        </dependencySet>
63
    </dependencySets>
64

  
65
</assembly>
66

  
67

  
68

  
0 69

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.all.all/src/main/java/org/gvsig/gdal/app/mainplugin/all/all/GdalExtension.java
1
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
* 
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
* 
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
* 
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
21
*/
22
package org.gvsig.gdal.app.mainplugin.all.all;
23

  
24
import org.gvsig.andami.plugins.Extension;
25

  
26
/**
27
 * Extension to add Gdal library support
28
 *
29
 * @author Jos? Bad?a (jbadia@scolab.es)
30
 */
31
public class GdalExtension extends Extension {
32

  
33
	public void execute(String actionCommand) {
34
	}
35

  
36
	public void initialize() {
37
	}
38
	
39
	public boolean isEnabled() {
40
		return false;
41
	}
42

  
43
	public boolean isVisible() {
44
		return false;
45
	}
46

  
47
}
0 48

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.all.all/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.mainplugin.all.all</artifactId>
5
    <packaging>jar</packaging>
6
   
7
    <parent>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.gdal.app.mainplugin</artifactId>
10
        <version>1.0.13</version>
11
    </parent>
12

  
13
    <dependencies>
14
        <dependency>
15
            <groupId>org.gvsig</groupId>
16
            <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
17
            <type>zip</type>
18
        </dependency>      
19
        <dependency>
20
            <groupId>org.gdal</groupId>
21
            <artifactId>gdal</artifactId>
22
            <scope>runtime</scope>
23
        </dependency>
24
    </dependencies>
25
  
26
    <properties>
27
        <!-- Package info property values -->
28
        <!-- Default values in org.gvsig.desktop -->
29
        <gvsig.package.info.operatingSystem>all</gvsig.package.info.operatingSystem>
30
        <gvsig.package.info.architecture>all</gvsig.package.info.architecture>
31
        <gvsig.install.plugin>true</gvsig.install.plugin>
32
        <gvsig.install.plugin.package>true</gvsig.install.plugin.package>    
33
    </properties>
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.app.mainplugin.common</artifactId>
53
                                    <type>zip</type>
54
                                    <overWrite>true</overWrite>
55
                                    <outputDirectory>target</outputDirectory>
56
                                </artifactItem>
57
                            </artifactItems>
58
                        </configuration>
59
                    </execution>
60
                </executions>
61
            </plugin>
62

  
63
        </plugins>
64
    </build>
65
  
66
</project>
67

  
0 68

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.lin.x86_64/buildNumber.properties
1
#Thu Dec 10 11:41:26 CET 2015
2
buildNumber=20
0 3

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.lin.x86_64/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
add_library_path "$PLUGIN_FOLDER/gdal"
34
export GDAL_DATA="${PLUGIN_FOLDER}/gdal/data"
35

  
36
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libgdaljni.so"
37
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libgdalconstjni.so"
38
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libogrjni.so"
39
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libosrjni.so"
40
list_shared_library_dependencies "$PLUGIN_FOLDER/gdal/libproj.so.0"
41

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.lin.x86_64/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

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

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

  
58

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

  
70
</assembly>
0 71

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.lin.x86_64/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.mainplugin.lin.x86_64</artifactId>
5
    <packaging>jar</packaging>
6

  
7
    <parent>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.gdal.app.mainplugin</artifactId>
10
        <version>1.0.13</version>
11
    </parent>
12

  
13

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

  
18
        <gdal.classifier>osgeolive-9.0-ubuntu-14.04.3-amd64</gdal.classifier>
19
        <gdal.version>1.11.2.1</gdal.version>
20
    </properties>
21

  
22
    <dependencyManagement>
23
        <dependencies>
24
            <dependency>
25
                <groupId>org.gdal</groupId>
26
                <artifactId>gdal</artifactId>
27
                <version>${gdal.version}</version>
28
                <classifier>${gdal.classifier}</classifier>
29
                <scope>runtime</scope>
30
                <type>tar.gz</type>
31
            </dependency>
32
            <dependency>
33
                <groupId>org.gdal</groupId>
34
                <artifactId>gdal</artifactId>
35
                <version>${gdal.version}</version>
36
                <classifier>${gdal.classifier}</classifier>
37
                <scope>runtime</scope>
38
                <type>jar</type>
39
            </dependency>
40
        </dependencies>
41
    </dependencyManagement>
42

  
43

  
44
    <dependencies>
45
        <dependency>
46
            <groupId>org.gvsig</groupId>
47
            <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
48
            <type>zip</type>
49
        </dependency>
50
        <dependency>
51
            <groupId>org.gdal</groupId>
52
            <artifactId>gdal</artifactId>
53
            <classifier>${gdal.classifier}</classifier>
54
            <scope>runtime</scope>
55
            <type>jar</type>
56
        </dependency>
57
        <dependency>
58
            <groupId>org.gdal</groupId>
59
            <artifactId>gdal</artifactId>
60
            <classifier>${gdal.classifier}</classifier>
61
            <scope>runtime</scope>
62
            <type>tar.gz</type>
63
        </dependency>
64
    </dependencies>
65

  
66

  
67

  
68
    <build>
69
        <plugins>
70

  
71
            <plugin>
72
                <groupId>org.apache.maven.plugins</groupId>
73
                <artifactId>maven-dependency-plugin</artifactId>
74
                <executions>
75
                    <execution>
76
                        <id>unpack</id>
77
                        <phase>process-sources</phase>
78
                        <goals>
79
                            <goal>unpack</goal>
80
                        </goals>
81
                        <configuration>
82
                            <artifactItems>
83
                                <artifactItem>
84
                                    <groupId>org.gvsig</groupId>
85
                                    <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
86
                                    <type>zip</type>
87
                                    <overWrite>true</overWrite>
88
                                    <outputDirectory>target</outputDirectory>
89
                                </artifactItem>
90
                                <artifactItem>
91
                                    <groupId>org.gdal</groupId>
92
                                    <artifactId>gdal</artifactId>
93
                                    <version>${gdal.version}</version>
94
                                    <classifier>${gdal.classifier}</classifier>
95
                                    <type>tar.gz</type>
96
                                    <overWrite>true</overWrite>
97
                                    <outputDirectory>target/native/gdal</outputDirectory>
98
                                </artifactItem>
99
                            </artifactItems>
100
                        </configuration>
101
                    </execution>
102
                </executions>
103
            </plugin>
104

  
105
        </plugins>
106
    </build>
107

  
108
</project>
0 109

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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/xsd/maven-4.0.0.xsd">
3

  
4
    <modelVersion>4.0.0</modelVersion>
5
    <artifactId>org.gvsig.gdal.app.mainplugin</artifactId>
6
    <packaging>pom</packaging>
7
    <name>org.gvsig.gdal.app.mainplugin</name>
8
    <parent>
9
        <groupId>org.gvsig</groupId>
10
        <artifactId>org.gvsig.gdal.app</artifactId>
11
        <version>1.0.13</version>
12
    </parent>
13

  
14

  
15
    <properties>
16
        <gvsig.package.info.poolURL>https://devel.gvsig.org/download/projects/gvsig-gdal/pool/</gvsig.package.info.poolURL>
17
        <gvsig.package.info.dependencies />
18
        <gvsig.package.info.code>org.gvsig.gdal.app.mainplugin</gvsig.package.info.code>
19
        <gvsig.package.info.codealias />
20
        <gvsig.package.info.name>GDAL/OGR native libraries for gvSIG</gvsig.package.info.name>
21
        <gvsig.package.info.description>${project.parent.description}</gvsig.package.info.description>
22
        <gvsig.package.info.dependencies>required: org.gvsig.app.mainplugin -ge 2</gvsig.package.info.dependencies>
23
    </properties>
24

  
25
    <modules>
26
        <module>org.gvsig.gdal.app.mainplugin.common</module>
27
        <module>org.gvsig.gdal.app.mainplugin.all.all</module>
28
        <module>org.gvsig.gdal.app.mainplugin.lin.x86</module>
29
        <module>org.gvsig.gdal.app.mainplugin.lin.x86_64</module>
30
        <module>org.gvsig.gdal.app.mainplugin.win.x86</module>
31
        <module>org.gvsig.gdal.app.mainplugin.win.x86_64</module>
32
    </modules>
33
</project>
0 34

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.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.mainplugin.win.x86</artifactId>
5
    <packaging>jar</packaging>
6
   
7
    <parent>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>org.gvsig.gdal.app.mainplugin</artifactId>
10
        <version>1.0.13</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

  
17
        <gdal.classifier>win-vc2010-x86-dynamic</gdal.classifier>
18
        <gdal.version>1.11.1.1600</gdal.version>
19
    </properties>
20

  
21
    <dependencies>
22
        <dependency>
23
            <groupId>org.gvsig</groupId>
24
            <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
25
            <type>zip</type>
26
        </dependency>
27
        <dependency>
28
            <groupId>org.gdal</groupId>
29
            <artifactId>gdal</artifactId>
30
            <version>${gdal.version}</version>
31
            <scope>runtime</scope>
32
        </dependency>
33
        <dependency>
34
            <groupId>org.gdal</groupId>
35
            <artifactId>gdal</artifactId>
36
            <classifier>${gdal.classifier}</classifier>
37
            <version>${gdal.version}</version>
38
            <scope>runtime</scope>
39
            <type>tar.gz</type>
40
        </dependency>
41
    </dependencies>
42

  
43
    <build>
44
        <plugins>
45
  
46
            <plugin>
47
                <groupId>org.apache.maven.plugins</groupId>
48
                <artifactId>maven-dependency-plugin</artifactId>
49
                <executions>
50
                    <execution>
51
                        <id>unpack</id>
52
                        <phase>process-sources</phase>
53
                        <goals>
54
                            <goal>unpack</goal>
55
                        </goals>
56
                        <configuration>
57
                            <artifactItems>
58
                                <artifactItem>
59
                                    <groupId>org.gvsig</groupId>
60
                                    <artifactId>org.gvsig.gdal.app.mainplugin.common</artifactId>
61
                                    <type>zip</type>
62
                                    <overWrite>true</overWrite>
63
                                    <outputDirectory>target</outputDirectory>
64
                                </artifactItem>
65
                                <artifactItem>
66
                                    <groupId>org.gdal</groupId>
67
                                    <artifactId>gdal</artifactId>
68
                                    <classifier>${gdal.classifier}</classifier>
69
                                    <version>${gdal.version}</version>
70
                                    <type>tar.gz</type>
71
                                    <overWrite>true</overWrite>
72
                                    <outputDirectory>target/native/gdal</outputDirectory>
73
                                </artifactItem>
74
                            </artifactItems>
75
                        </configuration>
76
                    </execution>
77
                </executions>
78
            </plugin>
79
  
80
  
81
        </plugins>
82
    </build>
83

  
84
</project>
85

  
0 86

  
tags/org.gvsig.gdal-1.0.13/org.gvsig.gdal.app/org.gvsig.gdal.app.mainplugin/org.gvsig.gdal.app.mainplugin.win.x86/buildNumber.properties
1
#Thu Dec 10 11:41:37 CET 2015
2
buildNumber=19
0 3

  
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff