Statistics
| Revision:

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

History | View | Annotate | Download (3.74 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.445</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
    <dependency>
53
      <groupId>com.jeta</groupId>
54
      <artifactId>formsrt</artifactId>
55
      <scope>compile</scope>
56
    </dependency>
57
    <dependency>
58
      <groupId>com.jgoodies</groupId>
59
      <artifactId>jgoodies-forms</artifactId>
60
      <scope>compile</scope>
61
    </dependency>
62
    <dependency>
63
      <groupId>com.jgoodies</groupId>
64
      <artifactId>jgoodies-common</artifactId>
65
    </dependency>
66
    <dependency>
67
      <groupId>com.jgoodies</groupId>
68
      <artifactId>jgoodies-looks</artifactId>
69
    </dependency>
70
    <dependency>
71
      <groupId>org.gvsig</groupId>
72
      <artifactId>org.gvsig.tools.util.api</artifactId>
73
    </dependency>
74
  </dependencies>
75

    
76
  <build>
77

    
78
    <!-- <sourceDirectory>src</sourceDirectory> <testSourceDirectory>src-test-ui</testSourceDirectory> -->
79
    <resources>
80
    <!--
81
      <resource>
82
        <directory>src/main/java</directory>
83
        <includes>
84
          <include>**/*.gif</include>
85
          <include>**/*.png</include>
86
          <include>**/*.PNG</include>
87
          <include> **/*.bmp</include>
88
          <include> **/*.jpg</include>
89
          <include> **/*.jpeg</include>
90
          <include> **/*.properties</include>
91
        </includes>
92
      </resource>
93
      <resource>
94
        <targetPath>org/gvsig/gui/beans/resources/translations</targetPath>
95
        <filtering>false</filtering>
96
        <directory>src/main/resources</directory>
97
        <includes>
98
          <include>*.properties</include>
99
        </includes>
100
      </resource>
101
        -->
102
    </resources>
103

    
104

    
105
    <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
106
    <plugins>
107

    
108
      <plugin>
109
        <groupId>org.apache.maven.plugins</groupId>
110
        <artifactId>maven-surefire-plugin</artifactId>
111
        <configuration>
112
          <skipTests>true</skipTests>
113
        </configuration>
114
      </plugin>
115

    
116
      <plugin>
117
        <groupId>org.apache.maven.plugins</groupId>
118
        <artifactId>maven-compiler-plugin</artifactId>
119
        <configuration>
120
          <source>1.7</source>
121
          <target>1.7</target>
122
          <testExcludes>
123
            <exclude>**</exclude>
124
          </testExcludes>
125
        </configuration>
126
      </plugin>
127

    
128
    </plugins>
129
  </build>
130

    
131
</project>