Statistics
| Revision:

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

History | View | Annotate | Download (3.81 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.405-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
    <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
      <version>3.0.347-SNAPSHOT</version>
74
      <type>jar</type>
75
    </dependency>
76
  </dependencies>
77

    
78
  <build>
79

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

    
106

    
107
    <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
108
    <plugins>
109

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

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

    
130
    </plugins>
131
  </build>
132

    
133
</project>