Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2040 / libraries / libUIComponent / pom.xml @ 44114

History | View | Annotate | Download (7.51 KB)

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