Revision 3122

View differences:

org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.win.x86/buildNumber.properties
1
#Sun Feb 08 16:31:11 CET 2015
2
buildNumber=17
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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/org.gvsig.raster.gdal-2.2.7/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/org.gvsig.raster.gdal-2.2.7/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.7</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.8.1</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
    
130
    <dependency>
131
      <groupId>com.microsoft</groupId>
132
      <artifactId>visualcppredist</artifactId>
133
      <version>${visualcppredist8.version}</version>
134
      <classifier>${visualcppredist8.classifier}</classifier>
135
      <type>tar.gz</type>
136
    </dependency>
137
    <dependency>
138
      <groupId>com.microsoft</groupId>
139
      <artifactId>visualcppredist</artifactId>
140
      <version>${visualcppredist9.version}</version>
141
      <classifier>${visualcppredist9.classifier}</classifier>
142
      <type>tar.gz</type>
143
    </dependency>
144
    
145
  </dependencies>
146

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

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

  
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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.7</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/org.gvsig.raster.gdal-2.2.7/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/org.gvsig.raster.gdal-2.2.7/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/org.gvsig.raster.gdal-2.2.7/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/org.gvsig.raster.gdal-2.2.7/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/org.gvsig.raster.gdal-2.2.7/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.lin.x86/buildNumber.properties
1
#Sun Feb 08 16:31:07 CET 2015
2
buildNumber=17
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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
    </fileSet>
51
    <fileSet>
52
      <directory>target/native/jgdal</directory>
53
      <outputDirectory>./jgdal</outputDirectory>
54
    </fileSet>
55
    <fileSet>
56
      <directory>src/main/resources-plugin</directory>
57
      <outputDirectory>.</outputDirectory>
58
    </fileSet>
59
  </fileSets>
60

  
61

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

  
74
</assembly>
75

  
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PLUGIN_FOLDER/gdal/lib"
34
GVSIG_NATIVE_LIBS="$GVSIG_NATIVE_LIBS:$PLUGIN_FOLDER/gdal/lib"
35

  
36
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PLUGIN_FOLDER/jgdal/lib"
37
GVSIG_NATIVE_LIBS="$GVSIG_NATIVE_LIBS:$PLUGIN_FOLDER/jgdal/lib"
38

  
39
export GDAL_DATA="${PLUGIN_FOLDER}/gdal/data/gdal"
40

  
41

  
42

  
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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/org.gvsig.raster.gdal-2.2.7/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.7</version>
11
	</parent>
12
    
13
    <repositories>
14
        <repository>
15
            <id>osgeo</id>
16
            <name>Open Source Geospatial Foundation Repository</name>
17
            <url>http://download.osgeo.org/webdav/geotools/</url>
18
        </repository>
19
    </repositories>
20
    
21
  <properties>
22
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
23
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
24
    
25
    <jgdal.classifier>linux-all-gcc4-i386-dynamic</jgdal.classifier>
26
    <jgdal.version>2.0.4</jgdal.version>
27
    
28
    <gdal.classifier>linux-all-gcc4-i386-dynamic</gdal.classifier>
29
 		<gdal.version>1.8.1</gdal.version>    
30
  </properties>
31

  
32
  <dependencyManagement>
33
      <dependencies>
34
        <dependency>
35
            <groupId>org.gvsig</groupId>
36
            <artifactId>org.gvsig.jgdal</artifactId>
37
            <version>${jgdal.version}</version>
38
            <classifier>${jgdal.classifier}</classifier>
39
            <type>tar.gz</type>
40
            <scope>runtime</scope>
41
        </dependency>
42
        <dependency>
43
          <groupId>org.gdal</groupId>
44
          <artifactId>gdal</artifactId>
45
          <version>${gdal.version}</version>
46
          <classifier>${gdal.classifier}</classifier>
47
          <scope>runtime</scope>
48
          <type>tar.gz</type>
49
        </dependency>
50
        
51
        <dependency>
52
          <groupId>org.gdal</groupId>
53
          <artifactId>gdal</artifactId>
54
          <version>${gdal.version}</version>
55
        </dependency>
56
                
57
    </dependencies>
58
  </dependencyManagement>
59

  
60
  <dependencies>
61
  
62
    <dependency>
63
      <groupId>org.gvsig</groupId>
64
      <artifactId>org.gvsig.raster.gdal.app.common</artifactId>
65
      <type>zip</type>
66
    </dependency>
67
    <dependency>
68
			<groupId>org.gvsig</groupId>
69
			<artifactId>org.gvsig.andami</artifactId>
70
			<scope>compile</scope>
71
		</dependency>
72
		<dependency>
73
			<groupId>org.gvsig</groupId>
74
			<artifactId>org.gvsig.raster.gdal.io</artifactId>
75
			<scope>runtime</scope>
76
		</dependency>
77
		<dependency>
78
			<groupId>org.gvsig</groupId>
79
			<artifactId>org.gvsig.jgdal</artifactId>
80
      <version>${jgdal.version}</version>
81
      <scope>runtime</scope>
82
		</dependency>
83
    <dependency>
84
        <groupId>org.gvsig</groupId>
85
        <artifactId>org.gvsig.jgdal</artifactId>
86
        <version>${jgdal.version}</version>
87
        <classifier>${jgdal.classifier}</classifier>
88
        <type>tar.gz</type>
89
        <scope>runtime</scope>
90
    </dependency>
91
    <dependency>
92
      <groupId>org.gdal</groupId>
93
      <artifactId>gdal</artifactId>
94
      <version>${gdal.version}</version>
95
      <classifier>${gdal.classifier}</classifier>
96
      <scope>runtime</scope>
97
      <type>tar.gz</type>
98
    </dependency>
99

  
100
    <dependency>
101
      <groupId>org.gdal</groupId>
102
      <artifactId>gdal</artifactId>
103
    </dependency>
104

  
105
  </dependencies>
106

  
107
  <build>
108
    <plugins>
109
  
110
      <plugin>
111
        <groupId>org.apache.maven.plugins</groupId>
112
        <artifactId>maven-dependency-plugin</artifactId>
113
        <executions>
114
          <execution>
115
          	<id>unpack</id>
116
	        <phase>process-sources</phase>
117
	        <goals>
118
	          <goal>unpack</goal>
119
	        </goals>
120
	        <configuration>
121
	          <artifactItems>
122
	            <artifactItem>
123
		            <groupId>org.gvsig</groupId>
124
		            <artifactId>org.gvsig.raster.gdal.app.common</artifactId>
125
		            <type>zip</type>
126
					      <overWrite>true</overWrite>
127
					      <outputDirectory>target</outputDirectory>
128
	            </artifactItem>
129
	            <artifactItem>
130
                <groupId>org.gvsig</groupId>
131
                <artifactId>org.gvsig.jgdal</artifactId>
132
                <version>${jgdal.version}</version>
133
                <classifier>${jgdal.classifier}</classifier>
134
		            <type>tar.gz</type>
135
					      <overWrite>true</overWrite>
136
					      <outputDirectory>target/native/jgdal</outputDirectory>
137
	            </artifactItem>
138
	            <artifactItem>
139
                <groupId>org.gdal</groupId>
140
                <artifactId>gdal</artifactId>
141
                <version>${gdal.version}</version>
142
                <classifier>${gdal.classifier}</classifier>
143
		            <type>tar.gz</type>
144
					      <overWrite>true</overWrite>
145
					      <outputDirectory>target/native/gdal</outputDirectory>
146
	            </artifactItem>
147
	          </artifactItems>
148
	        </configuration>
149
          </execution>
150
        </executions>
151
	  </plugin>
152
  
153
  
154
    </plugins>
155
  </build>
156

  
157
  <!-- 
158
  The profiles only configure the automatic deploy of gvSIG plugin in the gvSIG
159
  configured in HOME/.gvsig-devel.properties
160
  -->
161
  <profiles>
162
  
163
    <profile>
164
      <id>gvsig-plugin-install-raster-linux-x86</id>
165
      <activation>
166
         <os>
167
             <family>unix</family>
168
             <name>linux</name>
169
             <arch>x86</arch>
170
         </os>
171
      </activation>
172
	    <properties>
173
	      <gvsig.install.plugin>true</gvsig.install.plugin>
174
	    </properties>
175
    </profile>
176

  
177
    <profile>
178
      <id>gvsig-plugin-install-raster-linux-i386</id>
179
      <activation>
180
         <os>
181
             <family>unix</family>
182
             <name>linux</name>
183
             <arch>i386</arch>
184
         </os>
185
      </activation>
186
      <properties>
187
         <gvsig.install.plugin>true</gvsig.install.plugin>
188
      </properties>
189
    </profile>
190

  
191
  </profiles>
192
  
193
</project>
194

  
0 195

  
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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.gvsig:org.gvsig.raster.gdal.app: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/org.gvsig.raster.gdal-2.2.7/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/org.gvsig.raster.gdal-2.2.7/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.raster.mainplugin" />
4
	<depends plugin-name="org.gvsig.raster.tilecache.app" optional="true" />
5
	<libraries library-dir="lib"/>
6
	<resourceBundle name="text"/>
7
	<extensions>
8
		<extension class-name="org.gvsig.raster.gdal.app.GdalExtension"
9
			description=""
10
			active="true"
11
			priority="1">
12
		</extension>
13
	</extensions>
14
</plugin-config>
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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.7</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/org.gvsig.raster.gdal-2.2.7/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.common/buildNumber.properties
1
#Sun Feb 08 16:31:06 CET 2015
2
buildNumber=62
0 3

  
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/org.gvsig.raster.gdal.app/org.gvsig.raster.gdal.app.lin.x86_64/buildNumber.properties
1
#Sun Feb 08 16:31:08 CET 2015
2
buildNumber=17
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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
    </fileSet>
51
    <fileSet>
52
      <directory>target/native/jgdal</directory>
53
      <outputDirectory>./jgdal</outputDirectory>
54
    </fileSet>
55
    <fileSet>
56
      <directory>src/main/resources-plugin</directory>
57
      <outputDirectory>.</outputDirectory>
58
    </fileSet>
59
  </fileSets>
60

  
61

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

  
76
</assembly>
77

  
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PLUGIN_FOLDER/jgdal/lib"
34
GVSIG_NATIVE_LIBS="$GVSIG_NATIVE_LIBS:$PLUGIN_FOLDER/jgdal/lib"
35

  
36
LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PLUGIN_FOLDER/gdal/lib64"
37
GVSIG_NATIVE_LIBS="$GVSIG_NATIVE_LIBS:$PLUGIN_FOLDER/gdal/lib64"
38

  
39
export GDAL_DATA="${PLUGIN_FOLDER}/gdal/data/gdal"
40

  
41

  
org.gvsig.raster.gdal/tags/org.gvsig.raster.gdal-2.2.7/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/org.gvsig.raster.gdal-2.2.7/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.7</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
    <gdal.classifier>linux-all-gcc4-X86_64-dynamic</gdal.classifier>
21
 		<gdal.version>1.10.1</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
      <classifier>${gdal.classifier}</classifier>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff