Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / org.gvsig.personaldb / org.gvsig.personaldb.lib / org.gvsig.personaldb.lib.api / pom.xml @ 40025

History | View | Annotate | Download (1.56 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.personaldb.lib.api</artifactId>
6
    <packaging>jar</packaging>
7
    <name>org.gvsig.personaldb.lib.api</name>
8
    <parent>
9
        <groupId>org.gvsig</groupId>
10
        <artifactId>org.gvsig.personaldb.lib</artifactId>
11
        <version>1.0.0-SNAPSHOT</version>
12
    </parent>
13
    <build>
14
        <plugins>
15
            <plugin>
16
                <groupId>org.apache.maven.plugins</groupId>
17
                <artifactId>maven-jar-plugin</artifactId>
18
                <configuration>
19
                </configuration>
20
                <executions>
21
                    <!-- Generates a jar file only with the test classes -->
22
                    <execution>
23
                        <goals>
24
                            <goal>test-jar</goal>
25
                        </goals>
26
                    </execution>
27
                </executions>
28
            </plugin>
29
        </plugins>
30
    </build>
31
    <dependencies>
32
        <dependency>
33
            <groupId>org.gvsig</groupId>
34
            <artifactId>org.gvsig.tools.lib</artifactId>
35
            <scope>compile</scope>
36
        </dependency>
37
        <dependency>
38
            <groupId>org.gvsig</groupId>
39
            <artifactId>org.gvsig.fmap.dal</artifactId>
40
            <scope>compile</scope>
41
        </dependency>
42
    </dependencies>
43
</project>