Statistics
| Revision:

gvsig-raster / org.gvsig.raster.ermapper / branches / org.gvsig.raster.ermapper_dataaccess_refactoring / org.gvsig.raster.ermapper.app / pom.xml @ 2367

History | View | Annotate | Download (6.59 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
2

    
3
<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">
4
        <modelVersion>4.0.0</modelVersion>
5
        <artifactId>org.gvsig.raster.ermapper.app</artifactId>
6
        <packaging>jar</packaging>
7
        <name>Formats: Ecw file format support</name>
8
        <description>Ermapper SDK data provider (ecw format) for gvSIG</description>
9
        <parent>
10
      <groupId>org.gvsig</groupId>
11
      <artifactId>org.gvsig.raster.ermapper</artifactId>
12
      <version>2.2.0-SNAPSHOT</version>
13
    </parent>
14
    <scm>
15
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-raster/org.gvsig.raster.ermapper/trunk/org.gvsig.raster.ermapper/org.gvsig.raster.ermapper.app</connection>
16
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-raster/org.gvsig.raster.ermapper/trunk/org.gvsig.raster.ermapper/org.gvsig.raster.ermapper.app</developerConnection>
17
        <url>https://devel.gvsig.org/redmine/projects/gvsig-raster/repository/show/org.gvsig.raster.ermapper/trunk/org.gvsig.raster.ermapper/org.gvsig.raster.ermapper.app</url>
18
    </scm>
19
   <dependencies>
20
                   <dependency>
21
                <groupId>org.gvsig</groupId>
22
            <artifactId>org.gvsig.andami</artifactId>
23
            <scope>compile</scope>
24
        </dependency>
25
            <dependency>
26
                        <groupId>org.gvsig</groupId>
27
                        <artifactId>org.gvsig.raster.ermapper.io</artifactId>
28
            <scope>runtime</scope>
29
                </dependency>  
30
                <dependency>
31
                        <groupId>org.gvsig</groupId>
32
                        <artifactId>org.gvsig.jecw</artifactId>
33
            <scope>compile</scope>
34
                </dependency>
35
        <dependency>
36
            <groupId>org.gvsig</groupId>
37
            <artifactId>org.gvsig.jecw</artifactId>
38
            <classifier>${native_classifier}</classifier>
39
            <type>tar.gz</type>
40
            <scope>runtime</scope>
41
        </dependency>
42
        </dependencies>
43
        
44
        <profiles>
45
           <profile>
46
                        <id>gvsig-install</id>
47
                        <activation>
48
                                <activeByDefault>true</activeByDefault>
49
                        </activation>
50
                        <properties>
51
                                <!--Default gvSIG installation folder relative to the current workspace-->
52
                                <gvsig.install.dir>${basedir}/../../build/product</gvsig.install.dir>
53
                        </properties>
54
                </profile>  
55
                
56
           <!-- *************** -->
57
       <!--  LINUX PROFILE  -->
58
       <!-- *************** -->
59
            
60
        <profile>
61
            <id>linux-profile</id>
62
            <activation>
63
                                <property>
64
                                        <name>native-platform</name>
65
                                        <value>linux</value>
66
                                </property>
67
           </activation>
68
           <properties>
69
                           <gvsig.package.info.categories>Raster</gvsig.package.info.categories>
70
                           <gvsig.package.info.operatingSystem>lin</gvsig.package.info.operatingSystem>
71
                        <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
72
                <gvsig.package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</gvsig.package.info.dependencies>
73
                        </properties>
74
                        <build>
75
                          <plugins>
76
                            <plugin>
77
                                <artifactId>maven-assembly-plugin</artifactId>
78
                                <configuration>
79
                                    <ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
80
                                    <appendAssemblyId>false</appendAssemblyId>
81
                                </configuration>
82
                                <executions>
83
                                          <execution>
84
                                            <id>gvsig-plugin-package</id>
85
                                            <phase>package</phase>
86
                                            <goals>
87
                                                <goal>single</goal>
88
                                            </goals>
89
                                            <configuration>
90
                                                      <finalName>gvSIG-desktop-${gvsig.package.info.gvSIGVersion}-${project.artifactId}-${gvsig.package.info.version}-${buildNumber}-${gvsig.package.info.state}-${gvsig.package.info.operatingSystem}-${gvsig.package.info.architecture}-${gvsig.package.info.javaVM}.gvspkg</finalName>
91
                                                      <descriptors>
92
                                                        <descriptor>src/main/assembly/gvsig-plugin-package-lin.xml</descriptor>
93
                                                      </descriptors>
94
                                            </configuration>
95
                                          </execution>
96
                                </executions>
97
                            </plugin>
98
                    </plugins>
99
            </build>
100
        </profile>
101
        
102
       <!-- *************** -->
103
       <!-- WINDOWS PROFILE -->
104
       <!-- *************** -->
105
       
106
        <profile>
107
            <id>windows-profile</id>
108
            <activation>
109
                <property>
110
                                        <name>native-platform</name>
111
                                        <value>win</value>
112
                                </property>
113
            </activation>
114
            <properties>
115
                    <gvsig.package.info.categories>Raster, Formats</gvsig.package.info.categories>
116
                           <gvsig.package.info.operatingSystem>win</gvsig.package.info.operatingSystem>
117
                        <gvsig.package.info.architecture>x86</gvsig.package.info.architecture>
118
                <gvsig.package.info.dependencies>required: org.gvsig.raster.tilecache.app -ge 2</gvsig.package.info.dependencies>
119
                        </properties>
120
                        <build>
121
                          <plugins>
122
                            <plugin>
123
                                <artifactId>maven-assembly-plugin</artifactId>
124
                                <configuration>
125
                                    <ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
126
                                    <appendAssemblyId>false</appendAssemblyId>
127
                                </configuration>
128
                                <executions>
129
                                          <execution>
130
                                            <id>gvsig-plugin-package</id>
131
                                            <phase>package</phase>
132
                                            <goals>
133
                                                <goal>single</goal>
134
                                            </goals>
135
                                            <configuration>
136
                                                      <finalName>gvSIG-desktop-${gvsig.package.info.gvSIGVersion}-${project.artifactId}-${gvsig.package.info.version}-${buildNumber}-${gvsig.package.info.state}-${gvsig.package.info.operatingSystem}-${gvsig.package.info.architecture}-${gvsig.package.info.javaVM}.gvspkg</finalName>
137
                                                      <descriptors>
138
                                                        <descriptor>src/main/assembly/gvsig-plugin-package-win.xml</descriptor>
139
                                                      </descriptors>
140
                                            </configuration>
141
                                          </execution>
142
                                </executions>
143
                            </plugin>
144
                    </plugins>
145
            </build>
146
        </profile>
147
    </profiles>
148
    <properties>
149
            <gvsig.package.info.state>prototype</gvsig.package.info.state>
150
            <gvsig.package.info.poolURL>http://devel.gvsig.org/download/projects/Raster/pool</gvsig.package.info.poolURL>
151
            <gvsig.package.info.official>true</gvsig.package.info.official>
152
    </properties>
153
</project>