Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.file / pom.xml @ 47743

History | View | Annotate | Download (1.79 KB)

1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<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">
4

    
5
  <modelVersion>4.0.0</modelVersion>
6
  <artifactId>org.gvsig.fmap.dal.file</artifactId>
7
  <packaging>pom</packaging>
8
  <name>${project.artifactId}</name>
9
  <parent>
10
      <groupId>org.gvsig</groupId>
11
      <artifactId>org.gvsig.fmap.dal</artifactId>
12
      <version>2.0.445</version>
13
  </parent>  
14
  <description>This library has the implementation of the provider of te Data Access Library for accesing to file resources, like SHP, DBF or CSV.</description>
15
  
16
  <dependencies>
17
    <dependency>
18
      <groupId>org.gvsig</groupId>
19
      <artifactId>org.gvsig.tools.lib</artifactId>
20
      <scope>compile</scope>
21
    </dependency>
22
    <dependency>
23
      <groupId>org.gvsig</groupId>
24
      <artifactId>org.gvsig.fmap.dal.api</artifactId>
25
      <scope>compile</scope>
26
    </dependency>
27
    <dependency>
28
      <groupId>org.gvsig</groupId>
29
      <artifactId>org.gvsig.fmap.dal.spi</artifactId>
30
      <scope>compile</scope>
31
    </dependency>
32

    
33
  </dependencies>
34

    
35
  <modules>
36
    <module>org.gvsig.fmap.dal.file.lib</module>
37
    <module>org.gvsig.fmap.dal.file.dbf</module>
38
    <module>org.gvsig.fmap.dal.file.shp</module>
39
    <module>org.gvsig.fmap.dal.file.csv</module>
40
    <module>org.gvsig.fmap.dal.file.gml</module>
41
    <module>org.gvsig.fmap.dal.file.json</module>
42

    
43
    <module>org.gvsig.fmap.dal.file.imageio</module>
44
    <module>org.gvsig.fmap.dal.file.jpg</module>
45
    <module>org.gvsig.fmap.dal.file.png</module>
46
    <module>org.gvsig.fmap.dal.file.tiff</module>
47
    <module>org.gvsig.fmap.dal.file.jp2</module>
48
    <module>org.gvsig.fmap.dal.file.bsq</module>
49
  </modules>
50
</project>
51