Statistics
| Revision:

gvsig-projects-pool / org.gvsig.busquedacatastral / trunk / org.gvsig.busquedacatastral / org.gvsig.busquedacatastral.lib / org.gvsig.busquedacatastral.lib.api / pom.xml @ 140

History | View | Annotate | Download (1.25 KB)

1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
 <modelVersion>4.0.0</modelVersion>
4
 <parent>
5
  <groupId>org.gvsig</groupId>
6
  <artifactId>org.gvsig.busquedacatastral.lib</artifactId>
7
  <version>1.0.0-SNAPSHOT</version>
8
 </parent>
9

    
10

    
11
 <artifactId>org.gvsig.busquedacatastral.lib.api</artifactId>
12
 <name>${artifactId}</name>
13
 <description>API Library for busqueda catastral in gvSIG 2.1</description>
14

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

    
34
 <dependencies>
35
  <dependency>
36
   <groupId>org.gvsig</groupId>
37
   <artifactId>org.gvsig.tools.lib</artifactId>
38
   <scope>compile</scope>
39
  </dependency>
40
    <dependency>
41
   <groupId>org.gvsig</groupId>
42
   <artifactId>org.gvsig.fmap.geometry.api</artifactId>
43
   <scope>compile</scope>
44
  </dependency>
45

    
46
 </dependencies>
47
</project>