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

History | View | Annotate | Download (5.38 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.11-SNAPSHOT</version>
11
        </parent>
12

    
13
  <properties>
14
    <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
15
    <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
16

    
17
    <jgdal.classifier>linux-all-gcc4-i386-dynamic</jgdal.classifier>
18
    <jgdal.version>2.0.4</jgdal.version>
19
  </properties>
20

    
21
  <dependencyManagement>
22
      <dependencies>
23
        <dependency>
24
            <groupId>org.gvsig</groupId>
25
            <artifactId>org.gvsig.jgdal</artifactId>
26
            <version>${jgdal.version}</version>
27
            <classifier>${jgdal.classifier}</classifier>
28
            <type>tar.gz</type>
29
            <scope>runtime</scope>
30
        </dependency>
31
<!--         <dependency> -->
32
<!--           <groupId>org.gdal</groupId> -->
33
<!--           <artifactId>gdal</artifactId> -->
34
<!--           <version>${gdal.version}</version> -->
35
<!--           <classifier>${gdal.classifier}</classifier> -->
36
<!--           <scope>runtime</scope> -->
37
<!--           <type>tar.gz</type> -->
38
<!--         </dependency> -->
39

    
40
       
41

    
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
    <dependency>
86
      <groupId>org.gdal</groupId>
87
      <artifactId>gdal</artifactId>
88
    </dependency>
89

    
90
  </dependencies>
91

    
92
  <build>
93
    <plugins>
94

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

    
138

    
139
    </plugins>
140
  </build>
141

    
142
  <!--
143
  The profiles only configure the automatic deploy of gvSIG plugin in the gvSIG
144
  configured in HOME/.gvsig-devel.properties
145
  -->
146
  <profiles>
147

    
148
    <profile>
149
      <id>gvsig-plugin-install-raster-linux-x86</id>
150
      <activation>
151
         <os>
152
             <family>unix</family>
153
             <name>linux</name>
154
             <arch>x86</arch>
155
         </os>
156
      </activation>
157
            <properties>
158
              <gvsig.install.plugin>true</gvsig.install.plugin>
159
            </properties>
160
    </profile>
161

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

    
176
  </profiles>
177

    
178
</project>
179