Statistics
| Revision:

gvsig-tools / org.gvsig.maven.base / trunk / org.gvsig.maven.base / org.gvsig.maven.base.build / pom.xml @ 776

History | View | Annotate | Download (3.52 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.maven.base.build</artifactId>
5
        <name>org.gvsig.maven.base.build</name>
6
        <url>http://maven.apache.org</url>
7

    
8

    
9
        <parent>
10
                <artifactId>org.gvsig.maven.base</artifactId>
11
                <groupId>org.gvsig</groupId>
12
                <version>1.0.9-SNAPSHOT</version>
13
        </parent>
14
        <dependencies>
15
                <dependency>
16
                        <groupId>ant-contrib</groupId>
17
                        <artifactId>ant-contrib</artifactId>
18
                        <version>1.0b3</version>
19
                </dependency>
20
                <dependency>
21
                        <groupId>org.apache.maven</groupId>
22
                        <artifactId>maven-ant-tasks</artifactId>
23
                        <version>2.1.0</version>
24
                </dependency>
25
                <dependency>
26
                        <groupId>com.sardak</groupId>
27
                        <artifactId>antform</artifactId>
28
                        <version>2.0</version>
29
                </dependency>
30
                <dependency>
31
                        <groupId>org.apache.ant</groupId>
32
                        <artifactId>ant</artifactId>
33
                        <version>1.7.0</version>
34
                </dependency>
35
                <dependency>
36
                        <groupId>org.apache.ant</groupId>
37
                        <artifactId>ant-launcher</artifactId>
38
                        <version>1.7.0</version>
39
                </dependency>
40
                <dependency>
41
                        <groupId>org.apache.ant</groupId>
42
                        <artifactId>ant-nodeps</artifactId>
43
                        <version>1.7.0</version>
44
                </dependency>
45
                <dependency>
46
                        <groupId>com.oopsconsultancy</groupId>
47
                        <artifactId>com.oopsconsultancy.xmltask</artifactId>
48
                        <version>1.16.1</version>
49
                </dependency>
50
                <dependency>
51
                        <groupId>org.tigris.antelope</groupId>
52
                        <artifactId>antelopetasks</artifactId>
53
                        <version>3.2.10</version>
54
                </dependency>
55
        </dependencies>
56
        <developers>
57
                <developer>
58
                        <id>cordinyana</id>
59
                        <name>Cèsar Ordiñana</name>
60
                        <email>cordin@gvsig.com</email>
61
                        <roles>
62
                                <role>Architect</role>
63
                                <role>Developer</role>
64
                        </roles>
65
                </developer>
66
        </developers>
67

    
68
        <build>
69
                <plugins>
70
                        <plugin>
71
                                <groupId>org.apache.maven.plugins</groupId>
72
                                <artifactId>maven-dependency-plugin</artifactId>
73
                                <executions>
74
                                        <execution>
75
                                                <id>copy-dependencies</id>
76
                                                <phase>validate</phase>
77
                                                <goals>
78
                                                        <goal>copy-dependencies</goal>
79
                                                </goals>
80
                                                <configuration>
81
                                                        <outputDirectory>${project.build.directory}/dependencies/org.gvsig.maven.base.build</outputDirectory>
82
                                                        <overWriteReleases>false</overWriteReleases>
83
                                                        <overWriteSnapshots>true</overWriteSnapshots>
84
                                                        <overWriteIfNewer>true</overWriteIfNewer>
85
                                                </configuration>
86
                                        </execution>
87
                                </executions>
88
                        </plugin>
89
                </plugins>
90
                <resources>
91
                        <resource>
92
                                <directory>${basedir}/src/main/resources</directory>
93
                        </resource>
94
                        <resource>
95
                                <directory>${project.build.directory}/dependencies/</directory>
96
                        </resource>
97
                </resources>
98
                <pluginManagement>
99
                        <plugins>
100
                                <plugin>
101
                                        <groupId>org.eclipse.m2e</groupId>
102
                                        <artifactId>lifecycle-mapping</artifactId>
103
                                        <version>1.0.0</version>
104
                                        <configuration>
105
                                                <lifecycleMappingMetadata>
106
                                                        <pluginExecutions>
107
                                                                <pluginExecution>
108
                                                                        <pluginExecutionFilter>
109
                                                                                <groupId>org.apache.maven.plugins</groupId>
110
                                                                                <artifactId>maven-dependency-plugin</artifactId>
111
                                                                                <versionRange>[2.0,)</versionRange>
112
                                                                                <goals>
113
                                                                                        <goal>copy-dependencies</goal>
114
                                                                                </goals>
115
                                                                        </pluginExecutionFilter>
116
                                                                        <action>
117
                                                                                <ignore />
118
                                                                        </action>
119
                                                                </pluginExecution>
120
                                                        </pluginExecutions>
121
                                                </lifecycleMappingMetadata>
122
                                        </configuration>
123
                                </plugin>
124
                        </plugins>
125
                </pluginManagement>
126
        </build>
127
</project>