Statistics
| Revision:

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

History | View | Annotate | Download (3.89 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"
4
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5

    
6
  <modelVersion>4.0.0</modelVersion>
7
  <artifactId>org.gvsig.ui</artifactId>
8
  <packaging>jar</packaging>
9
  <name>${project.artifactId}</name>
10
  <description>Swing components collection</description>
11
  <parent>
12
    <groupId>org.gvsig</groupId>
13
    <artifactId>org.gvsig.desktop.library</artifactId>
14
    <version>2.0.196-SNAPSHOT</version>
15
  </parent>
16

    
17
  <dependencies>
18
    <dependency>
19
      <groupId>org.gvsig</groupId>
20
      <artifactId>org.gvsig.i18n</artifactId>
21
      <scope>compile</scope>
22
    </dependency>
23
    <dependency>
24
      <groupId>org.gvsig</groupId>
25
      <artifactId>org.gvsig.tools.lib</artifactId>
26
      <scope>compile</scope>
27
    </dependency>
28
    <dependency>
29
      <groupId>org.gvsig</groupId>
30
      <artifactId>org.gvsig.tools.swing.api</artifactId>
31
      <scope>compile</scope>
32
    </dependency>
33
    <dependency>
34
      <groupId>org.jfree</groupId>
35
      <artifactId>jfreechart</artifactId>
36
      <scope>compile</scope>
37
    </dependency>
38
    <dependency>
39
      <groupId>net.sf</groupId>
40
      <artifactId>flib-jcalendar</artifactId>
41
      <scope>compile</scope>
42
    </dependency>
43
    <dependency>
44
      <groupId>jwizardcomponent</groupId>
45
      <artifactId>jwizardcomponent</artifactId>
46
      <scope>compile</scope>
47
    </dependency>
48
    <dependency>
49
      <groupId>org.slf4j</groupId>
50
      <artifactId>slf4j-api</artifactId>
51
      <scope>compile</scope>
52
    </dependency>
53
    <!-- <dependency> <groupId>org.gvsig.external</groupId> <artifactId>org.gvsig.external.jump</artifactId>
54
      <scope>compile</scope> </dependency> -->
55
    <dependency>
56
      <groupId>com.vividsolutions</groupId>
57
      <artifactId>jts</artifactId>
58
      <scope>runtime</scope>
59
    </dependency>
60
    <dependency>
61
      <groupId>com.jeta</groupId>
62
      <artifactId>formsrt</artifactId>
63
      <scope>compile</scope>
64
    </dependency>
65
    <dependency>
66
      <groupId>com.jgoodies</groupId>
67
      <artifactId>jgoodies-forms</artifactId>
68
      <scope>compile</scope>
69
    </dependency>
70
    <dependency>
71
      <groupId>com.jgoodies</groupId>
72
      <artifactId>jgoodies-common</artifactId>
73
    </dependency>
74
    <dependency>
75
      <groupId>com.jgoodies</groupId>
76
      <artifactId>looks</artifactId>
77
    </dependency>
78
  </dependencies>
79

    
80
  <build>
81

    
82
    <!-- <sourceDirectory>src</sourceDirectory> <testSourceDirectory>src-test-ui</testSourceDirectory> -->
83
    <resources>
84
      <resource>
85
        <directory>src/main/java</directory>
86
        <includes>
87
          <include>**/*.gif</include>
88
          <include>**/*.png</include>
89
          <include>**/*.PNG</include>
90
          <include> **/*.bmp</include>
91
          <include> **/*.jpg</include>
92
          <include> **/*.jpeg</include>
93
          <include> **/*.properties</include>
94
        </includes>
95
      </resource>
96
      <resource>
97
        <targetPath>org/gvsig/gui/beans/resources/translations</targetPath>
98
        <filtering>false</filtering>
99
        <directory>src/main/resources</directory>
100
        <includes>
101
          <include>*.properties</include>
102
        </includes>
103
      </resource>
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.8</source>
123
          <target>1.8</target>
124
          <testExcludes>
125
            <exclude>**</exclude>
126
          </testExcludes>
127
        </configuration>
128
      </plugin>
129

    
130
    </plugins>
131
  </build>
132

    
133
</project>