Statistics
| Revision:

gvsig-projects-pool / org.gvsig.vcsgis / trunk / org.gvsig.vcsgis / org.gvsig.vcsgis.lib / org.gvsig.vcsgis.lib.api / pom.xml @ 9508

History | View | Annotate | Download (1.56 KB)

1
<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/xsd/maven-4.0.0.xsd">
2
  <modelVersion>4.0.0</modelVersion>
3
  <artifactId>org.gvsig.vcsgis.lib.api</artifactId>
4
  <name>${project.artifactId}</name>
5
  <parent>
6
    <groupId>org.gvsig</groupId>
7
    <artifactId>org.gvsig.vcsgis.lib</artifactId>
8
    <version>1.0.124</version>
9
  </parent>
10

    
11
  <build>
12
    <plugins>
13
      <plugin>
14
        <groupId>org.apache.maven.plugins</groupId>
15
        <artifactId>maven-jar-plugin</artifactId>
16
        <configuration>
17
        </configuration>
18
        <executions>
19
          <!-- Generates a jar file only with the test classes -->
20
          <execution>
21
            <goals>
22
              <goal>test-jar</goal>
23
            </goals>
24
          </execution>
25
        </executions>
26
      </plugin>
27
    </plugins>
28
  </build>
29

    
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>javax.servlet</groupId>
38
      <artifactId>javax.servlet-api</artifactId>
39
      <scope>compile</scope>
40
    </dependency>
41
    <dependency>
42
      <groupId>org.gvsig</groupId>
43
      <artifactId>org.gvsig.fmap.geometry.api</artifactId>
44
      <scope>compile</scope>
45
    </dependency>
46
    <dependency>
47
      <groupId>org.gvsig</groupId>
48
      <artifactId>org.gvsig.fmap.dal.api</artifactId>
49
      <scope>compile</scope>
50
    </dependency>
51
  </dependencies>
52
</project>