Statistics
| Revision:

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

History | View | Annotate | Download (1.54 KB)

1 40898 jjdelcerro
<?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.csv</artifactId>
7
  <name>${project.artifactId}</name>
8
  <parent>
9
      <groupId>org.gvsig</groupId>
10
      <artifactId>org.gvsig.fmap.dal.file</artifactId>
11 41546 jjdelcerro
      <version>2.0.46-SNAPSHOT</version>
12 40898 jjdelcerro
  </parent>
13
14
  <dependencies>
15
    <dependency>
16 41006 jjdelcerro
        <groupId>commons-io</groupId>
17
        <artifactId>commons-io</artifactId>
18
      <scope>compile</scope>
19
    </dependency>
20
21
    <dependency>
22 40898 jjdelcerro
      <groupId>org.gvsig</groupId>
23
      <artifactId>org.gvsig.fmap.dal.file.lib</artifactId>
24
      <scope>compile</scope>
25
    </dependency>
26
    <dependency>
27
          <groupId>org.apache.commons</groupId>
28
          <artifactId>commons-lang3</artifactId>
29 41006 jjdelcerro
      <scope>compile</scope>
30 40898 jjdelcerro
    </dependency>
31 41006 jjdelcerro
        <dependency>
32
          <groupId>net.sf.supercsv</groupId>
33
          <artifactId>super-csv</artifactId>
34
      <scope>compile</scope>
35
        </dependency>
36 40898 jjdelcerro
37
  </dependencies>
38
39
  <build>
40
      <plugins>
41
          <plugin>
42
              <groupId>org.apache.maven.plugins</groupId>
43
              <artifactId>maven-compiler-plugin</artifactId>
44
              <configuration>
45
                  <source>1.5</source>
46
                  <target>1.5</target>
47
                  <encoding>ISO-8859-1</encoding>
48
              </configuration>
49
          </plugin>
50
51
      </plugins>
52
  </build>
53
54
55
</project>