Revision 3497

View differences:

org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.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.raster.gdal.app.common</artifactId>
6
	<packaging>jar</packaging>
7
	<name>Formats: Gdal file formats support</name>
8
	<description>Gdal data provider for gvSIG: jpeg, tiff, png, gif.</description>
9
	<parent>
10
    <groupId>org.gvsig</groupId>
11
    <artifactId>org.gvsig.raster.gdal.app</artifactId>
12
    <version>2.2.11-SNAPSHOT</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
		<dependency>
22
			<groupId>org.gvsig</groupId>
23
			<artifactId>org.gvsig.raster.gdal.io</artifactId>
24
			<scope>runtime</scope>
25
		</dependency>
26
		<dependency>
27
			<groupId>org.gvsig</groupId>
28
			<artifactId>org.gvsig.jgdal</artifactId>
29
      <scope>runtime</scope>
30
		</dependency>
31
	</dependencies>
32
	
33
  <properties>
34
      <!-- Control the deploy of the plugin in gvsig.product.folder.path/gvSIG/extensiones -->
35
      <gvsig.install.plugin>false</gvsig.install.plugin>
36
      <!--  Control the deploy of the plugin package in gvsig.product.folder.path/install -->
37
      <gvsig.install.plugin.package>false</gvsig.install.plugin.package>
38
  </properties>		
39
</project>
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.common/buildNumber.properties
1
#Tue May 19 11:19:45 CEST 2015
2
buildNumber=65
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.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.gdal:gdal:jar</include>
58
        <include>org.gvsig:org.gvsig.raster.gdal.io:jar</include>
59
		  </includes>
60
    </dependencySet>
61
  </dependencySets>
62

  
63
</assembly>
64

  
65

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.common/src/main/java/org/gvsig/raster/gdal/app/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.raster.gdal.app;
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
}
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.common/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
    <depends plugin-name="org.gvsig.gdal.app.mainplugin" />
4
	<depends plugin-name="org.gvsig.raster.mainplugin" />
5
	<depends plugin-name="org.gvsig.raster.tilecache.app" optional="true" />
6
	<libraries library-dir="lib"/>
7
	<resourceBundle name="text"/>
8
	<extensions>
9
		<extension class-name="org.gvsig.raster.gdal.app.GdalExtension"
10
			description=""
11
			active="true"
12
			priority="1">
13
		</extension>
14
	</extensions>
15
</plugin-config>
0 16

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.lin.x86_64/buildNumber.properties
1
#Tue May 19 11:19:56 CEST 2015
2
buildNumber=20
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.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/jgdal/lib"
34
#add_library_path "$PLUGIN_FOLDER/gdal/lib64"
35

  
36
#export GDAL_DATA="${PLUGIN_FOLDER}/gdal/data/gdal"
37

  
38
list_shared_library_dependencies "$PLUGIN_FOLDER/jgdal/lib/"libjgdal*
39

  
40

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.lin.x86_64/src/main/resources-plugin/install/install.xml
1
<project name="org.gvsig.raster.gdal.app" default="main" basedir=".">
2
	<target name="main">
3
<!-- 	  <exec dir="${extensions_dir}/org.gvsig.raster.gdal.app/gdal/lib64" executable="ln" > -->
4
<!-- 	    <arg value="-sf"/> -->
5
<!-- 	    <arg value="libgdal.so.1.17.1"/> -->
6
<!-- 	    <arg value="libgdal.so"/> -->
7
<!-- 	  </exec> -->
8
<!-- 	  <exec dir="${extensions_dir}/org.gvsig.raster.gdal.app/gdal/lib64" executable="ln" > -->
9
<!-- 	    <arg value="-sf"/> -->
10
<!-- 	    <arg value="libgdal.so.1.17.1"/> -->
11
<!-- 	    <arg value="libgdal.so.1"/> -->
12
<!-- 	  </exec> -->
13
<!-- 	  <delete quiet="true" file="${extensions_dir}/org.gvsig.raster.gdal.app/gdal/lib64/libstdc++.so.6"/> -->
14
	</target>
15
</project>
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.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
<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.raster.gdal.app.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
<!--       <excludes> -->
51
<!-- 	<exclude>**/libstdc++.so.6</exclude> -->
52
<!--       </excludes> -->
53
<!--     </fileSet> -->
54
    <fileSet>
55
      <directory>target/native/jgdal</directory>
56
      <outputDirectory>./jgdal</outputDirectory>
57
    </fileSet>
58
    <fileSet>
59
      <directory>src/main/resources-plugin</directory>
60
      <outputDirectory>.</outputDirectory>
61
    </fileSet>
62
  </fileSets>
63

  
64

  
65
  <dependencySets>
66
    <dependencySet>
67
      <useProjectArtifact>false</useProjectArtifact>
68
      <useTransitiveDependencies>false</useTransitiveDependencies>
69
      <outputDirectory>lib</outputDirectory>
70
		<includes>
71
            <include>org.gvsig:org.gvsig.jgdal:jar</include>
72
            <include>org.gdal:gdal:jar</include>
73
		</includes>
74
    </dependencySet>
75
  </dependencySets>
76

  
77
</assembly>
78

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.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.raster.gdal.app.lin.x86_64</artifactId>
5
  <packaging>jar</packaging>
6
   
7
 	<parent>
8
		<groupId>org.gvsig</groupId>
9
		<artifactId>org.gvsig.raster.gdal.app</artifactId>
10
    <version>2.2.11-SNAPSHOT</version>
11
	</parent>
12

  
13
  <properties>
14
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
15
    <gvsig.package.info.architecture>x86_64</gvsig.package.info.architecture>
16
    
17
    <jgdal.classifier>linux-all-gcc4-x86_64-dynamic</jgdal.classifier>
18
    <jgdal.version>2.0.4</jgdal.version>
19
    
20
  </properties>
21

  
22
  <dependencyManagement>
23
      <dependencies>
24
        <dependency>
25
            <groupId>org.gvsig</groupId>
26
            <artifactId>org.gvsig.jgdal</artifactId>
27
            <version>${jgdal.version}</version>
28
            <classifier>${jgdal.classifier}</classifier>
29
            <type>tar.gz</type>
30
            <scope>runtime</scope>
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>tar.gz</type> -->
39
<!--         </dependency> -->
40
    </dependencies>
41
  </dependencyManagement>
42

  
43
  <dependencies>
44
  
45
    <dependency>
46
      <groupId>org.gvsig</groupId>
47
      <artifactId>org.gvsig.raster.gdal.app.common</artifactId>
48
      <type>zip</type>
49
    </dependency>
50
    <dependency>
51
			<groupId>org.gvsig</groupId>
52
			<artifactId>org.gvsig.andami</artifactId>
53
			<scope>compile</scope>
54
		</dependency>
55
		<dependency>
56
			<groupId>org.gvsig</groupId>
57
			<artifactId>org.gvsig.raster.gdal.io</artifactId>
58
			<scope>runtime</scope>
59
		</dependency>
60
		<dependency>
61
			<groupId>org.gvsig</groupId>
62
			<artifactId>org.gvsig.jgdal</artifactId>
63
      <version>${jgdal.version}</version>
64
      <scope>runtime</scope>
65
		</dependency>
66
    <dependency>
67
        <groupId>org.gvsig</groupId>
68
        <artifactId>org.gvsig.jgdal</artifactId>
69
        <version>${jgdal.version}</version>
70
        <classifier>${jgdal.classifier}</classifier>
71
        <type>tar.gz</type>
72
        <scope>runtime</scope>
73
    </dependency>
74
<!--     <dependency> -->
75
<!--       <groupId>org.gdal</groupId> -->
76
<!--       <artifactId>gdal</artifactId> -->
77
<!--       <classifier>${gdal.classifier}</classifier> -->
78
<!--       <scope>runtime</scope> -->
79
<!--       <type>tar.gz</type> -->
80
<!--     </dependency> -->
81
    
82
    <dependency>
83
      <groupId>org.gdal</groupId>
84
      <artifactId>gdal</artifactId>
85
      <scope>runtime</scope>
86
    </dependency>
87
    
88
  </dependencies>
89

  
90
  <build>
91
    <plugins>
92
  
93
      <plugin>
94
        <groupId>org.apache.maven.plugins</groupId>
95
        <artifactId>maven-dependency-plugin</artifactId>
96
        <executions>
97
          <execution>
98
          	<id>unpack</id>
99
	        <phase>process-sources</phase>
100
	        <goals>
101
	          <goal>unpack</goal>
102
	        </goals>
103
	        <configuration>
104
	          <artifactItems>
105
	            <artifactItem>
106
		            <groupId>org.gvsig</groupId>
107
		            <artifactId>org.gvsig.raster.gdal.app.common</artifactId>
108
		            <type>zip</type>
109
					      <overWrite>true</overWrite>
110
					      <outputDirectory>target</outputDirectory>
111
	            </artifactItem>
112
	            <artifactItem>
113
                <groupId>org.gvsig</groupId>
114
                <artifactId>org.gvsig.jgdal</artifactId>
115
                <version>${jgdal.version}</version>
116
                <classifier>${jgdal.classifier}</classifier>
117
		            <type>tar.gz</type>
118
					      <overWrite>true</overWrite>
119
					      <outputDirectory>target/native/jgdal</outputDirectory>
120
	            </artifactItem>
121
<!-- 	            <artifactItem> -->
122
<!--                 <groupId>org.gdal</groupId> -->
123
<!--                 <artifactId>gdal</artifactId> -->
124
<!--                 <version>${gdal.version}</version> -->
125
<!--                 <classifier>${gdal.classifier}</classifier> -->
126
<!-- 		            <type>tar.gz</type> -->
127
<!-- 					      <overWrite>true</overWrite> -->
128
<!-- 					      <outputDirectory>target/native/gdal</outputDirectory> -->
129
<!-- 	            </artifactItem> -->
130
	          </artifactItems>
131
	        </configuration>
132
          </execution>
133
        </executions>
134
	  </plugin>
135
  
136
  
137
    </plugins>
138
  </build>
139

  
140
  <!-- 
141
  The profiles only configure the automatic deploy of gvSIG plugin in the gvSIG
142
  configured in HOME/.gvsig-devel.properties
143
  -->
144
  <profiles>
145
  
146
    <profile>
147
      <id>gvsig-plugin-install-raster-linux-x86_64</id>
148
      <activation>
149
         <os>
150
             <family>unix</family>
151
             <name>linux</name>
152
             <arch>x86_64</arch>
153
         </os>
154
      </activation>
155
	    <properties>
156
	      <gvsig.install.plugin>true</gvsig.install.plugin>
157
	    </properties>
158
    </profile>
159

  
160
    <profile>
161
      <id>gvsig-plugin-install-raster-linux-amd64</id>
162
      <activation>
163
         <os>
164
             <family>unix</family>
165
             <name>linux</name>
166
             <arch>amd64</arch>
167
         </os>
168
      </activation>
169
      <properties>
170
         <gvsig.install.plugin>true</gvsig.install.plugin>
171
      </properties>
172
    </profile>
173

  
174
  </profiles>
175
  
176
</project>
177

  
0 178

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.win.x86/buildNumber.properties
1
#Tue May 19 11:20:20 CEST 2015
2
buildNumber=20
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.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.raster.gdal.app.common</directory>
42
      <outputDirectory>.</outputDirectory>
43
      <excludes>
44
      	<exclude>package.info</exclude>
45
      </excludes>
46
    </fileSet>
47
    <fileSet>
48
      <directory>target/native/gdal/bin</directory>
49
      <outputDirectory>./install/files</outputDirectory>
50
      <excludes>
51
        <exclude>*.exe</exclude>
52
      </excludes>    
53
    </fileSet>
54
    <fileSet>
55
      <directory>target/native/gdal/data</directory>
56
      <outputDirectory>./install/files/data/gdal</outputDirectory>
57
    </fileSet>
58
    <fileSet>
59
      <directory>target/native/jgdal/bin</directory>
60
      <outputDirectory>./install/files</outputDirectory>
61
    </fileSet>    
62
    <fileSet>
63
      <directory>target/native/visualcppredist8/bin</directory>
64
      <outputDirectory>./install/files</outputDirectory>
65
      <excludes>
66
        <exclude>README-visualcppredist-2008.txt</exclude>
67
      </excludes>    
68
    </fileSet>    
69
    <fileSet>
70
      <directory>target/native/visualcppredist9/bin</directory>
71
      <outputDirectory>./install/files</outputDirectory>
72
    </fileSet>    
73
    <fileSet>
74
      <directory>src/main/resources-plugin</directory>
75
      <outputDirectory>.</outputDirectory>
76
    </fileSet>
77
  </fileSets>
78

  
79

  
80
  <dependencySets>
81
    <dependencySet>
82
      <useProjectArtifact>false</useProjectArtifact>
83
      <useTransitiveDependencies>false</useTransitiveDependencies>
84
      <outputDirectory>lib</outputDirectory>
85
		<includes>
86
  		 <include>org.gvsig:org.gvsig.jgdal:jar</include> 
87
  		 <include>org.gdal:gdal:jar</include>
88
		</includes>
89
    </dependencySet>
90
  </dependencySets>
91

  
92
</assembly>
93

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.win.x86/src/main/resources-plugin/install/install.xml
1
<project name="org.gvsig.raster.gdal.app" default="main" basedir=".">
2
  <target name="main" depends="copy_files"/>
3

  
4
  <target name="copy_files">
5
    <copy todir="${gvsig_dir}">
6
      <fileset dir="./files" includes="**"/>
7
    </copy>
8
  </target>
9

  
10
</project>
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.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.raster.gdal.app.win.x86</artifactId>
5
  <packaging>jar</packaging>
6
   
7
  <parent>
8
    <groupId>org.gvsig</groupId>
9
    <artifactId>org.gvsig.raster.gdal.app</artifactId>
10
    <version>2.2.11-SNAPSHOT</version>
11
  </parent>
12

  
13

  
14
    <repositories>
15
        <repository>
16
            <id>osgeo</id>
17
            <name>Open Source Geospatial Foundation Repository</name>
18
            <url>http://download.osgeo.org/webdav/geotools/</url>
19
        </repository>
20
    </repositories>
21

  
22
  <properties>
23
    <gvsig.package.info.operatingSystem>win</gvsig.package.info.operatingSystem>
24
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
25
    
26
    <jgdal.classifier>win-nt-vs8-i386-dynamic</jgdal.classifier>
27
    <jgdal.version>2.0.4</jgdal.version>
28
        
29
<!--     <gdal.classifier>win-nt-vs8-i386-dynamic</gdal.classifier> -->
30
<!--     <gdal.version>1.11.2</gdal.version>     -->
31
     
32
    <visualcppredist8.classifier>win-nt-vs8-i386-dynamic</visualcppredist8.classifier>
33
    <visualcppredist8.version>2008</visualcppredist8.version>    
34
     
35
    <visualcppredist9.classifier>win-nt-vs9-i386-dynamic</visualcppredist9.classifier>
36
    <visualcppredist9.version>9.0.21022.8</visualcppredist9.version>    
37
     
38
  </properties>
39

  
40
  <dependencyManagement>
41
      <dependencies>
42
        <dependency>
43
            <groupId>org.gvsig</groupId>
44
            <artifactId>org.gvsig.jgdal</artifactId>
45
            <version>${jgdal.version}</version>
46
            <classifier>${jgdal.classifier}</classifier>
47
            <type>tar.gz</type>
48
            <scope>runtime</scope>
49
        </dependency>
50
<!--         <dependency> -->
51
<!--           <groupId>org.gdal</groupId> -->
52
<!--           <artifactId>gdal</artifactId> -->
53
<!--           <version>${gdal.version}</version> -->
54
<!--           <classifier>${gdal.classifier}</classifier> -->
55
<!--           <scope>runtime</scope> -->
56
<!--           <type>tar.gz</type> -->
57
<!--         </dependency> -->
58
        
59
<!--         <dependency> -->
60
<!--           <groupId>org.gdal</groupId> -->
61
<!--           <artifactId>gdal</artifactId> -->
62
<!--           <version>${gdal.version}</version> -->
63
<!--         </dependency> -->
64
        
65
        <dependency>
66
          <groupId>com.microsoft</groupId>
67
          <artifactId>visualcppredist</artifactId>
68
          <version>${visualcppredist8.version}</version>
69
          <classifier>${visualcppredist8.classifier}</classifier>
70
          <type>tar.gz</type>
71
        </dependency>
72
        
73
        <dependency>
74
          <groupId>com.microsoft</groupId>
75
          <artifactId>visualcppredist</artifactId>
76
          <version>${visualcppredist9.version}</version>
77
          <classifier>${visualcppredist9.classifier}</classifier>
78
          <type>tar.gz</type>
79
        </dependency>
80
        
81
    </dependencies>
82
  </dependencyManagement>
83

  
84
  <dependencies>
85
  
86
    <dependency>
87
      <groupId>org.gvsig</groupId>
88
      <artifactId>org.gvsig.raster.gdal.app.common</artifactId>
89
      <type>zip</type>
90
    </dependency>
91
    <dependency>
92
      <groupId>org.gvsig</groupId>
93
      <artifactId>org.gvsig.andami</artifactId>
94
      <scope>compile</scope>
95
    </dependency>
96
    <dependency>
97
      <groupId>org.gvsig</groupId>
98
      <artifactId>org.gvsig.raster.gdal.io</artifactId>
99
      <scope>runtime</scope>
100
    </dependency>
101
    <dependency>
102
      <groupId>org.gvsig</groupId>
103
      <artifactId>org.gvsig.jgdal</artifactId>
104
      <scope>runtime</scope>
105
    </dependency>
106
    <dependency>
107
        <groupId>org.gvsig</groupId>
108
        <artifactId>org.gvsig.jgdal</artifactId>
109
        <version>${jgdal.version}</version>
110
        <classifier>${jgdal.classifier}</classifier>
111
        <type>tar.gz</type>
112
        <scope>runtime</scope>
113
    </dependency>
114
<!--     <dependency> -->
115
<!--       <groupId>org.gdal</groupId> -->
116
<!--       <artifactId>gdal</artifactId> -->
117
<!--       <version>${gdal.version}</version> -->
118
<!--       <classifier>${gdal.classifier}</classifier> -->
119
<!--       <scope>runtime</scope> -->
120
<!--       <type>tar.gz</type> -->
121
<!--     </dependency> -->
122
    
123
<!--     <dependency> -->
124
<!--       <groupId>org.gdal</groupId> -->
125
<!--       <artifactId>gdal</artifactId> -->
126
<!--       <version>${gdal.version}</version> -->
127
<!--       <scope>runtime</scope> -->
128
<!--     </dependency> -->
129
    <dependency>
130
      <groupId>org.gdal</groupId>
131
      <artifactId>gdal</artifactId>
132
    </dependency>
133
    
134
        
135
    <dependency>
136
      <groupId>com.microsoft</groupId>
137
      <artifactId>visualcppredist</artifactId>
138
      <version>${visualcppredist8.version}</version>
139
      <classifier>${visualcppredist8.classifier}</classifier>
140
      <type>tar.gz</type>
141
    </dependency>
142
    <dependency>
143
      <groupId>com.microsoft</groupId>
144
      <artifactId>visualcppredist</artifactId>
145
      <version>${visualcppredist9.version}</version>
146
      <classifier>${visualcppredist9.classifier}</classifier>
147
      <type>tar.gz</type>
148
    </dependency>
149
    
150
  </dependencies>
151

  
152
  <build>
153
    <plugins>
154
  
155
      <plugin>
156
        <groupId>org.apache.maven.plugins</groupId>
157
        <artifactId>maven-dependency-plugin</artifactId>
158
        <executions>
159
          <execution>
160
            <id>unpack</id>
161
          <phase>process-sources</phase>
162
          <goals>
163
            <goal>unpack</goal>
164
          </goals>
165
          <configuration>
166
            <artifactItems>
167
            
168
              <artifactItem>
169
                <groupId>org.gvsig</groupId>
170
                <artifactId>org.gvsig.raster.gdal.app.common</artifactId>
171
                <type>zip</type>
172
                <overWrite>true</overWrite>
173
                <outputDirectory>target</outputDirectory>
174
              </artifactItem>
175
              
176
              <artifactItem>
177
                <groupId>org.gvsig</groupId>
178
                <artifactId>org.gvsig.jgdal</artifactId>
179
                <version>${jgdal.version}</version>
180
                <classifier>${jgdal.classifier}</classifier>
181
                <type>tar.gz</type>
182
                <overWrite>true</overWrite>
183
                <outputDirectory>target/native/jgdal</outputDirectory>
184
              </artifactItem>
185
              
186
<!--               <artifactItem> -->
187
<!--                 <groupId>org.gdal</groupId> -->
188
<!--                 <artifactId>gdal</artifactId> -->
189
<!--                 <version>${gdal.version}</version> -->
190
<!--                 <classifier>${gdal.classifier}</classifier> -->
191
<!--                 <type>tar.gz</type> -->
192
<!--                 <overWrite>true</overWrite> -->
193
<!--                 <outputDirectory>target/native/gdal</outputDirectory> -->
194
<!--               </artifactItem> -->
195
              
196
              <artifactItem>
197
                <groupId>com.microsoft</groupId>
198
                <artifactId>visualcppredist</artifactId>
199
                <version>${visualcppredist8.version}</version>
200
                <classifier>${visualcppredist8.classifier}</classifier>
201
                <type>tar.gz</type>
202
                <overWrite>true</overWrite>
203
                <outputDirectory>target/native/visualcppredist8</outputDirectory>
204
              </artifactItem>
205
              
206
              <artifactItem>
207
                <groupId>com.microsoft</groupId>
208
                <artifactId>visualcppredist</artifactId>
209
                <version>${visualcppredist9.version}</version>
210
                <classifier>${visualcppredist9.classifier}</classifier>
211
                <type>tar.gz</type>
212
                <overWrite>true</overWrite>
213
                <outputDirectory>target/native/visualcppredist9</outputDirectory>
214
              </artifactItem>
215
              
216
            </artifactItems>
217
          </configuration>
218
          </execution>
219
        </executions>
220
    </plugin>
221
  
222
  
223
    </plugins>
224
  </build>
225

  
226
  <!-- 
227
  The profiles only configure the automatic deploy of gvSIG plugin in the gvSIG
228
  configured in HOME/.gvsig-devel.properties
229
  -->
230
  <profiles>
231
  
232
    <profile>
233
      <id>gvsig-plugin-install-raster-windows-x86</id>
234
      <activation>
235
         <os>
236
             <family>windows</family>
237
             <!-- Uncomment this when have support for amd64 -->
238
             <!-- 
239
             <arch>x86</arch>
240
             -->
241
         </os>
242
      </activation>
243
    <properties>
244
      <gvsig.install.plugin>true</gvsig.install.plugin>
245
    </properties>
246
    </profile>
247
    
248
  </profiles>
249
  
250
</project>
251

  
0 252

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/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/xsd/maven-4.0.0.xsd">
3

  
4
  <modelVersion>4.0.0</modelVersion>
5
  <artifactId>org.gvsig.raster.gdal.app</artifactId>
6
  <packaging>pom</packaging>
7
  <name>${project.artifactId}</name>
8
	<parent>
9
    <groupId>org.gvsig</groupId>
10
    <artifactId>org.gvsig.raster.gdal</artifactId>
11
    <version>2.2.11-SNAPSHOT</version>
12
  </parent>
13
  
14
  <properties>
15
    <svn.tags.folder>https://devel.gvsig.org/svn/gvsig-raster/org.gvsig.raster.gdal/tags/</svn.tags.folder>
16
    <gvsig.install.plugin>false</gvsig.install.plugin>  
17
        
18
    <gvsig.package.info.state>testing</gvsig.package.info.state>
19
    <gvsig.package.info.official>true</gvsig.package.info.official>
20
    <gvsig.package.info.operatingSystem>all</gvsig.package.info.operatingSystem>
21
    <gvsig.package.info.architecture>all</gvsig.package.info.architecture>
22
		<gvsig.package.info.categories>Raster, Formats</gvsig.package.info.categories>
23
    <gvsig.package.info.poolURL>https://devel.gvsig.org/download/projects/Raster/pool/</gvsig.package.info.poolURL>
24
    <gvsig.package.info.dependencies />
25
    <gvsig.package.info.code>org.gvsig.raster.gdal.app</gvsig.package.info.code>
26
    <gvsig.package.info.codealias />
27
    <gvsig.package.info.name>${project.parent.name}</gvsig.package.info.name>
28
    <gvsig.package.info.description>${project.parent.description}</gvsig.package.info.description>
29
    <gvsig.install.plugin>false</gvsig.install.plugin>    
30
		<gvsig.package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</gvsig.package.info.dependencies>
31

  
32
  </properties>
33
  
34
  <modules>
35
    <module>org.gvsig.raster.gdal.app.common</module>
36
<!--     <module>org.gvsig.raster.gdal.app.lin.x86</module> -->
37
    <module>org.gvsig.raster.gdal.app.lin.x86_64</module>
38
<!--     <module>org.gvsig.raster.gdal.app.win.x86</module> -->
39
    <!--
40
    <module>org.gvsig.raster.gdal.app.mac_10.5</module>
41
    <module>org.gvsig.raster.gdal.app.fedora.x86</module>
42
    -->
43
  </modules>
44

  
45

  
46
</project>
47

  
0 48

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.mac_10.5/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.raster.gdal.app.mac_10.5</artifactId>
5
  <packaging>jar</packaging>
6
   
7
 	<parent>
8
		<groupId>org.gvsig</groupId>
9
		<artifactId>org.gvsig.raster.gdal.app</artifactId>
10
    <version>2.2.3-SNAPSHOT</version>
11
	</parent>
12

  
13
  <properties>
14
    <gvsig.package.info.operatingSystem>mac</gvsig.package.info.operatingSystem>
15
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
16
    
17
    <jgdal.classifier>mac-10.5-gcc4-universal-dynamic</jgdal.classifier>
18
 		<jgdal.version>2.0</jgdal.version>    
19

  
20
    <gdal.classifier>mac-10.5-gcc4-universal-dynamic</gdal.classifier>
21
 		<gdal.version>1.6.0</gdal.version>    
22
  </properties>
23

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

  
45
  <dependencies>
46
  
47
    <dependency>
48
      <groupId>org.gvsig</groupId>
49
      <artifactId>org.gvsig.raster.gdal.app.common</artifactId>
50
      <type>zip</type>
51
    </dependency>
52
    <dependency>
53
			<groupId>org.gvsig</groupId>
54
			<artifactId>org.gvsig.andami</artifactId>
55
			<scope>compile</scope>
56
		</dependency>
57
		<dependency>
58
			<groupId>org.gvsig</groupId>
59
			<artifactId>org.gvsig.raster.gdal.io</artifactId>
60
			<scope>runtime</scope>
61
		</dependency>
62
		<dependency>
63
			<groupId>org.gvsig</groupId>
64
			<artifactId>org.gvsig.jgdal</artifactId>
65
      <version>${jgdal.version}</version>
66
      <scope>runtime</scope>
67
		</dependency>
68
    <dependency>
69
        <groupId>org.gvsig</groupId>
70
        <artifactId>org.gvsig.jgdal</artifactId>
71
        <version>${jgdal.version}</version>
72
        <classifier>${jgdal.classifier}</classifier>
73
        <type>tar.gz</type>
74
        <scope>runtime</scope>
75
    </dependency>
76
    <dependency>
77
      <groupId>org.gdal</groupId>
78
      <artifactId>gdal</artifactId>
79
      <version>${gdal.version}</version>
80
      <classifier>${gdal.classifier}</classifier>
81
      <scope>runtime</scope>
82
      <type>tar.gz</type>
83
    </dependency>
84

  
85
  </dependencies>
86

  
87
  <build>
88
    <plugins>
89
  
90
      <plugin>
91
        <groupId>org.apache.maven.plugins</groupId>
92
        <artifactId>maven-dependency-plugin</artifactId>
93
        <executions>
94
          <execution>
95
          	<id>unpack</id>
96
	        <phase>process-sources</phase>
97
	        <goals>
98
	          <goal>unpack</goal>
99
	        </goals>
100
	        <configuration>
101
	          <artifactItems>
102

  
103
	            <artifactItem>
104
		            <groupId>org.gvsig</groupId>
105
		            <artifactId>org.gvsig.raster.gdal.app.common</artifactId>
106
		            <type>zip</type>
107
					      <overWrite>true</overWrite>
108
					      <outputDirectory>target</outputDirectory>
109
	            </artifactItem>
110

  
111
	            <artifactItem>
112
                <groupId>org.gvsig</groupId>
113
                <artifactId>org.gvsig.jgdal</artifactId>
114
                <version>${jgdal.version}</version>
115
                <classifier>${jgdal.classifier}</classifier>
116
		            <type>tar.gz</type>
117
					      <overWrite>true</overWrite>
118
					      <outputDirectory>target/native/jgdal</outputDirectory>
119
	            </artifactItem>
120

  
121
	            <artifactItem>
122
                <groupId>org.gdal</groupId>
123
                <artifactId>gdal</artifactId>
124
                <version>${gdal.version}</version>
125
                <classifier>${gdal.classifier}</classifier>
126
		            <type>tar.gz</type>
127
					      <overWrite>true</overWrite>
128
					      <outputDirectory>target/native/gdal</outputDirectory>
129
	            </artifactItem>
130

  
131
	          </artifactItems>
132
	        </configuration>
133
          </execution>
134
        </executions>
135
	  </plugin>
136
  
137
  
138
    </plugins>
139
  </build>
140

  
141

  
142
  
143
</project>
144

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.mac_10.5/buildNumber.properties
1
#Fri Mar 28 13:59:39 CET 2014
2
buildNumber=12
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.mac_10.5/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
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PLUGIN_FOLDER/native"
34
GVSIG_NATIVE_LIBS="$GVSIG_NATIVE_LIBS:$PLUGIN_FOLDER/native"
35

  
36

  
37

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.mac_10.5/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.raster.gdal.app.common</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>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.jgdal:jar</include>
65
            <include>org.gdal:gdal:jar</include>
66
		</includes>
67
    </dependencySet>
68
  </dependencySets>
69

  
70
</assembly>
71

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.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.raster.gdal.app.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
      <excludes>
51
        <exclude>**/libstdc++.so.6</exclude>
52
      </excludes>
53
    </fileSet>
54
    <fileSet>
55
      <directory>target/native/jgdal</directory>
56
      <outputDirectory>./jgdal</outputDirectory>
57
    </fileSet>
58
    <fileSet>
59
      <directory>src/main/resources-plugin</directory>
60
      <outputDirectory>.</outputDirectory>
61
    </fileSet>
62
  </fileSets>
63

  
64

  
65
  <dependencySets>
66
    <dependencySet>
67
      <useProjectArtifact>false</useProjectArtifact>
68
      <useTransitiveDependencies>false</useTransitiveDependencies>
69
      <outputDirectory>lib</outputDirectory>
70
		<includes>
71
            <include>org.gvsig:org.gvsig.jgdal:jar</include>
72
            <include>org.gdal:gdal:jar</include>
73
		</includes>
74
    </dependencySet>
75
  </dependencySets>
76

  
77
</assembly>
78

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.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
add_library_path "$PLUGIN_FOLDER/jgdal/lib"
34
add_library_path "$PLUGIN_FOLDER/gdal/lib"
35

  
36
export GDAL_DATA="${PLUGIN_FOLDER}/gdal/data/gdal"
37

  
38
list_shared_library_dependencies "$PLUGIN_FOLDER/jgdal/lib/"libjgdal*
39

  
40

  
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.lin.x86/src/main/resources-plugin/install/install.xml
1
<project name="org.gvsig.raster.ermapper.app" default="main" basedir=".">
2
	<target name="main">
3
	  <exec dir="${extensions_dir}/org.gvsig.raster.gdal.app/gdal/lib" executable="ln" >
4
	    <arg value="-sf"/>
5
	    <arg value="libgdal.so.1.15.1"/>
6
	    <arg value="libgdal.so"/>
7
	  </exec>
8
	  <exec dir="${extensions_dir}/org.gvsig.raster.gdal.app/gdal/lib" executable="ln" >
9
	    <arg value="-sf"/>
10
	    <arg value="libgdal.so.1.15.1"/>
11
	    <arg value="libgdal.so.1"/>
12
	  </exec>
13
	</target>
14
</project>
org.gvsig.raster.gdal/tags/pre-remove-jgdal/org.gvsig.raster.gdal/org.gvsig.raster.gdal.app/org.gvsig.raster.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.raster.gdal.app.lin.x86</artifactId>
5
  <packaging>jar</packaging>
6

  
7
 	<parent>
8
		<groupId>org.gvsig</groupId>
9
		<artifactId>org.gvsig.raster.gdal.app</artifactId>
10
    <version>2.2.11-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

  
17
    <jgdal.classifier>linux-all-gcc4-i386-dynamic</jgdal.classifier>
18
    <jgdal.version>2.0.4</jgdal.version>
19
  </properties>
20

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

  
40
       
41

  
42
    </dependencies>
43
  </dependencyManagement>
44

  
45
  <dependencies>
46

  
47
    <dependency>
48
      <groupId>org.gvsig</groupId>
49
      <artifactId>org.gvsig.raster.gdal.app.common</artifactId>
50
      <type>zip</type>
51
    </dependency>
52
    <dependency>
53
			<groupId>org.gvsig</groupId>
54
			<artifactId>org.gvsig.andami</artifactId>
55
			<scope>compile</scope>
56
		</dependency>
57
		<dependency>
58
			<groupId>org.gvsig</groupId>
59
			<artifactId>org.gvsig.raster.gdal.io</artifactId>
60
			<scope>runtime</scope>
61
		</dependency>
62
		<dependency>
63
			<groupId>org.gvsig</groupId>
64
			<artifactId>org.gvsig.jgdal</artifactId>
65
      <version>${jgdal.version}</version>
66
      <scope>runtime</scope>
67
		</dependency>
68
    <dependency>
69
        <groupId>org.gvsig</groupId>
70
        <artifactId>org.gvsig.jgdal</artifactId>
71
        <version>${jgdal.version}</version>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff