Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / org.gvsig.annotation / org.gvsig.annotation.lib / org.gvsig.annotation.lib.api / pom.xml @ 33614

History | View | Annotate | Download (1.35 KB)

1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
        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.annotation.lib.api</artifactId>
6
        <packaging>jar</packaging>
7
        <name>org.gvsig.annotation.lib.api</name>
8
        <parent>
9
                <groupId>org.gvsig</groupId>
10
                <artifactId>org.gvsig.annotation.lib</artifactId>
11
                <version>1.0.0-SNAPSHOT</version>
12
        </parent>
13
        <dependencies>
14
                <dependency>
15
                        <groupId>org.gvsig</groupId>
16
                        <artifactId>org.gvsig.fmap.dal</artifactId>                        
17
                </dependency>        
18
                <dependency>
19
                        <groupId>org.gvsig</groupId>
20
                        <artifactId>org.gvsig.tools.lib</artifactId>                        
21
                </dependency>        
22
                <dependency>
23
                        <groupId>org.gvsig</groupId>
24
                        <artifactId>org.gvsig.tools.lib</artifactId>
25
                        <type>test-jar</type>
26
                        <scope>test</scope>                
27
                </dependency>        
28
        </dependencies>
29
        <build>
30
                <plugins>
31
                        <plugin>
32
                                <groupId>org.apache.maven.plugins</groupId>
33
                                <artifactId>maven-jar-plugin</artifactId>
34
                                <configuration>
35
                                </configuration>
36
                                <executions>
37
                                <!--
38
                                Generates a jar file only with the test classes
39
                                -->
40
                                        <execution>
41
                                                <goals>
42
                                                        <goal>test-jar</goal>
43
                                                </goals>
44
                                        </execution>
45
                                </executions>
46
                        </plugin>
47
                </plugins>
48
        </build>
49
</project>