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 @ 3256

History | View | Annotate | Download (5.15 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.9-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
    <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
  </dependencies>
85

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

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

    
156
    <profile>
157
      <id>gvsig-plugin-install-raster-linux-amd64</id>
158
      <activation>
159
         <os>
160
             <family>unix</family>
161
             <name>linux</name>
162
             <arch>amd64</arch>
163
         </os>
164
      </activation>
165
      <properties>
166
         <gvsig.install.plugin>true</gvsig.install.plugin>
167
      </properties>
168
    </profile>
169

    
170
  </profiles>
171
  
172
</project>
173