Statistics
| Revision:

root / trunk / org.gvsig.postgresql / org.gvsig.postgresql.app / org.gvsig.postgresql.app.mainplugin / pom.xml @ 5

History | View | Annotate | Download (1.84 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.postgresql.app.mainplugin</artifactId>
7
  <packaging>jar</packaging>
8
  <name>Formats: PostgreSQL support</name>
9
  <description>PostgreSQL file format support</description>
10
  <parent>
11
      <groupId>org.gvsig</groupId>
12
      <artifactId>org.gvsig.postgresql.app</artifactId>
13
      <version>2.0.10-SNAPSHOT</version>
14
  </parent>
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.andami</artifactId>
25
        <scope>compile</scope>
26
    </dependency>
27
    <dependency>
28
        <groupId>org.gvsig</groupId>
29
        <artifactId>org.gvsig.postgresql.provider</artifactId>
30
        <scope>compile</scope>
31
    </dependency>
32

    
33
  </dependencies>
34
  
35
<build>
36
  <plugins>
37

    
38
    <plugin>
39
    <artifactId>maven-assembly-plugin</artifactId>
40
        <executions>
41
          <execution>
42
            <id>gvsig-plugin-package</id>
43
            <phase>package</phase>
44
            <goals>
45
                <goal>single</goal>
46
            </goals>
47
          </execution>
48
        </executions>
49
    </plugin>
50

    
51
    <plugin>
52
      <artifactId>maven-antrun-plugin</artifactId>
53
      <executions>
54
        <execution>
55
          <id>gvsig-plugin-install</id>
56
          <phase>install</phase>
57
          <goals>
58
            <goal>run</goal>
59
          </goals>
60
        </execution>
61
      </executions>
62
    </plugin>
63

    
64
  </plugins>
65
</build>
66

    
67
</project>