Statistics
| Revision:

gvsig-raster / org.gvsig.raster.gdal / tags / pre-remove-gdal / org.gvsig.raster.gdal / org.gvsig.raster.gdal.app / org.gvsig.raster.gdal.app.lin.x86_64 / pom.xml @ 3490

History | View | Annotate | Download (5.4 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.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