Statistics
| Revision:

gvsig-raster / org.gvsig.raster.gdal / trunk / org.gvsig.raster.gdal / org.gvsig.raster.gdal.app / org.gvsig.raster.gdal.app.lin.x86 / pom.xml @ 3254

History | View | Annotate | Download (5.71 KB)

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.8</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