Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2032 / build / projects / gvsig-coverage-base / pom.xml @ 36134

History | View | Annotate | Download (1.57 KB)

1
<project xmlns="http://maven.apache.org/POM/4.0.0"
2
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4
                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
        <modelVersion>4.0.0</modelVersion>
6
        <groupId>org.gvsig</groupId>
7
        <artifactId>gvsig-coverage-base</artifactId>
8
        <packaging>pom</packaging>
9
        <version>2.0-SNAPSHOT</version>
10
        <name>gvsig-coverage-base</name>
11
        <description>
12
                GvSIG coverage base libraries
13
        </description>
14
        <inceptionYear>2009</inceptionYear>
15
        <parent>
16
        <groupId>org.gvsig</groupId>
17
        <artifactId>gvsig-base-pom</artifactId>
18
        <version>2.0-SNAPSHOT</version>
19
    </parent>
20

    
21
        <distributionManagement>
22
                <site>
23
                        <id>gvsig-repository</id>
24
                        <url>${site-repository}/</url>
25
                </site>
26
        </distributionManagement>
27

    
28
        <properties>
29
                <build-dir>${basedir}/../..</build-dir>
30
        </properties>
31
        <profiles>
32
                <profile>
33
                        <id>non-jni-devel</id>
34
                        <activation>
35
                                <activeByDefault>true</activeByDefault>
36
                        </activation>
37
                        <modules>
38
                                <module>../../../org.gvsig.raster</module>
39
                                <module>../../../org.gvsig.raster.cache</module>
40
                                <module>../../../org.gvsig.raster.tilecache</module>
41
                                <module>../../../org.gvsig.raster.tools</module>
42
                                <module>../../../org.gvsig.raster.gdal</module>
43
                        </modules>
44
                </profile>
45
                <profile>
46
                        <id>jni-devel</id>
47
                        <activation>
48
                                <property>
49
                                        <name>jni-devel</name>
50
                                </property>
51
                        </activation>
52
                        <modules>
53
                                <module>../../../libjni-gdal</module>
54
                                <module>../../../libjni-potrace</module>
55
                        </modules>                        
56
                </profile>
57
        </profiles>
58
</project>
59