Statistics
| Revision:

root / org.gvsig.complexlegend / trunk / org.gvsig.complexlegend / org.gvsig.complexlegend.app / org.gvsig.complexlegend.app.mainplugin / pom.xml @ 2412

History | View | Annotate | Download (4.18 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.complexlegend.app.mainplugin</artifactId>
7
  <packaging>jar</packaging>
8
  <name>${project.atifactId}</name>
9
  <description>
10
  </description>
11
  <parent>
12
      <groupId>org.gvsig</groupId>
13
      <artifactId>org.gvsig.complexlegend.app</artifactId>
14
      <version>1.0.75</version>
15
  </parent>
16

    
17
  <dependencies>
18
    <dependency>
19
                <groupId>org.gvsig</groupId>
20
                <artifactId>org.gvsig.tools.lib</artifactId>
21
                <scope>compile</scope>
22
        </dependency>
23
        <dependency>
24
                <groupId>org.gvsig</groupId>
25
                <artifactId>org.gvsig.andami</artifactId>
26
                <scope>compile</scope>
27
        </dependency>
28
        <dependency>
29
                <groupId>org.gvsig</groupId>
30
                <artifactId>org.gvsig.app.mainplugin</artifactId>
31
                <scope>compile</scope>
32
        </dependency>
33
        <dependency>
34
                <groupId>org.gvsig</groupId>
35
                <artifactId>org.gvsig.fmap.control</artifactId>
36
                <scope>compile</scope>
37
        </dependency>
38
        <dependency>
39
                <groupId>org.gvsig</groupId>
40
                <artifactId>org.gvsig.fmap.mapcontext.api</artifactId>
41
                <scope>compile</scope>
42
        </dependency>
43
        <dependency>
44
                <groupId>org.gvsig</groupId>
45
                <artifactId>org.gvsig.fmap.geometry.api</artifactId>
46
                <scope>compile</scope>
47
        </dependency>
48
        <dependency>
49
                <groupId>org.gvsig</groupId>
50
                <artifactId>org.gvsig.fmap.dal.api</artifactId>
51
                <scope>compile</scope>
52
        </dependency>
53
        <dependency>
54
                <groupId>org.gvsig</groupId>
55
                <artifactId>org.gvsig.symbology.lib.api</artifactId>
56
                <scope>compile</scope>
57
        </dependency>
58
        <dependency>
59
                <groupId>org.gvsig</groupId>
60
                <artifactId>org.gvsig.complexlegend.lib.api</artifactId>
61
                <scope>compile</scope>
62
        </dependency>
63
        <dependency>
64
                <groupId>org.gvsig</groupId>
65
                <artifactId>org.gvsig.complexlegend.lib.impl</artifactId>
66
        </dependency>
67
        <dependency>
68
                <groupId>org.gvsig</groupId>
69
                <artifactId>org.gvsig.complexlegend.swing.api</artifactId>
70
                <scope>compile</scope>
71
        </dependency>
72
        <dependency>
73
                <groupId>org.gvsig</groupId>
74
                <artifactId>org.gvsig.complexlegend.swing.impl</artifactId>
75
        </dependency>
76
        <dependency>
77
                <groupId>org.gvsig</groupId>
78
                <artifactId>org.gvsig.labeling.app.mainplugin</artifactId>
79
                <version>2.0.55</version>
80
                <scope>compile</scope>
81
        </dependency>
82
  </dependencies>
83

    
84
    <properties>
85
        <!-- Package info property values -->
86
        <!-- Default values in org.gvsig.desktop -->
87
        <gvsig.package.info.name>Vector legend: Complex legend</gvsig.package.info.name>
88
        <gvsig.package.info.state>testing</gvsig.package.info.state>
89
        <gvsig.package.info.official>true</gvsig.package.info.official>
90
        <gvsig.package.info.dependencies>required: org.gvsig.app.mainplugin -ge 2.1.0-A</gvsig.package.info.dependencies>
91
        <gvsig.package.info.categories>Formats,Vector,Symbology</gvsig.package.info.categories>
92
        <gvsig.package.info.poolURL>https://devel.gvsig.org/download/projects/gvsig-base-legends/pool/</gvsig.package.info.poolURL>
93
                   <gvsig.package.info.operatingSystem>all</gvsig.package.info.operatingSystem>
94
            <gvsig.package.info.architecture>all</gvsig.package.info.architecture>
95
            <gvsig.install.plugin>true</gvsig.install.plugin>
96
            <gvsig.install.plugin.package>true</gvsig.install.plugin.package>
97
         </properties>
98

    
99

    
100

    
101

    
102
  <build>
103
    <plugins>
104

    
105
      <plugin>
106
        <!-- Skip compilation tests -->
107
        <groupId>org.apache.maven.plugins</groupId>
108
        <artifactId>maven-compiler-plugin</artifactId>
109
        <executions>
110
          <execution>
111
            <id>default-testCompile</id>
112
            <phase>process-test-sources</phase>
113
            <goals>
114
              <goal>testCompile</goal>
115
            </goals>
116
            <configuration>
117
              <skip>true</skip>
118
            </configuration>
119
          </execution>
120
        </executions>
121
      </plugin>
122

    
123
      <plugin>
124
        <!-- Skip test execution -->
125
        <groupId>org.apache.maven.plugins</groupId>
126
        <artifactId>maven-surefire-plugin</artifactId>
127
        <configuration>
128
          <skipTests>true</skipTests>
129
        </configuration>
130
      </plugin>
131

    
132
    </plugins>
133
  </build>
134

    
135
</project>
136