Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.library / org.gvsig.ui / pom.xml @ 43830

History | View | Annotate | Download (4.55 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>3.0.0-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> <groupId>org.gvsig.external</groupId> <artifactId>org.gvsig.external.jump</artifactId>
53
        <scope>compile</scope> </dependency> -->
54
        <dependency>
55
            <groupId>com.vividsolutions</groupId>
56
            <artifactId>jts</artifactId>
57
            <scope>runtime</scope>
58
        </dependency>
59
        <dependency>
60
            <groupId>com.jeta</groupId>
61
            <artifactId>formsrt</artifactId>
62
            <scope>compile</scope>
63
        </dependency>
64
        <dependency>
65
            <groupId>com.jgoodies</groupId>
66
            <artifactId>jgoodies-forms</artifactId>
67
            <scope>compile</scope>
68
        </dependency>
69
        <dependency>
70
            <groupId>com.jgoodies</groupId>
71
            <artifactId>jgoodies-common</artifactId>
72
        </dependency>
73
        <dependency>
74
            <groupId>com.jgoodies</groupId>
75
            <artifactId>looks</artifactId>
76
        </dependency>
77
    </dependencies>
78

    
79
    <build>
80

    
81
        <!-- <sourceDirectory>src</sourceDirectory> <testSourceDirectory>src-test-ui</testSourceDirectory> -->
82
        <resources>
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
        </resources>
104

    
105

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

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

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

    
129
        </plugins>
130
    </build>
131

    
132
</project>