Statistics
| Revision:

svn-gvsig-desktop / tags / gvsig_redes-0_1_0-1232 / libraries / geotools-2.1.1-epsg-hsql / project.xml @ 33999

History | View | Annotate | Download (2.57 KB)

1 28854 cmartinez
<?xml version="1.0" encoding="utf-8"?>
2
<project>
3
  <pomVersion>3</pomVersion>
4
  <extend>${basedir}/../../project.xml</extend>
5
  <name>geotools-epsg-hsql</name>
6
  <id>epsg-hsql</id>
7
  <currentVersion>2.1.1</currentVersion>
8
  <package>org.geotools.referencing</package>
9
  <shortDescription>EPSG Authoriy Service</shortDescription>
10
  <gumpRepositoryId>geotools</gumpRepositoryId>
11
  <description>
12
    Connection to an embedded EPSG database in HSQL format.
13
    This is database is built from the SQL scripts delivered by EPSG.
14
    This plugin is very short and the code contains nothing else than
15
    connection parameters through the use of a jar embedding the HSQL
16
    files.
17
  </description>
18
  <developers>
19
    <developer>
20
      <name>Didier Richard</name>
21
      <email>dgr@libertysurf.fr</email>
22
      <organization>Institut Géographique National - France</organization>
23
      <roles>
24
        <role>Contributor</role>
25
      </roles>
26
    </developer>
27
    <developer>
28
      <name>Martin Desruisseaux</name>
29
      <id>desruisseaux</id>
30
      <email>desruisseaux@users.sourceforge.net</email>
31
      <organization>Institut de Recherche pour le Développement</organization>
32
      <roles>
33
        <role>Java Developer</role>
34
        <role>Module Maintainer</role>
35
      </roles>
36
    </developer>
37
  </developers>
38
  <dependencies>
39
    <dependency>
40
      <artifactId>main</artifactId>
41
      <groupId>gt2</groupId>
42
      <version>2.1.1</version>
43
    </dependency>
44
    <dependency>
45
     <groupId>units</groupId>
46
     <artifactId>units</artifactId>
47
     <version>0.01</version>
48
     <url>http://jsr-108.sourceforge.net</url>
49
    </dependency>
50
    <dependency>
51
     <groupId>vecmath</groupId>
52
     <artifactId>vecmath</artifactId>
53
     <version>1.3</version>
54
     <url>http://java.sun.com/products/java-media/3D/</url>
55
    </dependency>
56
    <dependency>
57
     <artifactId>hsqldb</artifactId>
58
     <groupId>hsql</groupId>
59
     <version>1.8.0.1</version>
60
    </dependency>
61
    <dependency>
62
     <groupId>JTS</groupId>
63
     <artifactId>JTS</artifactId>
64
     <version>1.6</version>
65
     <type>jar</type>
66
    </dependency>
67
  </dependencies>
68
69
  <build>
70
    <resources>
71
      <resource>
72
        <directory>${basedir}/src</directory>
73
        <includes>
74
          <include>META-INF/services/**</include>
75
          <include>**/*.sql</include>
76
        </includes>
77
      </resource>
78
    </resources>
79
80
    <unitTest>
81
      <includes>
82
        <include>**/*Test.java</include>
83
      </includes>
84
      <resources>
85
        <resource>
86
          <directory>${basedir}/test</directory>
87
        </resource>
88
      </resources>
89
    </unitTest>
90
  </build>
91
</project>