Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libUIComponent / pom.xml @ 40016

History | View | Annotate | Download (5.4 KB)

1 39830 jldominguez
<?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 39835 jldominguez
        <version>2.0.2-SNAPSHOT</version>
9 39830 jldominguez
        <name>libUIComponent</name>
10
        <description>Swing components collection</description>
11
        <parent>
12
                <groupId>org.gvsig</groupId>
13
                <artifactId>org.gvsig.maven.base.pom</artifactId>
14
                <version>1.0.9</version>
15
        </parent>
16
        <scm>
17 39835 jldominguez
                <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libUIComponent/</connection>
18
                <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libUIComponent/</developerConnection>
19
                <url>https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libUIComponent</url>
20 39830 jldominguez
        </scm>
21
        <repositories>
22
                <repository>
23
                        <id>gvsig-public-http-repository</id>
24
                        <name>gvSIG maven public HTTP repository</name>
25
                        <url>http://devel.gvsig.org/m2repo/j2se</url>
26
                        <releases>
27
                                <enabled>true</enabled>
28
                                <updatePolicy>daily</updatePolicy>
29
                                <checksumPolicy>warn</checksumPolicy>
30
                        </releases>
31
                        <snapshots>
32
                                <enabled>true</enabled>
33
                                <updatePolicy>daily</updatePolicy>
34
                                <checksumPolicy>warn</checksumPolicy>
35
                        </snapshots>
36
                </repository>
37
        </repositories>
38
        <dependencyManagement>
39
                <dependencies>
40
                        <dependency>
41
                                <groupId>org.gvsig</groupId>
42
                                <artifactId>org.gvsig.core.maven.dependencies</artifactId>
43
                                <version>2.0.1</version>
44
                                <type>pom</type>
45
                                <scope>import</scope>
46
                        </dependency>
47
                </dependencies>
48
        </dependencyManagement>
49
        <dependencies>
50
                <dependency>
51
                        <groupId>org.gvsig</groupId>
52
                        <artifactId>org.gvsig.i18n</artifactId>
53
                        <scope>compile</scope>
54
                </dependency>
55
                <dependency>
56
                        <groupId>org.gvsig</groupId>
57
                        <artifactId>org.gvsig.tools.lib</artifactId>
58
                        <scope>compile</scope>
59
                </dependency>
60
                <dependency>
61
                        <groupId>org.jfree</groupId>
62
                        <artifactId>jfreechart</artifactId>
63
                        <scope>compile</scope>
64
                </dependency>
65
                <dependency>
66
                        <groupId>net.sf</groupId>
67
                        <artifactId>flib-jcalendar</artifactId>
68
                        <scope>compile</scope>
69
                </dependency>
70
                <dependency>
71
                        <groupId>jwizardcomponent</groupId>
72
                        <artifactId>jwizardcomponent</artifactId>
73
                        <scope>compile</scope>
74
                </dependency>
75
                <dependency>
76
                        <groupId>org.slf4j</groupId>
77
                        <artifactId>slf4j-api</artifactId>
78
                        <scope>compile</scope>
79
                </dependency>
80
                <dependency>
81
                        <groupId>org.gvsig.external</groupId>
82
                        <artifactId>org.gvsig.external.jump</artifactId>
83
                        <scope>compile</scope>
84
                        <version>1.0.0</version>
85
                </dependency>
86
        </dependencies>
87
        <build>
88
                <sourceDirectory>src</sourceDirectory>
89
                <testSourceDirectory>src-test-ui</testSourceDirectory>
90
                <resources>
91
                        <resource>
92
                                <directory>src</directory>
93
                                <includes>
94
                                        <include>**/*.gif</include>
95
                                        <include>**/*.png</include>
96
                                        <include>**/*.PNG</include>
97
                                        <include> **/*.bmp</include>
98
                                        <include> **/*.jpg</include>
99
                                        <include> **/*.jpeg</include>
100
                                        <include> **/*.properties</include>
101
                                </includes>
102
                        </resource>
103
                        <resource>
104
                                <targetPath>org/gvsig/gui/beans/resources/translations</targetPath>
105
                                <filtering>false</filtering>
106
                                <directory>${basedir}/config</directory>
107
                                <includes>
108
                                        <include>*.properties</include>
109
                                </includes>
110
                        </resource>
111
                </resources>
112
                <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
113
                <plugins>
114
                        <plugin>
115
                                <groupId>org.apache.maven.plugins</groupId>
116
                                <artifactId>maven-surefire-plugin</artifactId>
117
                                <configuration>
118
                                        <skipTests>true</skipTests>
119
                                </configuration>
120
                        </plugin>
121
                        <plugin>
122
                                <groupId>org.apache.maven.plugins</groupId>
123
                                <artifactId>maven-compiler-plugin</artifactId>
124
                                <configuration>
125
                                        <testExcludes>
126
                                                <exclude>**</exclude>
127
                                        </testExcludes>
128
                                </configuration>
129
                        </plugin>
130
                        <plugin>
131
                                <artifactId>maven-release-plugin</artifactId>
132
                                <version>2.0</version>
133
                                <configuration>
134
                                        <tagBase>https://devel.gvsig.org/svn/gvsig-desktop/tags/libraries/libUIComponent</tagBase>
135
                                </configuration>
136
                        </plugin>
137
138
                </plugins>
139
        </build>
140
141
        <profiles>
142
                <profile>
143
                        <id>eclipse-project</id>
144
                        <build>
145
                                <plugins>
146
                                        <plugin>
147
                                                <artifactId>maven-antrun-plugin</artifactId>
148
                                                <configuration>
149
                                                        <tasks>
150
                                                                <ant antfile="${basedir}/../build/ant-tasks/eclipse-tasks.xml" target="eclipse.eclipse" />
151
                                                        </tasks>
152
                                                </configuration>
153
                                                <dependencies>
154
                                                        <dependency>
155
                                                                <groupId>org.apache.ant</groupId>
156
                                                                <artifactId>ant-trax</artifactId>
157
                                                                <version>1.7.1</version>
158
                                                        </dependency>
159
                                                        <dependency>
160
                                                                <groupId>xalan</groupId>
161
                                                                <artifactId>xalan</artifactId>
162
                                                                <version>2.6.0</version>
163
                                                        </dependency>
164
                                                </dependencies>
165
                                        </plugin>
166
                                </plugins>
167
                        </build>
168
                </profile>
169
                <profile>
170
                        <id>gvsig-install</id>
171
                        <activation>
172
                                <activeByDefault>true</activeByDefault>
173
                        </activation>
174
                        <properties>
175
                                <!-- gvSIG installation folder -->
176
                                <gvsig.install.dir>${basedir}/../build/product
177
                                </gvsig.install.dir>
178
                        </properties>
179
                </profile>
180
        </profiles>
181
        <properties>
182
                <eclipse.project.name>libUIComponent</eclipse.project.name>
183
        </properties>
184 27321 cordinyana
</project>