Statistics
| Revision:

gvsig-raster / org.gvsig.raster.ermapper / trunk / org.gvsig.raster.ermapper / org.gvsig.raster.ermapper.app / org.gvsig.raster.ermapper.app.lin.x86 / pom.xml @ 9333

History | View | Annotate | Download (5.26 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.ermapper.app.lin.x86</artifactId>
5
  <packaging>jar</packaging>
6
   
7
         <parent>
8
                <groupId>org.gvsig</groupId>
9
                <artifactId>org.gvsig.raster.ermapper.app</artifactId>
10
    <version>2.2.76</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
    <jecw.classifier>linux-all-gcc4-i386-dynamic</jecw.classifier>
18
    <jecw.version>2.0.0</jecw.version>
19
    
20
    <ecw.classifier>linux-all-gcc4-i386-dynamic</ecw.classifier>
21
                 <ecw.version>3.3.20070509</ecw.version>    
22
  </properties>
23

    
24
  <dependencyManagement>
25
      <dependencies>
26
       <dependency>
27
            <groupId>org.gvsig</groupId>
28
            <artifactId>org.gvsig.jecw</artifactId>
29
            <classifier>${jecw.classifier}</classifier>
30
            <version>${jecw.version}</version>
31
            <type>tar.gz</type>
32
            <scope>runtime</scope>
33
        </dependency>
34
        
35
         <dependency>
36
                  <groupId>com.ermapper</groupId>
37
                  <artifactId>ecw</artifactId>
38
            <classifier>${ecw.classifier}</classifier>
39
            <version>${ecw.version}</version>
40
            <type>tar.gz</type>
41
            <scope>runtime</scope>
42
            </dependency>      
43

    
44
    </dependencies>
45
  </dependencyManagement>
46

    
47
  <dependencies>
48
  
49
    <dependency>
50
      <groupId>org.gvsig</groupId>
51
      <artifactId>org.gvsig.raster.ermapper.app.common</artifactId>
52
      <type>zip</type>
53
    </dependency>
54
    <dependency>
55
                        <groupId>org.gvsig</groupId>
56
                        <artifactId>org.gvsig.andami</artifactId>
57
                        <scope>compile</scope>
58
                </dependency>
59
                <dependency>
60
                        <groupId>org.gvsig</groupId>
61
                        <artifactId>org.gvsig.raster.ermapper.io</artifactId>
62
                        <scope>runtime</scope>
63
                </dependency>
64

    
65

    
66

    
67
                <dependency>
68
                          <groupId>org.gvsig</groupId>
69
                          <artifactId>org.gvsig.jecw</artifactId>
70
        <version>${jecw.version}</version>
71
        <scope>runtime</scope>
72
                </dependency>
73
    <dependency>
74
        <groupId>org.gvsig</groupId>
75
                          <artifactId>org.gvsig.jecw</artifactId>
76
        <version>${jecw.version}</version>
77
        <classifier>${jecw.classifier}</classifier>
78
        <type>tar.gz</type>
79
        <scope>runtime</scope>
80
    </dependency>
81
    <dependency>
82
        <groupId>com.ermapper</groupId>
83
        <artifactId>ecw</artifactId>
84
        <version>${ecw.version}</version>
85
        <classifier>${ecw.classifier}</classifier>
86
        <type>tar.gz</type>
87
        <scope>runtime</scope>
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.ermapper.app.common</artifactId>
110
                            <type>zip</type>
111
                                              <overWrite>true</overWrite>
112
                                              <outputDirectory>target</outputDirectory>
113
                    </artifactItem>
114
                    
115
                    <artifactItem>
116
                <groupId>org.gvsig</groupId>
117
                <artifactId>org.gvsig.jecw</artifactId>
118
                <version>${jecw.version}</version>
119
                <classifier>${jecw.classifier}</classifier>
120
                            <type>tar.gz</type>
121
                                              <overWrite>true</overWrite>
122
                                              <outputDirectory>target/native/jecw</outputDirectory>
123
                    </artifactItem>
124
                    
125
                    <artifactItem>
126
                      <groupId>com.ermapper</groupId>
127
                      <artifactId>ecw</artifactId>
128
                      <version>${ecw.version}</version>
129
                <classifier>${ecw.classifier}</classifier>
130
                            <type>tar.gz</type>
131
                                              <overWrite>true</overWrite>
132
                                              <outputDirectory>target/native/ecw</outputDirectory>
133
                    </artifactItem>
134
                    
135
                  </artifactItems>
136
                </configuration>
137
          </execution>
138
        </executions>
139
          </plugin>
140
  
141
  
142
    </plugins>
143
  </build>
144

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

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

    
179
  </profiles>
180
  
181
</project>
182