Statistics
| Revision:

gvsig-sqlite / trunk / org.gvsig.spatialite / org.gvsig.spatialite.app / org.gvsig.spatialite.app.mainplugin / org.gvsig.spatialite.app.mainplugin.common / pom.xml @ 430

History | View | Annotate | Download (2.4 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/maven-v4_0_0.xsd">
4
    <modelVersion>4.0.0</modelVersion>
5
    <artifactId>org.gvsig.spatialite.app.mainplugin.common</artifactId>
6
    <packaging>jar</packaging>
7
    <name>${project.artifactId}</name>
8
    <description>SpatiaLite support</description>
9
    <parent>
10
        <groupId>org.gvsig</groupId>
11
        <artifactId>org.gvsig.spatialite.app.mainplugin</artifactId>
12
        <version>1.0.74</version>
13
    </parent>
14

    
15
    <dependencies>
16
        <dependency>
17
            <groupId>org.gvsig</groupId>
18
            <artifactId>org.gvsig.andami</artifactId>
19
            <scope>compile</scope>
20
        </dependency>
21
        <dependency>
22
            <groupId>org.gvsig</groupId>
23
            <artifactId>org.gvsig.tools.lib</artifactId>
24
            <scope>compile</scope>
25
        </dependency>
26
        <dependency>
27
            <groupId>org.gvsig</groupId>
28
            <artifactId>org.gvsig.fmap.mapcontext.api</artifactId>
29
            <scope>compile</scope>
30
        </dependency>
31
        <dependency>
32
            <groupId>org.gvsig</groupId>
33
            <artifactId>org.gvsig.spatialite.provider</artifactId>
34
            <scope>compile</scope>
35
        </dependency>
36
        <dependency>
37
          <groupId>org.xerial</groupId>
38
          <artifactId>sqlite-jdbc</artifactId>
39
          <scope>runtime</scope>
40
        </dependency>
41
        <dependency>
42
          <groupId>commons-dbcp</groupId>
43
          <artifactId>commons-dbcp</artifactId>
44
          <scope>runtime</scope>
45
        </dependency>
46
        <dependency>
47
          <groupId>commons-collections</groupId>
48
          <artifactId>commons-collections</artifactId>
49
          <scope>runtime</scope>
50
        </dependency>
51
        <dependency>
52
          <groupId>commons-pool</groupId>
53
          <artifactId>commons-pool</artifactId>
54
          <scope>runtime</scope>
55
        </dependency>
56
    </dependencies>
57
        
58
    <properties>
59
        <!-- Control the deploy of the plugin in gvsig.product.folder.path/gvSIG/extensiones -->
60
        <gvsig.install.plugin>false</gvsig.install.plugin>
61
        <!--  Control the deploy of the plugin package in gvsig.product.folder.path/install -->
62
        <gvsig.install.plugin.package>false</gvsig.install.plugin.package>
63
    </properties>                
64
</project>
65