Statistics
| Revision:

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

History | View | Annotate | Download (3.26 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.24-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.jfree</groupId>
34
      <artifactId>jfreechart</artifactId>
35
      <scope>compile</scope>
36
    </dependency>
37
    <dependency>
38
      <groupId>net.sf</groupId>
39
      <artifactId>flib-jcalendar</artifactId>
40
      <scope>compile</scope>
41
    </dependency>
42
    <dependency>
43
      <groupId>jwizardcomponent</groupId>
44
      <artifactId>jwizardcomponent</artifactId>
45
      <scope>compile</scope>
46
    </dependency>
47
    <dependency>
48
      <groupId>org.slf4j</groupId>
49
      <artifactId>slf4j-api</artifactId>
50
      <scope>compile</scope>
51
    </dependency>
52
    
53
    <dependency>
54
      <groupId>org.gvsig.external</groupId>
55
      <artifactId>org.gvsig.external.jump</artifactId>
56
      <scope>compile</scope>
57
    </dependency>
58
        
59
        <dependency>
60
      <groupId>com.vividsolutions</groupId>
61
      <artifactId>jts</artifactId>
62
      <scope>runtime</scope>
63
    </dependency>
64
  </dependencies>
65

    
66
  <build>
67
  
68
  <!--
69
                <sourceDirectory>src</sourceDirectory>
70
                <testSourceDirectory>src-test-ui</testSourceDirectory>
71
                -->
72
                <resources>
73
                        <resource>
74
                                <directory>src/main/java</directory>
75
                                <includes>
76
                                        <include>**/*.gif</include>
77
                                        <include>**/*.png</include>
78
                                        <include>**/*.PNG</include>
79
                                        <include> **/*.bmp</include>
80
                                        <include> **/*.jpg</include>
81
                                        <include> **/*.jpeg</include>
82
                                        <include> **/*.properties</include>
83
                                </includes>
84
                        </resource>
85
                        <resource>
86
                                <targetPath>org/gvsig/gui/beans/resources/translations</targetPath>
87
                                <filtering>false</filtering>
88
                                <directory>src/main/resources</directory>
89
                                <includes>
90
                                        <include>*.properties</include>
91
                                </includes>
92
                        </resource>
93
                </resources>
94
                
95
                  
96
    <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
97
    <plugins>
98

    
99
      <plugin>
100
        <groupId>org.apache.maven.plugins</groupId>
101
        <artifactId>maven-surefire-plugin</artifactId>
102
        <configuration>
103
          <skipTests>true</skipTests>
104
        </configuration>
105
      </plugin>
106

    
107
      <plugin>
108
        <groupId>org.apache.maven.plugins</groupId>
109
        <artifactId>maven-compiler-plugin</artifactId>
110
        <configuration>
111
          <testExcludes>
112
            <exclude>**</exclude>
113
          </testExcludes>
114
        </configuration>
115
      </plugin>
116

    
117
    </plugins>
118
  </build>
119

    
120
</project>