Statistics
| Revision:

root / org.gvsig.educa.thematicmap / tags / 1.0.0-beta1 / org.gvsig.educa.thematicmap.lib / org.gvsig.educa.thematicmap.lib.api / pom.xml @ 151

History | View | Annotate | Download (1.78 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.educa.thematicmap.lib.api</artifactId>
6
        <packaging>jar</packaging>
7
        <name>org.gvsig.educa.thematicmap.lib.api</name>
8
        <parent>
9
                <groupId>org.gvsig</groupId>
10
                <artifactId>org.gvsig.educa.thematicmap.lib</artifactId>
11
                <version>1.0.0-beta1</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
                                <!--
22
                                Generates a jar file only with the test classes
23
                                -->
24
                                        <execution>
25
                                                <goals>
26
                                                        <goal>test-jar</goal>
27
                                                </goals>
28
                                        </execution>
29
                                </executions>
30
                        </plugin>
31
                </plugins>
32
        </build>
33
        <dependencies>
34
                <dependency>
35
                        <groupId>org.gvsig</groupId>
36
                        <artifactId>org.gvsig.fmap.dal</artifactId>
37
                        <scope>compile</scope>
38
                </dependency>
39
                <dependency>
40
                        <groupId>org.gvsig</groupId>
41
                        <artifactId>org.gvsig.fmap.mapcontext</artifactId>
42
                        <scope>compile</scope>
43
                </dependency>
44
    <dependency>
45
      <groupId>org.gvsig</groupId>
46
      <artifactId>org.gvsig.fmap.dal.file</artifactId>
47
      <scope>test</scope>
48
    </dependency>
49
    <dependency>
50
      <groupId>org.gvsig</groupId>
51
      <artifactId>org.gvsig.fmap.dal.file</artifactId>
52
      <classifier>store.dbf</classifier>
53
      <scope>test</scope>
54
    </dependency>
55
    <dependency>
56
      <groupId>org.gvsig</groupId>
57
      <artifactId>org.gvsig.fmap.dal.file</artifactId>
58
      <classifier>store.shp</classifier>
59
      <scope>test</scope>
60
    </dependency>
61
        </dependencies>
62
</project>