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_64 / pom.xml @ 3424

History | View | Annotate | Download (5.33 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_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.10</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>
80
      <scope>runtime</scope>
81
      <type>tar.gz</type>
82
    </dependency>
83
    
84
    <dependency>
85
      <groupId>org.gdal</groupId>
86
      <artifactId>gdal</artifactId>
87
      <version>${gdal.version}</version>
88
      <scope>runtime</scope>
89
    </dependency>
90
    
91
  </dependencies>
92

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

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

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

    
177
  </profiles>
178
  
179
</project>
180