Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / org.gvsig.annotation / org.gvsig.annotation.swing / org.gvsig.annotation.swing.api / pom.xml @ 34699

History | View | Annotate | Download (1.73 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.swing.api</artifactId>
6
        <packaging>jar</packaging>
7
        <name>org.gvsig.annotation.swing.api</name>
8
        <parent>
9
                <groupId>org.gvsig</groupId>
10
                <artifactId>org.gvsig.annotation.swing</artifactId>
11
                <version>1.0.0-SNAPSHOT</version>
12
        </parent>
13
        <dependencies>
14
                <dependency>
15
                        <groupId>org.gvsig</groupId>
16
                        <artifactId>org.gvsig.annotation.lib.api</artifactId>
17
                        <version>1.0.0-SNAPSHOT</version>
18
            <scope>compile</scope>
19
                </dependency>
20
                <dependency>
21
                        <groupId>org.gvsig</groupId>
22
                        <artifactId>org.gvsig.utils</artifactId>
23
            <scope>compile</scope>
24
                </dependency>
25
        <dependency>
26
            <groupId>org.gvsig</groupId>
27
            <artifactId>org.gvsig.tools.lib</artifactId>
28
            <scope>compile</scope>
29
        </dependency>
30
        <dependency>
31
            <groupId>org.gvsig</groupId>
32
            <artifactId>org.gvsig.fmap.dal</artifactId>
33
            <scope>compile</scope>
34
        </dependency>
35
        </dependencies>
36
        <build>
37
                <plugins>
38
                        <plugin>
39
                                <groupId>org.apache.maven.plugins</groupId>
40
                                <artifactId>maven-jar-plugin</artifactId>
41
                                <configuration>
42
                                </configuration>
43
                                <executions>
44
                                <!--
45
                                Generates a jar file only with the test classes
46
                                -->
47
                                        <execution>
48
                                                <goals>
49
                                                        <goal>test-jar</goal>
50
                                                </goals>
51
                                        </execution>
52
                                </executions>
53
                        </plugin>
54
                </plugins>
55
        </build>
56
    <properties>
57
        <build-dir>${basedir}/../../../build</build-dir>
58
    </properties>
59
</project>