forked from locationtech/udig-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom-libs.xml
114 lines (97 loc) · 4.1 KB
/
pom-libs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This script was created to automagically download the external libs
required for uDig to build and export correctly.
To download the required libraries, use:
mvn package -f pom-libs.xml
After they have downloaded, make sure you:
- refresh the org.locationtech.udig.libs project in Eclipse;
- verify the classpath (Manfiest Runtime tab) references the libs;
- ensure the lib versions in the classpath are also correct. -->
<modelVersion>4.0.0</modelVersion>
<groupId>org.locationtech.udig</groupId>
<artifactId>pom-libs.parent</artifactId>
<version>0.0.2</version>
<name>uDig 3rd-Party libraries Download</name>
<packaging>pom</packaging>
<developers>
<developer>
<id>fgdrf</id>
<name>Frank Gasdorf</name>
<email>[email protected]</email>
<roles>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<modules>
<module>plugins/org.locationtech.udig.catalog.arcsde/pom-libs.xml</module>
<module>plugins/org.locationtech.udig.help/pom-libs.xml</module>
<module>plugins/org.locationtech.udig.libs/pom-libs.xml</module>
<module>plugins/org.locationtech.udig.libs.db2/pom-libs.xml</module>
<module>plugins/org.locationtech.udig.libs.oracle/pom-libs.xml</module>
<module>plugins/net.sf.opencsv/pom-libs.xml</module>
</modules>
<properties>
<lib.dir>${basedir}/lib</lib.dir>
<lib.source.dir>${basedir}/lib-src</lib.source.dir>
</properties>
<repositories>
<!-- Open Source Geospatial Foundation is the official repository used by
the GeoTools project for stable releases - use this repository when
using an official GeoTools numbered release -->
<repository>
<id>geotools-release</id>
<name>Geotools Release</name>
<url>http://download.osgeo.org/webdav/geotools</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<!-- The OpenGeo company offers a SNAPSHOT repository populated by GeoTools
nightly builds - in general it is much faster then the official repository
above -->
<repository>
<id>geotools-snapshot</id>
<name>Geotools Snapshot</name>
<url>http://repo.boundlessgeo.com/main/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- GeoSolutions provide their own repository for imageio-ext builds -->
<repository>
<id>geosolutions</id>
<name>GeoSolutions</name>
<url>http://maven.geo-solutions.it</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>