Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.ui / pom.xml @ 40512

History | View | Annotate | Download (2.68 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.ui</artifactId>
7
  <packaging>jar</packaging>
8
  <name>${project.artifactId}</name>
9
  <description>Swing components collection</description>
10
  <parent>
11
      <groupId>org.gvsig</groupId>
12
      <artifactId>org.gvsig.desktop.library</artifactId>
13
      <version>2.0.11-SNAPSHOT</version>
14
  </parent>
15

    
16
  <dependencies>
17
    <dependency>
18
      <groupId>org.gvsig</groupId>
19
      <artifactId>org.gvsig.i18n</artifactId>
20
      <scope>compile</scope>
21
    </dependency>
22
    <dependency>
23
      <groupId>org.gvsig</groupId>
24
      <artifactId>org.gvsig.tools.lib</artifactId>
25
      <scope>compile</scope>
26
    </dependency>
27
    <dependency>
28
      <groupId>org.gvsig</groupId>
29
      <artifactId>org.gvsig.tools.swing.api</artifactId>
30
      <scope>compile</scope>
31
    </dependency>
32
    <dependency>
33
      <groupId>org.gvsig</groupId>
34
      <artifactId>org.gvsig.projection.api</artifactId>
35
      <scope>compile</scope>
36
    </dependency>
37
    <dependency>
38
      <groupId>org.jfree</groupId>
39
      <artifactId>jfreechart</artifactId>
40
      <scope>compile</scope>
41
    </dependency>
42
    <dependency>
43
      <groupId>net.sf</groupId>
44
      <artifactId>flib-jcalendar</artifactId>
45
      <scope>compile</scope>
46
    </dependency>
47
    <dependency>
48
      <groupId>jwizardcomponent</groupId>
49
      <artifactId>jwizardcomponent</artifactId>
50
      <scope>compile</scope>
51
    </dependency>
52
    <dependency>
53
      <groupId>org.slf4j</groupId>
54
      <artifactId>slf4j-api</artifactId>
55
      <scope>compile</scope>
56
    </dependency>
57
    <dependency>
58
      <groupId>org.gvsig.external</groupId>
59
      <artifactId>org.gvsig.external.jump</artifactId>
60
      <scope>compile</scope>
61
    </dependency>
62

    
63
    <dependency>
64
      <groupId>com.vividsolutions</groupId>
65
      <artifactId>jts</artifactId>
66
      <scope>runtime</scope>
67
    </dependency>
68
  </dependencies>
69

    
70
  <build>
71
    <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
72
    <plugins>
73

    
74
      <plugin>
75
        <groupId>org.apache.maven.plugins</groupId>
76
        <artifactId>maven-surefire-plugin</artifactId>
77
        <configuration>
78
          <skipTests>true</skipTests>
79
        </configuration>
80
      </plugin>
81

    
82
      <plugin>
83
        <groupId>org.apache.maven.plugins</groupId>
84
        <artifactId>maven-compiler-plugin</artifactId>
85
        <configuration>
86
          <testExcludes>
87
            <exclude>**</exclude>
88
          </testExcludes>
89
        </configuration>
90
      </plugin>
91

    
92
    </plugins>
93
  </build>
94

    
95
</project>