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 @ 40027

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