Statistics
| Revision:

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

History | View | Annotate | Download (3.59 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.404</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
  </dependencies>
71

    
72
  <build>
73

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

    
98

    
99
    <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
100
    <plugins>
101

    
102
      <plugin>
103
        <groupId>org.apache.maven.plugins</groupId>
104
        <artifactId>maven-surefire-plugin</artifactId>
105
        <configuration>
106
          <skipTests>true</skipTests>
107
        </configuration>
108
      </plugin>
109

    
110
      <plugin>
111
        <groupId>org.apache.maven.plugins</groupId>
112
        <artifactId>maven-compiler-plugin</artifactId>
113
        <configuration>
114
          <source>1.7</source>
115
          <target>1.7</target>
116
          <testExcludes>
117
            <exclude>**</exclude>
118
          </testExcludes>
119
        </configuration>
120
      </plugin>
121

    
122
    </plugins>
123
  </build>
124

    
125
</project>