Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.geometrymeasurement.app / org.gvsig.geometrymeasurement.app.mainplugin / pom.xml @ 44117

History | View | Annotate | Download (3.38 KB)

1 40510 jjdelcerro
<?xml version="1.0" encoding="ISO-8859-1"?>
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.geometrymeasurement.app.mainplugin</artifactId>
6
  <packaging>jar</packaging>
7
  <name>Tools: Geometry measurement</name>
8
  <description>
9
This plugin add three tools to gvSIG:
10
- Add a new attribute to the data source with the geometry area
11
- Add a new attribute to the data source with the geometry perimeter
12
- Add a new attribute to a Point type data source two new columns, one with the X Point value, and another with the Y Point value.
13
  </description>
14
  <parent>
15
    <groupId>org.gvsig</groupId>
16
    <artifactId>org.gvsig.geometrymeasurement.app</artifactId>
17 44117 jjdelcerro
    <version>2.0.239</version>
18 40510 jjdelcerro
  </parent>
19
20
  <dependencies>
21
    <dependency>
22
      <groupId>org.gvsig</groupId>
23
      <artifactId>org.gvsig.andami</artifactId>
24 41597 jjdelcerro
      <scope>compile</scope>
25 40510 jjdelcerro
    </dependency>
26
    <dependency>
27
      <groupId>org.gvsig</groupId>
28
      <artifactId>org.gvsig.app.mainplugin</artifactId>
29 41597 jjdelcerro
      <scope>compile</scope>
30 40510 jjdelcerro
    </dependency>
31
    <dependency>
32
      <groupId>org.gvsig</groupId>
33
      <artifactId>org.gvsig.app.document.table.app.mainplugin</artifactId>
34 41597 jjdelcerro
      <scope>compile</scope>
35 40510 jjdelcerro
    </dependency>
36
    <dependency>
37
      <groupId>org.gvsig</groupId>
38
      <artifactId>org.gvsig.i18n</artifactId>
39 41597 jjdelcerro
      <scope>compile</scope>
40 40510 jjdelcerro
    </dependency>
41
    <dependency>
42
      <groupId>org.gvsig</groupId>
43
      <artifactId>org.gvsig.tools.lib</artifactId>
44 41597 jjdelcerro
      <scope>compile</scope>
45 40510 jjdelcerro
    </dependency>
46
    <dependency>
47
        <groupId>org.gvsig</groupId>
48
        <artifactId>org.gvsig.fmap.dal.api</artifactId>
49 41597 jjdelcerro
        <scope>compile</scope>
50 40510 jjdelcerro
    </dependency>
51
    <dependency>
52
        <groupId>org.gvsig</groupId>
53
        <artifactId>org.gvsig.fmap.mapcontext.api</artifactId>
54 41597 jjdelcerro
        <scope>compile</scope>
55 40510 jjdelcerro
    </dependency>
56
    <dependency>
57
        <groupId>org.gvsig</groupId>
58
        <artifactId>org.gvsig.fmap.geometry.api</artifactId>
59 41597 jjdelcerro
        <scope>compile</scope>
60 40510 jjdelcerro
    </dependency>
61
    <dependency>
62
        <groupId>org.gvsig</groupId>
63
        <artifactId>org.gvsig.fmap.control</artifactId>
64 41597 jjdelcerro
        <scope>compile</scope>
65 40510 jjdelcerro
    </dependency>
66
    <dependency>
67
        <groupId>org.gvsig</groupId>
68
        <artifactId>org.gvsig.metadata.lib.basic.api</artifactId>
69 41597 jjdelcerro
        <scope>compile</scope>
70 40510 jjdelcerro
    </dependency>
71
    <dependency>
72
        <groupId>org.slf4j</groupId>
73
        <artifactId>slf4j-api</artifactId>
74 41597 jjdelcerro
        <scope>compile</scope>
75 40510 jjdelcerro
    </dependency>
76
  </dependencies>
77
78
  <build>
79
      <plugins>
80
81
        <plugin>
82
          <!-- Skip test execution -->
83
          <groupId>org.apache.maven.plugins</groupId>
84
          <artifactId>maven-surefire-plugin</artifactId>
85
          <configuration>
86
            <skipTests>true</skipTests>
87
          </configuration>
88
        </plugin>
89
90
      </plugins>
91
  </build>
92
93
  <properties>
94
      <gvsig.package.info.dependencies>required: org.gvsig.app.document.table.app.mainplugin -ge 2.0.1</gvsig.package.info.dependencies>
95
      <gvsig.package.info.categories>View,Vector</gvsig.package.info.categories>
96
      <gvsig.package.info.codealias>org.gvsig.geometrymeasurement.app.extension</gvsig.package.info.codealias>
97
          <gvsig.package.info.official>true</gvsig.package.info.official>
98
  </properties>
99
</project>