Statistics
| Revision:

root / branches / v2_0_0_prep / build / extension-pom / pom.xml @ 31609

History | View | Annotate | Download (1.36 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5
                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
6
                      
7
        <modelVersion>4.0.0</modelVersion>
8
        <groupId>org.gvsig</groupId>
9
        <artifactId>gvsig-base-extension-pom</artifactId>
10
        <packaging>pom</packaging>
11
        <version>2.0-SNAPSHOT</version>
12
        <name>extension-base-pom</name>
13
        <parent>
14
                <groupId>org.gvsig</groupId>
15
                <artifactId>org.gvsig.maven.base.extension.pom</artifactId>
16
                <version>2.0-SNAPSHOT</version>
17
        </parent>
18
        <profiles>
19
            <profile>
20
                    <id>gvsig-install</id>
21
                    <activation>
22
                            <activeByDefault>true</activeByDefault>
23
                    </activation>
24
                    <properties>
25
                                <!--  gvSIG installation folder -->
26
                            <gvsig.install.dir>${basedir}/../build/product</gvsig.install.dir>
27
                    </properties>
28
            </profile>
29
                <profile>
30
                        <id>eclipse-project</id>
31
                        <build>
32
                                <plugins>
33
                                        <plugin>
34
                                                <artifactId>maven-antrun-plugin</artifactId>
35
                                                <configuration>
36
                                                        <tasks>
37
                                                                <ant antfile="${build-dir}/ant-tasks/eclipse-tasks.xml"
38
                                                                        target="eclipse.eclipse"/>
39
                                                        </tasks>
40
                                                </configuration>
41
                                        </plugin>
42
                                </plugins>
43
                        </build>                                
44
                </profile>                
45
        </profiles>
46
</project>