Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.installer / org.gvsig.installer.maven / pom.xml @ 40995

History | View | Annotate | Download (2.65 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/xsd/maven-4.0.0.xsd">
3
    <modelVersion>4.0.0</modelVersion>
4
    <artifactId>org.gvsig.installer.maven</artifactId>
5
    <packaging>maven-plugin</packaging>
6
    <name>org.gvsig.installer.maven</name>
7
    <parent>
8
        <artifactId>org.gvsig.installer</artifactId>
9
        <groupId>org.gvsig</groupId>
10
        <version>2.0.22</version>
11
    </parent>
12
    <build>
13
        <plugins>
14
            <plugin>
15
                <groupId>org.apache.maven.plugins</groupId>
16
                <artifactId>maven-plugin-plugin</artifactId>
17
                <version>2.7</version>
18
                <executions>
19
                    <execution>
20
                        <id>generated-helpmojo</id>
21
                        <goals>
22
                            <goal>helpmojo</goal>
23
                        </goals>
24
                    </execution>
25
                </executions>
26
                <configuration>
27
                    <goalPrefix>org.gvsig.installer.maven</goalPrefix>
28
                </configuration>
29
            </plugin>
30
        </plugins>
31
    </build>
32
    <dependencies>
33
        <dependency>
34
            <groupId>org.gvsig</groupId>
35
            <artifactId>org.gvsig.installer.lib.api</artifactId>
36
            <scope>compile</scope>
37
        </dependency>
38
        <dependency>
39
            <groupId>org.gvsig</groupId>
40
            <artifactId>org.gvsig.installer.lib.spi</artifactId>
41
            <scope>compile</scope>
42
        </dependency>
43
        <dependency>
44
            <groupId>org.gvsig</groupId>
45
            <artifactId>org.gvsig.installer.lib.impl</artifactId>
46
        </dependency>
47
        <dependency>
48
            <groupId>org.gvsig</groupId>
49
            <artifactId>org.gvsig.installer.prov.plugin</artifactId>
50
        </dependency>
51
        <dependency>
52
            <groupId>org.gvsig</groupId>
53
            <artifactId>org.gvsig.tools.lib</artifactId>
54
            <scope>compile</scope>
55
        </dependency>
56
        <dependency>
57
            <groupId>org.apache.maven</groupId>
58
            <artifactId>maven-plugin-api</artifactId>
59
            <version>2.0</version>
60
            <scope>compile</scope>
61
        </dependency>
62
        <dependency>
63
            <groupId>org.slf4j</groupId>
64
            <artifactId>slf4j-api</artifactId>
65
            <scope>compile</scope>
66
        </dependency>
67
        <dependency>
68
            <groupId>org.slf4j</groupId>
69
            <artifactId>slf4j-log4j12</artifactId>
70
            <scope>runtime</scope>
71
        </dependency>
72
    </dependencies>
73
</project>
74