Revision 776

View differences:

org.gvsig.maven.base/trunk/org.gvsig.maven.base/org.gvsig.maven.base.jni.pom/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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
	<modelVersion>4.0.0</modelVersion>
5
	<artifactId>org.gvsig.maven.base.jni.pom</artifactId>
6
	<packaging>pom</packaging>
7
	<name>org.gvsig.maven.base.jni.pom</name>
8
	<parent>
9
		<groupId>org.gvsig</groupId>
10
		<artifactId>org.gvsig.maven.base.pom</artifactId>
11
		<version>1.0.9</version>
12
	</parent>	
13
	
14
	<description>
15
		Base POM for all JNI projects. This pom knows how to
16
		build and made an native libraries for GvSIG.
17
	</description>
18
	<profiles>
19
		<profile>
20
			<id>jni-devel</id>
21
			<activation>
22
				<property>
23
					<name>jni-devel</name>
24
				</property>
25
			</activation>
26
			<properties>
27
				<compileTarget>native</compileTarget>
28
				<numProc>2</numProc>
29
				<depman-ant>${base.tools.path}/ant/depman-ant.xml</depman-ant>
30
			</properties>
31
			<build>
32
				<plugins>
33
					<plugin>
34
						<groupId>org.apache.maven.plugins</groupId>
35
						<artifactId>maven-antrun-plugin</artifactId>
36
						<executions>
37
							<execution>
38
								<id>compile-native</id>
39
								<phase>compile</phase>
40
								<configuration>
41
									<tasks>
42
										<property name="numProc" value="${numProc}" />
43
										<property name="project.build.directory" value="${project.build.directory}" />
44
										<ant antfile="${depman-ant}" target="${compileTarget}" />
45
									</tasks>
46
								</configuration>
47
								<goals>
48
									<goal>run</goal>
49
								</goals>
50
							</execution>
51
							<execution>
52
								<id>native-eclipse</id>
53
								<phase>generate-sources</phase>
54
								<configuration>
55
									<tasks>
56
										<property name="numProc" value="${numProc}" />
57
										<property name="project.build.directory" value="${project.build.directory}" />
58
										<ant antfile="${depman-ant}" target="${compileTarget}-eclipse" />
59
									</tasks>
60
								</configuration>
61
								<goals>
62
									<goal>run</goal>
63
								</goals>
64
							</execution>
65
						</executions>
66
					</plugin>
67
					<plugin>
68
						<artifactId>maven-assembly-plugin
69
						</artifactId>
70
						<configuration>
71
							<descriptors>
72
								<descriptor>${base.tools.path}/assembly/native.xml</descriptor>
73
							</descriptors>
74
							<ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
75
						</configuration>
76
						<executions>
77
							<execution>
78
								<id>package-native</id>
79
								<!--
80
									this is used for inheritance merges
81
								-->
82
								<phase>package</phase>
83
								<!--
84
									append to the packaging phase.
85
								-->
86
								<goals>
87
									<goal>attached</goal><!-- goals == mojos -->
88
								</goals>
89
							</execution>
90
						</executions>
91
					</plugin>
92
				</plugins>
93
			</build>
94
		</profile>
95
	</profiles>
96
</project>
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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
	<modelVersion>4.0.0</modelVersion>
5
	<artifactId>org.gvsig.maven.base.jni.pom</artifactId>
6
	<packaging>pom</packaging>
7
	<name>org.gvsig.maven.base.jni.pom</name>
8
	<parent>
9
		<groupId>org.gvsig</groupId>
10
		<artifactId>org.gvsig.maven.base.pom</artifactId>
11
		<version>1.0.9-SNAPSHOT</version>
12
	</parent>	
13
	
14
	
15
	<description>
16
		Base POM for all JNI projects. This pom knows how to
17
		build and made an native libraries for GvSIG.
18
	</description>
19
	<profiles>
20
		<profile>
21
			<id>jni-devel</id>
22
			<activation>
23
				<property>
24
					<name>jni-devel</name>
25
				</property>
26
			</activation>
27
			<properties>
28
				<compileTarget>native</compileTarget>
29
				<numProc>2</numProc>
30
				<depman-ant>${base.tools.path}/ant/depman-ant.xml</depman-ant>
31
			</properties>
32
			<build>
33
				<plugins>
34
					<plugin>
35
						<groupId>org.apache.maven.plugins</groupId>
36
						<artifactId>maven-antrun-plugin</artifactId>
37
						<executions>
38
							<execution>
39
								<id>compile-native</id>
40
								<phase>compile</phase>
41
								<configuration>
42
									<tasks>
43
										<property name="numProc" value="${numProc}" />
44
										<property name="project.build.directory" value="${project.build.directory}" />
45
										<ant antfile="${depman-ant}" target="${compileTarget}" />
46
									</tasks>
47
								</configuration>
48
								<goals>
49
									<goal>run</goal>
50
								</goals>
51
							</execution>
52
							<execution>
53
								<id>native-eclipse</id>
54
								<phase>generate-sources</phase>
55
								<configuration>
56
									<tasks>
57
										<property name="numProc" value="${numProc}" />
58
										<property name="project.build.directory" value="${project.build.directory}" />
59
										<ant antfile="${depman-ant}" target="${compileTarget}-eclipse" />
60
									</tasks>
61
								</configuration>
62
								<goals>
63
									<goal>run</goal>
64
								</goals>
65
							</execution>
66
						</executions>
67
					</plugin>
68
					<plugin>
69
						<artifactId>maven-assembly-plugin
70
						</artifactId>
71
						<configuration>
72
							<descriptors>
73
								<descriptor>${base.tools.path}/assembly/native.xml</descriptor>
74
							</descriptors>
75
							<ignoreDirFormatExtensions>true</ignoreDirFormatExtensions>
76
						</configuration>
77
						<executions>
78
							<execution>
79
								<id>package-native</id>
80
								<!--
81
									this is used for inheritance merges
82
								-->
83
								<phase>package</phase>
84
								<!--
85
									append to the packaging phase.
86
								-->
87
								<goals>
88
									<goal>attached</goal><!-- goals == mojos -->
89
								</goals>
90
							</execution>
91
						</executions>
92
					</plugin>
93
				</plugins>
94
			</build>
95
		</profile>
96
	</profiles>
97
</project>
org.gvsig.maven.base/trunk/org.gvsig.maven.base/org.gvsig.maven.base.pom/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
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
    <modelVersion>4.0.0</modelVersion>
5
    <artifactId>org.gvsig.maven.base.pom</artifactId>
6
    <packaging>pom</packaging>
7
    <name>org.gvsig.maven.base.pom</name>
8
    <description>Base POM for all GvSIG projects</description>
9
    <url>http://devel.gvsig.org/sites/${project.artifactId}/${project.version}</url>
10
    <inceptionYear>2004</inceptionYear>
11
    <parent>
12
    
13
        <groupId>org.gvsig</groupId>
14
        <artifactId>org.gvsig.maven.base</artifactId>
15
        <version>1.0.9</version>
16
    </parent>
17
    <issueManagement>
18
        <system>redmine</system>
19
        <url>https://gvsig-devel.gva.es/redmine/projects/gvsig-desktop</url>
20
    </issueManagement>
21
    <ciManagement />
22
    <distributionManagement>
23
        <site>
24
            <id>gvsig-repository</id>
25
            <url>dav:https://devel.gvsig.org/sites/${project.artifactId}/${project.version}</url>
26
        </site>
27
    </distributionManagement>
28
    <mailingLists>
29
        <mailingList>
30
            <name>User List</name>
31
            <subscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_usuarios</subscribe>
32
            <unsubscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_usuarios</unsubscribe>
33
            <post>gvsig_usuarios@listserv.gva.es</post>
34
            <archive>http://www.gvsig.org/web/community/mailing-lists/gvsig-nabble</archive>
35
            <otherArchives>
36
                <otherArchive>http://www.mail-archive.com/gvsig_usuarios@runas.cap.gva.es</otherArchive>
37
                <otherArchive>http://dir.gmane.org/index.php?prefix=gmane.comp.gis.gvsig</otherArchive>
38
            </otherArchives>
39
        </mailingList>
40
        <mailingList>
41
            <name>Developer List</name>
42
            <subscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_desarrolladores</subscribe>
43
            <unsubscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_desarrolladores</unsubscribe>
44
            <post>gvsig_desarrolladores@listserv.gva.es</post>
45
            <archive>http://www.gvsig.org/web/community/mailing-lists/gvsig-nabble</archive>
46
            <otherArchives>
47
                <otherArchive>http://www.mail-archive.com/gvsig_desarrolladores@runas.cap.gva.es</otherArchive>
48
                <otherArchive>http://dir.gmane.org/index.php?prefix=gmane.comp.gis.gvsig</otherArchive>
49
            </otherArchives>
50
        </mailingList>
51
        <mailingList>
52
            <name>International List</name>
53
            <subscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_internacional</subscribe>
54
            <unsubscribe>http://listserv.gva.es/cgi-bin/mailman/listinfo/gvsig_internacional</unsubscribe>
55
            <post>gvsig_internacional@listserv.gva.es</post>
56
            <archive>http://www.gvsig.org/web/community/mailing-lists/gvsig-nabble</archive>
57
            <otherArchives>
58
                <otherArchive>http://www.mail-archive.com/gvsig_internacional@runas.cap.gva.es</otherArchive>
59
                <otherArchive>http://dir.gmane.org/index.php?prefix=gmane.comp.gis.gvsig</otherArchive>
60
            </otherArchives>
61
        </mailingList>
62
    </mailingLists>
63
    <!-- Put here the global properties who use all the projects of GvSIG -->
64
    <properties>
65
        <localRepository>${user.home}/.m2/repository</localRepository>
66
        <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
67
        <site-repository>dav:https://devel.gvsig.org/sites/${project.artifactId}/${project.version}</site-repository>
68
        <base.tools.path>${project.build.directory}/org.gvsig.maven.base.tools</base.tools.path>
69
        <eclipse.project.name>${project.artifactId}</eclipse.project.name>
70
    </properties>
71
    <dependencyManagement>
72
        <!-- NOTE: the list of dependencies is ordered alphabetically by 
73
            the artifactId. Please, if new dependencies are added, keep the order. -->
74
        <dependencies>
75
            <dependency>
76
                <groupId>org.n52</groupId>
77
                <artifactId>52n-wps-config</artifactId>
78
                <version>1.0.1</version>
79
                <scope>compile</scope>
80
            </dependency>
81
            <dependency>
82
                <groupId>net.opengis</groupId>
83
                <artifactId>52n-wps-xml</artifactId>
84
                <version>1.0.0</version>
85
                <scope>compile</scope>
86
            </dependency>
87
            <dependency>
88
                <groupId>org.jzkit</groupId>
89
                <artifactId>a2j-runtime</artifactId>
90
                <version>2.0.9</version>
91
                <scope>compile</scope>
92
            </dependency>
93
            <dependency>
94
                <groupId>org.jzkit</groupId>
95
                <artifactId>a2j</artifactId>
96
                <version>2.0.9</version>
97
                <scope>compile</scope>
98
            </dependency>
99
            <dependency>
100
                <groupId>net.swing</groupId>
101
                <artifactId>amic-util</artifactId>
102
                <version>unknown</version>
103
                <scope>compile</scope>
104
            </dependency>
105
            <dependency>
106
                <groupId>org.apache.ant</groupId>
107
                <artifactId>ant</artifactId>
108
                <version>1.8.1</version>
109
                <scope>compile</scope>
110
            </dependency>
111
            <dependency>
112
                <groupId>org.apache.ant</groupId>
113
                <artifactId>ant-apache-oro</artifactId>
114
                <version>1.8.1</version>
115
                <scope>compile</scope>
116
            </dependency>
117
            <dependency>
118
                <groupId>ant-contrib</groupId>
119
                <artifactId>ant-contrib</artifactId>
120
                <version>1.0b3</version>
121
                <scope>compile</scope>
122
                <exclusions>
123
                    <exclusion>
124
                        <groupId>ant</groupId>
125
                        <artifactId>ant</artifactId>
126
                    </exclusion>
127
                </exclusions>
128
            </dependency>
129
            <dependency>
130
                <groupId>org.apache.ant</groupId>
131
                <artifactId>ant-launcher</artifactId>
132
                <version>1.8.1</version>
133
                <scope>compile</scope>
134
            </dependency>
135
            <dependency>
136
                <groupId>org.apache.ant</groupId>
137
                <artifactId>ant-nodeps</artifactId>
138
                <version>1.8.1</version>
139
                <scope>compile</scope>
140
            </dependency>
141
            <dependency>
142
                <groupId>org.tigris.antelope</groupId>
143
                <artifactId>antelopetasks</artifactId>
144
                <version>3.2.10</version>
145
                <scope>compile</scope>
146
            </dependency>
147
            <dependency>
148
                <groupId>com.sardak</groupId>
149
                <artifactId>antform</artifactId>
150
                <version>2.0</version>
151
                <scope>compile</scope>
152
            </dependency>
153
            <dependency>
154
                <groupId>org.apache.xmlgraphics</groupId>
155
                <artifactId>batik-awt-util</artifactId>
156
                <version>1.7</version>
157
                <scope>compile</scope>
158
            </dependency>
159
            <dependency>
160
                <groupId>org.apache.xmlgraphics</groupId>
161
                <artifactId>batik-bridge</artifactId>
162
                <version>1.7</version>
163
                <scope>compile</scope>
164
            </dependency>
165
            <dependency>
166
                <groupId>org.gvsig</groupId>
167
                <artifactId>batik-ext-gvsig-custom</artifactId>
168
                <version>1.7.0</version>
169
                <scope>compile</scope>
170
            </dependency>
171
            <dependency>
172
                <groupId>org.apache.xmlgraphics</groupId>
173
                <artifactId>batik-gui-util</artifactId>
174
                <version>1.7</version>
175
                <scope>compile</scope>
176
            </dependency>
177
            <dependency>
178
                <groupId>org.apache.xmlgraphics</groupId>
179
                <artifactId>batik-gvt</artifactId>
180
                <version>1.7</version>
181
                <scope>compile</scope>
182
            </dependency>
183
            <dependency>
184
                <groupId>org.apache.xmlgraphics</groupId>
185
                <artifactId>batik-script</artifactId>
186
                <version>1.7</version>
187
                <scope>compile</scope>
188
            </dependency>
189
            <dependency>
190
                <groupId>org.apache.xmlgraphics</groupId>
191
                <artifactId>batik-xml</artifactId>
192
                <version>1.7</version>
193
                <scope>compile</scope>
194
            </dependency>
195
            <dependency>
196
                <groupId>bsf</groupId>
197
                <artifactId>bsf</artifactId>
198
                <version>2.3.0-rc1</version>
199
                <scope>compile</scope>
200
            </dependency>
201
            <dependency>
202
                <groupId>org.apache.bsf</groupId>
203
                <artifactId>bsf-api</artifactId>
204
                <version>3.1</version>
205
                <scope>compile</scope>
206
            </dependency>
207
            <dependency>
208
                <groupId>org.apache.bsf</groupId>
209
                <artifactId>bsf-utils</artifactId>
210
                <version>3.1</version>
211
                <scope>compile</scope>
212
            </dependency>
213
            <dependency>
214
                <groupId>bsh</groupId>
215
                <artifactId>bsh</artifactId>
216
                <version>2.0b4</version>
217
                <scope>compile</scope>
218
            </dependency>
219
            <dependency>
220
                <groupId>castor</groupId>
221
                <artifactId>castor</artifactId>
222
                <version>0.9.5.3</version>
223
                <scope>compile</scope>
224
            </dependency>
225
            <dependency>
226
                <groupId>commons-beanutils</groupId>
227
                <artifactId>commons-beanutils</artifactId>
228
                <version>1.6</version>
229
                <scope>compile</scope>
230
            </dependency>
231
            <dependency>
232
                <groupId>commons-dbcp</groupId>
233
                <artifactId>commons-dbcp</artifactId>
234
                <version>1.2.2</version>
235
                <scope>compile</scope>
236
            </dependency>
237
            <dependency>
238
                <groupId>commons-collections</groupId>
239
                <artifactId>commons-collections</artifactId>
240
                <version>3.2.1</version>
241
                <scope>compile</scope>
242
            </dependency>
243
            <dependency>
244
                <groupId>commons-httpclient</groupId>
245
                <artifactId>commons-httpclient</artifactId>
246
                <version>2.0.2</version>
247
                <scope>compile</scope>
248
            </dependency>
249
            <dependency>
250
                <groupId>commons-io</groupId>
251
                <artifactId>commons-io</artifactId>
252
                <version>2.4</version>
253
                <scope>compile</scope>
254
            </dependency>
255
            <dependency>
256
                <groupId>commons-logging</groupId>
257
                <artifactId>commons-logging</artifactId>
258
                <version>1.1.1</version>
259
                <scope>compile</scope>
260
            </dependency>
261
            <dependency>
262
                <groupId>commons-logging</groupId>
263
                <artifactId>commons-logging</artifactId>
264
                <version>1.1.1</version>
265
                <classifier>api</classifier>
266
                <scope>compile</scope>
267
            </dependency>
268
            <dependency>
269
                <groupId>org.dspace</groupId>
270
                <artifactId>cql-java</artifactId>
271
                <version>1.0</version>
272
                <scope>compile</scope>
273
            </dependency>
274
            <dependency>
275
                <groupId>flanagan</groupId>
276
                <artifactId>flanagan</artifactId>
277
                <version>20090616</version>
278
                <scope>compile</scope>
279
            </dependency>
280
            <dependency>
281
                <groupId>net.sf</groupId>
282
                <artifactId>flib-jcalendar</artifactId>
283
                <version>unknown</version>
284
                <scope>compile</scope>
285
            </dependency>
286
            <dependency>
287
                <groupId>org.opengis</groupId>
288
                <artifactId>geoapi</artifactId>
289
                <version>2.0</version>
290
                <scope>compile</scope>
291
            </dependency>
292
            <dependency>
293
                <groupId>geojava</groupId>
294
                <artifactId>geojava</artifactId>
295
                <version>unknown</version>
296
                <scope>compile</scope>
297
            </dependency>
298
            <dependency>
299
                <groupId>org.geonames</groupId>
300
                <artifactId>geonames</artifactId>
301
                <version>1.0</version>
302
                <classifier>java5</classifier>
303
                <scope>compile</scope>
304
            </dependency>
305
            <dependency>
306
                <groupId>org.codehaus.groovy</groupId>
307
                <artifactId>groovy-all</artifactId>
308
                <version>1.7.6</version>
309
                <scope>compile</scope>
310
            </dependency>
311
            <dependency>
312
                <groupId>org.geotools</groupId>
313
                <artifactId>gt2-legacy</artifactId>
314
                <version>2.2-RC2</version>
315
                <scope>compile</scope>
316
            </dependency>
317
            <dependency>
318
                <groupId>org.geotools</groupId>
319
                <artifactId>gt2-main</artifactId>
320
                <version>2.2.2</version>
321
                <scope>compile</scope>
322
            </dependency>
323
            <dependency>
324
                <groupId>org.geotools</groupId>
325
                <artifactId>gt2-referencing</artifactId>
326
                <version>2.2-RC2</version>
327
                <scope>compile</scope>
328
            </dependency>
329
            <dependency>
330
                <groupId>hsqldb</groupId>
331
                <artifactId>hsqldb</artifactId>
332
                <version>1.8.0.10</version>
333
                <scope>compile</scope>
334
            </dependency>
335
            <dependency>
336
                <groupId>com.h2database</groupId>
337
                <artifactId>h2</artifactId>
338
                <version>1.3.150</version>
339
                <scope>compile</scope>
340
            </dependency>
341
            <dependency>
342
                <groupId>org.ini4j</groupId>
343
                <artifactId>ini4j</artifactId>
344
                <version>0.5.1</version>
345
                <scope>compile</scope>
346
            </dependency>
347
            <dependency>
348
                <groupId>com.lowagie</groupId>
349
                <artifactId>itext</artifactId>
350
                <version>2.1.4</version>
351
                <scope>compile</scope>
352
            </dependency>
353
            <dependency>
354
                <groupId>javax.media</groupId>
355
                <artifactId>jai_core</artifactId>
356
                <version>1.1.3</version>
357
                <scope>compile</scope>
358
            </dependency>
359
            <dependency>
360
                <groupId>javax.media</groupId>
361
                <artifactId>jai_codec</artifactId>
362
                <version>1.1.3</version>
363
                <scope>compile</scope>
364
            </dependency>
365
            <dependency>
366
                <groupId>gov.nist.math</groupId>
367
                <artifactId>jama</artifactId>
368
                <version>unknown</version>
369
                <scope>compile</scope>
370
            </dependency>
371
            <dependency>
372
                <groupId>javax.help</groupId>
373
                <artifactId>javahelp</artifactId>
374
                <version>2.0.05</version>
375
                <scope>compile</scope>
376
            </dependency>
377
            <dependency>
378
                <groupId>com.toedter</groupId>
379
                <artifactId>jcalendar</artifactId>
380
                <version>1.1.4</version>
381
                <scope>compile</scope>
382
            </dependency>
383
            <dependency>
384
                <groupId>jfree</groupId>
385
                <artifactId>jcommon</artifactId>
386
                <version>1.0.12</version>
387
                <scope>compile</scope>
388
            </dependency>
389
            <dependency>
390
                <groupId>jdom</groupId>
391
                <artifactId>jdom</artifactId>
392
                <version>1.0</version>
393
                <scope>compile</scope>
394
            </dependency>
395
            <dependency>
396
                <groupId>org.nfunk</groupId>
397
                <artifactId>jep</artifactId>
398
                <version>2.4.0</version>
399
                <scope>compile</scope>
400
            </dependency>
401
            <dependency>
402
                <groupId>jfree</groupId>
403
                <artifactId>jfreechart</artifactId>
404
                <version>1.0.7</version>
405
                <scope>compile</scope>
406
            </dependency>
407
            <dependency>
408
                <groupId>org.jfree</groupId>
409
                <artifactId>jfreechart</artifactId>
410
                <version>1.0.14</version>
411
                <scope>compile</scope>
412
            </dependency>
413
            <dependency>
414
                <groupId>org.jgraf</groupId>
415
                <artifactId>jgraf</artifactId>
416
                <version>0.0.1</version>
417
                <scope>compile</scope>
418
            </dependency>
419
            <dependency>
420
                <groupId>net.sf</groupId>
421
                <artifactId>jgraph</artifactId>
422
                <version>5.10.1.5</version>
423
                <scope>compile</scope>
424
            </dependency>
425
            <dependency>
426
                <groupId>net.sf</groupId>
427
                <artifactId>jgridshiftapi</artifactId>
428
                <version>1.0</version>
429
                <scope>compile</scope>
430
            </dependency>
431
            <dependency>
432
                <groupId>com.sun</groupId>
433
                <artifactId>jimi</artifactId>
434
                <version>1.1</version>
435
                <scope>compile</scope>
436
            </dependency>
437
            <dependency>
438
                <groupId>org.jpedal</groupId>
439
                <artifactId>jpedal_lgpl</artifactId>
440
                <version>4.37b36</version>
441
                <scope>compile</scope>
442
            </dependency>
443
            <dependency>
444
                <groupId>org.jruby</groupId>
445
                <artifactId>jruby</artifactId>
446
                <version>1.5.6</version>
447
                <scope>compile</scope>
448
            </dependency>
449
            <dependency>
450
                <groupId>rhino</groupId>
451
                <artifactId>js</artifactId>
452
                <!-- This is the version already included sin Java 1.6 -->
453
                <version>1.6R2</version>
454
                <scope>compile</scope>
455
            </dependency>
456
            <dependency>
457
                <groupId>net.sf</groupId>
458
                <artifactId>jsi</artifactId>
459
                <version>unknown</version>
460
                <scope>compile</scope>
461
            </dependency>
462
            <!-- <dependency> <groupId>com.sun.script.js</groupId> <artifactId></artifactId> 
463
                <version></version> <scope>compile</scope></dependency> -->
464
            <dependency>
465
                <groupId>javax.units</groupId>
466
                <artifactId>jsr108</artifactId>
467
                <version>0.01</version>
468
                <scope>compile</scope>
469
            </dependency>
470
            <dependency>
471
                <groupId>com.vividsolutions</groupId>
472
                <artifactId>jts</artifactId>
473
                <version>1.9</version>
474
                <scope>compile</scope>
475
            </dependency>
476
            <dependency>
477
                <groupId>com.vividsolutions</groupId>
478
                <artifactId>jtsio</artifactId>
479
                <version>1.7</version>
480
                <scope>compile</scope>
481
            </dependency>
482
            <dependency>
483
                <groupId>junit</groupId>
484
                <artifactId>junit</artifactId>
485
                <version>3.8.1</version>
486
                <scope>test</scope>
487
            </dependency>
488
            <dependency>
489
                <groupId>jwizardcomponent</groupId>
490
                <artifactId>jwizardcomponent</artifactId>
491
                <version>1.2.2</version>
492
                <scope>compile</scope>
493
            </dependency>
494
            <dependency>
495
                <groupId>jwizardcomponent</groupId>
496
                <artifactId>jwizardcomponent-0i18n</artifactId>
497
                <version>1.2.2.1</version>
498
                <scope>compile</scope>
499
            </dependency>
500
            <dependency>
501
                <groupId>org.python</groupId>
502
                <artifactId>jython</artifactId>
503
                <version>2.5.2</version>
504
                <scope>compile</scope>
505
            </dependency>
506
            <dependency>
507
                <groupId>org.jzkit</groupId>
508
                <artifactId>jzkit2-core</artifactId>
509
                <version>2.0.0</version>
510
                <scope>compile</scope>
511
            </dependency>
512
            <dependency>
513
                <groupId>org.jzkit</groupId>
514
                <artifactId>jzkit2-z3950</artifactId>
515
                <version>2.0.0</version>
516
                <scope>compile</scope>
517
            </dependency>
518
            <dependency>
519
                <groupId>org.jzkit</groupId>
520
                <artifactId>jzkit2-origin</artifactId>
521
                <version>2.0.0</version>
522
                <scope>compile</scope>
523
            </dependency>
524
            <dependency>
525
                <groupId>net.sf.kxml</groupId>
526
                <artifactId>kxml2</artifactId>
527
                <version>2.2.2</version>
528
                <scope>compile</scope>
529
            </dependency>
530
            <dependency>
531
                <groupId>log4j</groupId>
532
                <artifactId>log4j</artifactId>
533
                <version>1.2.14</version>
534
                <scope>compile</scope>
535
            </dependency>
536
            <dependency>
537
                <groupId>com.jgoodies</groupId>
538
                <artifactId>forms</artifactId>
539
                <version>1.0.7</version>
540
                <scope>compile</scope>
541
            </dependency>
542
            <dependency>
543
                <groupId>com.jgoodies</groupId>
544
                <artifactId>looks</artifactId>
545
                <version>2.1.4</version>
546
                <scope>compile</scope>
547
            </dependency>
548
            <dependency>
549
                <groupId>com.ostermiller</groupId>
550
                <artifactId>ostermillerutils</artifactId>
551
                <version>1.4.3</version>
552
                <scope>compile</scope>
553
            </dependency>
554
            <dependency>
555
                <groupId>mysql</groupId>
556
                <artifactId>mysql-connector-java</artifactId>
557
                <version>5.1.6</version>
558
                <scope>compile</scope>
559
            </dependency>
560
            <dependency>
561
      			<groupId>postgresql</groupId>
562
      			<artifactId>postgresql</artifactId>
563
      			<version>9.1-901.jdbc3</version>
564
      			<scope>compile</scope>
565
    		</dependency>
566
            <dependency>
567
                <groupId>es.unex</groupId>
568
                <artifactId>sextante</artifactId>
569
                <version>0.6.0</version>
570
                <scope>compile</scope>
571
            </dependency>
572
            <dependency>
573
                <groupId>es.unex</groupId>
574
                <artifactId>sextante_gui</artifactId>
575
                <version>0.6.0</version>
576
                <scope>compile</scope>
577
            </dependency>
578
            <dependency>
579
                <groupId>es.unex</groupId>
580
                <artifactId>sextante_wps</artifactId>
581
                <version>0.6.0</version>
582
                <scope>compile</scope>
583
            </dependency>
584
            <dependency>
585
                <groupId>es.unex</groupId>
586
                <artifactId>libMath</artifactId>
587
                <version>0.6.0</version>
588
                <scope>compile</scope>
589
            </dependency>
590
            <dependency>
591
                <groupId>es.unex</groupId>
592
                <artifactId>libDocEngines</artifactId>
593
                <version>0.6.0</version>
594
                <scope>compile</scope>
595
            </dependency>
596
            <dependency>
597
                <groupId>sil</groupId>
598
                <artifactId>sil</artifactId>
599
                <version>0.43b-am1</version>
600
                <scope>compile</scope>
601
            </dependency>
602
            <dependency>
603
                <groupId>org.slf4j</groupId>
604
                <artifactId>slf4j-api</artifactId>
605
                <version>1.5.5</version>
606
                <scope>compile</scope>
607
            </dependency>
608
            <dependency>
609
                <groupId>org.slf4j</groupId>
610
                <artifactId>slf4j-log4j12</artifactId>
611
                <version>1.5.5</version>
612
                <scope>runtime</scope>
613
            </dependency>
614
            <dependency>
615
                <groupId>net.sf.smc</groupId>
616
                <artifactId>smc</artifactId>
617
                <version>4.3</version>
618
                <scope>compile</scope>
619
            </dependency>
620
            <dependency>
621
                <groupId>soap</groupId>
622
                <artifactId>soap</artifactId>
623
                <version>2.3</version>
624
                <scope>compile</scope>
625
            </dependency>
626
            <dependency>
627
                <groupId>spatialindex</groupId>
628
                <artifactId>spatialindex</artifactId>
629
                <version>unknown</version>
630
                <scope>compile</scope>
631
            </dependency>
632
            <dependency>
633
                <groupId>org.springframework</groupId>
634
                <artifactId>spring</artifactId>
635
                <version>1.2.8</version>
636
                <scope>compile</scope>
637
            </dependency>
638
            <dependency>
639
                <groupId>net.sf</groupId>
640
                <artifactId>sqljep</artifactId>
641
                <version>0.2</version>
642
                <scope>compile</scope>
643
            </dependency>
644
            <dependency>
645
                <groupId>org.tmatesoft.svnkit</groupId>
646
                <artifactId>svnkit</artifactId>
647
                <version>1.3.3</version>
648
                <scope>compile</scope>
649
            </dependency>
650
            <dependency>
651
                <groupId>org.tmatesoft.svnkit</groupId>
652
                <artifactId>svnkit-cli</artifactId>
653
                <version>1.3.3</version>
654
                <scope>compile</scope>
655
            </dependency>
656
            <dependency>
657
                <groupId>tablelayout</groupId>
658
                <artifactId>TableLayout</artifactId>
659
                <version>20050920</version>
660
                <scope>compile</scope>
661
            </dependency>
662
            <dependency>
663
                <groupId>info.clearthought</groupId>
664
                <artifactId>TableLayout-bin-jdk1.5</artifactId>
665
                <version>2007-04-21</version>
666
                <scope>compile</scope>
667
            </dependency>
668
            <dependency>
669
                <groupId>net.sourceforge.thinlet</groupId>
670
                <artifactId>thinlet</artifactId>
671
                <version>2005-03-28</version>
672
                <scope>compile</scope>
673
            </dependency>
674
            <dependency>
675
                <groupId>gnu.trove</groupId>
676
                <artifactId>trove</artifactId>
677
                <version>0.1.8</version>
678
                <scope>compile</scope>
679
            </dependency>
680
            <dependency>
681
                <groupId>java3d</groupId>
682
                <artifactId>vecmath</artifactId>
683
                <version>1.3.1</version>
684
                <scope>compile</scope>
685
            </dependency>
686
            <dependency>
687
                <groupId>org.apache</groupId>
688
                <artifactId>xbean</artifactId>
689
                <version>2.2.0</version>
690
                <scope>compile</scope>
691
            </dependency>
692
            <dependency>
693
                <groupId>xerces</groupId>
694
                <artifactId>xercesImpl</artifactId>
695
                <version>2.5.0</version>
696
                <scope>compile</scope>
697
            </dependency>
698
            <dependency>
699
                <groupId>xml-apis</groupId>
700
                <artifactId>xml-apis-ext</artifactId>
701
                <version>1.3.04</version>
702
                <scope>compile</scope>
703
            </dependency>
704
            <dependency>
705
                <groupId>xmlpull</groupId>
706
                <artifactId>xmlpull</artifactId>
707
                <version>1.1.3.1</version>
708
                <scope>compile</scope>
709
            </dependency>
710
            <dependency>
711
                <groupId>zql</groupId>
712
                <artifactId>zql</artifactId>
713
                <version>unknown</version>
714
                <scope>compile</scope>
715
            </dependency>
716
            <dependency>
717
                <groupId>joda-time</groupId>
718
                <artifactId>joda-time</artifactId>
719
                <version>1.6</version>
720
                <scope>compile</scope>
721
            </dependency>
722
        </dependencies>
723
    </dependencyManagement>
724
    <dependencies>
725
        <dependency>
726
            <groupId>junit</groupId>
727
            <artifactId>junit</artifactId>
728
        </dependency>
729
        <dependency>
730
            <groupId>org.gvsig</groupId>
731
            <artifactId>org.gvsig.maven.base.tools</artifactId>
732
            <version>1.0.9</version>
733
        </dependency>
734
    </dependencies>
735
    <build>
736
        <pluginManagement>
737
            <plugins>
738
                <!-- This plugin is used to tell the eclipse m2e plugin to 
739
                    ignore some maven plugins unknown for it, that he shows as an error just 
740
                    in case they affect the eclipse project configuration -->
741
                <plugin>
742
                    <groupId>org.eclipse.m2e</groupId>
743
                    <artifactId>lifecycle-mapping</artifactId>
744
                    <version>1.0.0</version>
745
                    <configuration>
746
                        <lifecycleMappingMetadata>
747
                            <pluginExecutions>
748
                                <pluginExecution>
749
                                    <pluginExecutionFilter>
750
                                        <groupId>org.apache.maven.plugins</groupId>
751
                                        <artifactId>maven-dependency-plugin</artifactId>
752
                                        <versionRange>[2.0,)</versionRange>
753
                                        <goals>
754
                                            <goal>copy-dependencies</goal>
755
                                            <goal>unpack-dependencies</goal>
756
                                        </goals>
757
                                    </pluginExecutionFilter>
758
                                    <action>
759
                                        <ignore />
760
                                    </action>
761
                                </pluginExecution>
762
                                <pluginExecution>
763
                                    <pluginExecutionFilter>
764
                                        <groupId>org.codehaus.mojo</groupId>
765
                                        <artifactId>exec-maven-plugin</artifactId>
766
                                        <versionRange>[1.2,)</versionRange>
767
                                        <goals>
768
                                            <goal>exec</goal>
769
                                        </goals>
770
                                    </pluginExecutionFilter>
771
                                    <action>
772
                                        <ignore />
773
                                    </action>
774
                                </pluginExecution>
775
                                <pluginExecution>
776
                                    <pluginExecutionFilter>
777
                                        <groupId>org.codehaus.mojo</groupId>
778
                                        <artifactId>properties-maven-plugin</artifactId>
779
                                        <versionRange>[1.0-alpha-2,)</versionRange>
780
                                        <goals>
781
                                            <goal>read-project-properties</goal>
782
                                        </goals>
783
                                    </pluginExecutionFilter>
784
                                    <action>
785
                                        <ignore />
786
                                    </action>
787
                                </pluginExecution>
788
                                <pluginExecution>
789
                                    <pluginExecutionFilter>
790
                                        <groupId>org.gvsig</groupId>
791
                                        <artifactId>org.gvsig.installer.maven</artifactId>
792
                                        <versionRange>[1.0.0,)</versionRange>
793
                                        <goals>
794
                                            <goal>write-info</goal>
795
                                            <goal>create-package</goal>
796
                                            <goal>create-package-index</goal>
797
                                        </goals>
798
                                    </pluginExecutionFilter>
799
                                    <action>
800
                                        <ignore />
801
                                    </action>
802
                                </pluginExecution>
803
                            </pluginExecutions>
804
                        </lifecycleMappingMetadata>
805
                    </configuration>
806
                </plugin>
807
                <plugin>
808
                    <groupId>org.apache.maven.plugins</groupId>
809
                    <artifactId>maven-antrun-plugin</artifactId>
810
                    <version>1.3</version>
811
                    <dependencies>
812
                        <dependency>
813
                            <groupId>org.apache.ant</groupId>
814
                            <artifactId>ant-trax</artifactId>
815
                            <version>1.7.1</version>
816
                        </dependency>
817
                        <dependency>
818
                            <groupId>xalan</groupId>
819
                            <artifactId>xalan</artifactId>
820
                            <version>2.6.0</version>
821
                        </dependency>
822
                    </dependencies>
823
                </plugin>
824
                <plugin>
825
                    <groupId>org.apache.maven.plugins</groupId>
826
                    <artifactId>maven-clean-plugin</artifactId>
827
                    <version>2.4.1</version>
828
                </plugin>
829
                <plugin>
830
                    <groupId>org.apache.maven.plugins</groupId>
831
                    <artifactId>maven-dependency-plugin</artifactId>
832
                    <version>2.2</version>
833
                </plugin>
834
                <plugin>
835
                    <groupId>org.apache.maven.plugins</groupId>
836
                    <artifactId>maven-compiler-plugin</artifactId>
837
                    <version>2.0.2</version>
838
                    <configuration>
839
                        <source>1.5</source>
840
                        <target>1.5</target>
841
                        <encoding>ISO-8859-1</encoding>
842
                        <!--<failOnError>false</failOnError> -->
843
                    </configuration>
844
                </plugin>
845
                <plugin>
846
                    <groupId>org.apache.maven.plugins</groupId>
847
                    <artifactId>maven-resources-plugin</artifactId>
848
                    <version>2.5</version>
849
                    <configuration>
850
                        <encoding>ISO-8859-1</encoding>
851
                    </configuration>
852
                </plugin>
853
                <plugin>
854
                    <groupId>org.apache.maven.plugins</groupId>
855
                    <artifactId>maven-eclipse-plugin</artifactId>
856
                    <version>2.6</version>
857
                    <configuration>
858
                        <downloadSources>true</downloadSources>
859
                        <downloadJavadocs>true</downloadJavadocs>
860
                        <projectNameTemplate>${eclipse.project.name}</projectNameTemplate>
861
                    </configuration>
862
                </plugin>
863
                <plugin>
864
                    <groupId>org.apache.maven.plugins</groupId>
865
                    <artifactId>maven-source-plugin</artifactId>
866
                    <version>2.1.2</version>
867
                </plugin>
868
                <plugin>
869
                    <groupId>org.apache.maven.plugins</groupId>
870
                    <artifactId>maven-checkstyle-plugin</artifactId>
871
                    <version>2.6</version>
872
                </plugin>
873
                <plugin>
874
                    <groupId>org.apache.maven.plugins</groupId>
875
                    <artifactId>maven-surefire-plugin</artifactId>
876
                    <version>2.4.3</version>
877
                    <configuration>
878
                        <forkMode>once</forkMode>
879
                        <environmentVariables>
880
                            <DYLD_FRAMEWORK_PATH>${user.home}/.depman/Frameworks</DYLD_FRAMEWORK_PATH>
881
                            <DYLD_LIBRARY_PATH>${user.home}/.depman/lib</DYLD_LIBRARY_PATH>
882
                            <GDAL_DATA>${user.home}/.depman/data/gdal</GDAL_DATA>
883
                            <LD_LIBRARY_PATH>${user.home}/.depman/lib</LD_LIBRARY_PATH>
884
                            <PATH>${user.home}/.depman/bin${path.separator}${env.PATH}</PATH>
885
                            <PROJ_LIB>${gvsig.install.dir}/product/gvSIG/extensiones/org.gvsig.crs.extension/data</PROJ_LIB>
886
                        </environmentVariables>
887
                    </configuration>
888
                </plugin>
889
                <plugin>
890
                    <groupId>org.apache.maven.plugins</groupId>
891
                    <artifactId>maven-failsafe-plugin</artifactId>
892
                    <version>2.12</version>
893
                    <executions>
894
                        <execution>
895
                            <goals>
896
                                <goal>integration-test</goal>
897
                                <goal>verify</goal>
898
                            </goals>
899
                        </execution>
900
                    </executions>
901
                    <configuration>
902
                        <forkMode>once</forkMode>
903
                        <environmentVariables>
904
                            <DYLD_FRAMEWORK_PATH>${user.home}/.depman/Frameworks</DYLD_FRAMEWORK_PATH>
905
                            <DYLD_LIBRARY_PATH>${user.home}/.depman/lib</DYLD_LIBRARY_PATH>
906
                            <GDAL_DATA>${user.home}/.depman/data/gdal</GDAL_DATA>
907
                            <LD_LIBRARY_PATH>${user.home}/.depman/lib</LD_LIBRARY_PATH>
908
                            <PATH>${user.home}/.depman/bin${path.separator}${env.PATH}</PATH>
909
                            <PROJ_LIB>${gvsig.install.dir}/product/gvSIG/extensiones/org.gvsig.crs.extension/data</PROJ_LIB>
910
                        </environmentVariables>
911
                    </configuration>
912
                </plugin>
913
                <plugin>
914
                    <groupId>org.apache.maven.plugins</groupId>
915
                    <artifactId>maven-javadoc-plugin</artifactId>
916
                    <version>2.7</version>
917
                    <configuration>
918
                        <docTitle>${project.name} ${project.version}</docTitle>
919
                        <encoding>ISO-8859-1</encoding>
920
                        <footer />
921
                        <header />
922
                        <keywords>true</keywords>
923
                        <detectLinks>true</detectLinks>
924
                        <javaApiLinks>
925
                            <property>
926
                                <name>api_1.4</name>
927
                                <value>http://download.oracle.com/javase/1.4.2/docs/api/</value>
928
                            </property>
929
                            <property>
930
                                <name>api_1.5</name>
931
                                <value>http://download.oracle.com/javase/1.5.0/docs/api/</value>
932
                            </property>
933
                            <property>
934
                                <name>api_1.6</name>
935
                                <value>http://download.oracle.com/javase/6/docs/api/</value>
936
                            </property>
937
                        </javaApiLinks>
938
                    </configuration>
939
                </plugin>
940
                <plugin>
941
                    <groupId>org.apache.maven.plugins</groupId>
942
                    <artifactId>maven-site-plugin</artifactId>
943
                    <version>2.1.1</version>
944
                    <configuration>
945
                        <chmod>true</chmod>
946
                        <chmodMode>a+rwX</chmodMode>
947
                    </configuration>
948
                </plugin>
949
                <plugin>
950
                    <groupId>org.apache.maven.plugins</groupId>
951
                    <artifactId>maven-release-plugin</artifactId>
952
                    <version>2.1</version>
953
                </plugin>
954
                <plugin>
955
                    <groupId>org.apache.maven.plugins</groupId>
956
                    <artifactId>maven-jar-plugin</artifactId>
957
                    <version>2.2</version>
958
                    <configuration>
959
                        <archive>
960
                            <manifestEntries>
961
                                <Built-By>gvSIG Team</Built-By>
962
                            </manifestEntries>
963
                            <!-- <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> 
964
                                <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> -->
965
                        </archive>
966
                    </configuration>
967
                </plugin>
968
                <plugin>
969
                    <groupId>org.codehaus.mojo</groupId>
970
                    <artifactId>exec-maven-plugin</artifactId>
971
                    <version>1.2</version>
972
                </plugin>
973
                <plugin>
974
                    <groupId>org.codehaus.mojo</groupId>
975
                    <artifactId>properties-maven-plugin</artifactId>
976
                    <version>1.0-alpha-2</version>
977
                </plugin>
978
                <plugin>
979
                    <groupId>org.codehaus.mojo</groupId>
980
                    <artifactId>animal-sniffer-maven-plugin</artifactId>
981
                    <version>1.7</version>
982
                </plugin>
983
                <plugin>
984
                    <groupId>com.mycila.maven-license-plugin</groupId>
985
                    <artifactId>maven-license-plugin</artifactId>
986
                    <version>1.10.b1</version>
987
                </plugin>
988
            </plugins>
989
        </pluginManagement>
990
        <plugins>
991
            <plugin>
992
                <groupId>org.apache.maven.plugins</groupId>
993
                <artifactId>maven-checkstyle-plugin</artifactId>
994
                <dependencies>
995
                    <!-- <dependency> <groupId>checkstyle</groupId> <artifactId>checkstyle</artifactId> 
996
                        <version>5.0</version> </dependency> -->
997
                    <dependency>
998
                        <groupId>org.gvsig</groupId>
999
                        <artifactId>org.gvsig.maven.base.tools</artifactId>
1000
                        <version>1.0.9-SNAPSHOT</version>
1001
                    </dependency>
1002
                </dependencies>
1003
            </plugin>
1004
            <plugin>
1005
                <groupId>org.apache.maven.plugins</groupId>
1006
                <artifactId>maven-dependency-plugin</artifactId>
1007
                <executions>
1008
                    <execution>
1009
                        <id>unpack-build-tools</id>
1010
                        <phase>generate-sources</phase>
1011
                        <goals>
1012
                            <goal>unpack-dependencies</goal>
1013
                        </goals>
1014
                        <configuration>
1015
                            <includeArtifactIds>org.gvsig.maven.base.tools</includeArtifactIds>
1016
                            <outputDirectory>${project.build.directory}/org.gvsig.maven.base.tools</outputDirectory>
1017
                            <overWriteIfNewer>true</overWriteIfNewer>
1018
                            <overWriteReleases>false</overWriteReleases>
1019
                            <overWriteSnapshots>true</overWriteSnapshots>
1020
                        </configuration>
1021
                    </execution>
1022
                </executions>
1023
            </plugin>
1024
            <plugin>
1025
                <groupId>org.apache.maven.plugins</groupId>
1026
                <artifactId>maven-source-plugin</artifactId>
1027
                <executions>
1028
                    <execution>
1029
                        <id>attach-sources</id>
1030
                        <phase>verify</phase>
1031
                        <goals>
1032
                            <goal>jar-no-fork</goal>
1033
                        </goals>
1034
                    </execution>
1035
                    <execution>
1036
                        <id>attach-test-sources</id>
1037
                        <phase>verify</phase>
1038
                        <goals>
1039
                            <goal>test-jar-no-fork</goal>
1040
                        </goals>
1041
                    </execution>
1042
                </executions>
1043
            </plugin>
1044
            <plugin>
1045
                <groupId>org.codehaus.mojo</groupId>
1046
                <artifactId>animal-sniffer-maven-plugin</artifactId>
1047
                <executions>
1048
                    <execution>
1049
                        <id>check-java-api</id>
1050
                        <phase>package</phase>
1051
                        <goals>
1052
                            <goal>check</goal>
1053
                        </goals>
1054
                        <configuration>
1055
                            <signature>
1056
                                <groupId>org.codehaus.mojo.signature</groupId>
1057
                                <artifactId>java15</artifactId>
1058
                                <version>1.0</version>
1059
                            </signature>
1060
                            <ignores>
1061
                                <ignore>net.sourceforge.cobertura.coveragedata.TouchCollector</ignore>
1062
                            </ignores>
1063
                        </configuration>
1064
                    </execution>
1065
                </executions>
1066
            </plugin>
1067
            <plugin>
1068
                <groupId>com.mycila.maven-license-plugin</groupId>
1069
                <artifactId>maven-license-plugin</artifactId>
1070
                <configuration>
1071
                    <header>gvsig.header</header>
1072
                    <strictCheck>true</strictCheck>
1073
                    <encoding>ISO-8859-1</encoding>
1074
                    <mapping>
1075
                        <pom>XML_STYLE</pom>
1076
                    </mapping>
1077
                    <excludes>
1078
                        <exclude>**/CMakeLists.txt</exclude>
1079
                        <exclude>**/buildNumber.properties</exclude>
1080
                    </excludes>
1081
                </configuration>
1082
                <dependencies>
1083
                    <dependency>
1084
                        <groupId>org.gvsig</groupId>
1085
                        <artifactId>org.gvsig.maven.base.tools</artifactId>
1086
                        <version>1.0.9-SNAPSHOT</version>
1087
                    </dependency>
1088
                </dependencies>
1089
            </plugin>
1090
        </plugins>
1091
    </build>
1092
    <profiles>
1093
        <profile>
1094
            <id>release</id>
1095
            <activation>
1096
                <activeByDefault>true</activeByDefault>
1097
            </activation>
1098
            <build>
1099
                <plugins>
1100
                    <plugin>
1101
                        <groupId>org.apache.maven.plugins</groupId>
1102
                        <artifactId>maven-javadoc-plugin</artifactId>
1103

  
1104
                        <executions>
1105
                            <execution>
1106
                                <id>attach-javadocs</id>
1107
                                <goals>
1108
                                    <goal>jar</goal>
1109
                                </goals>
1110
                            </execution>
1111
                        </executions>
1112
                    </plugin>
1113
                </plugins>
1114
            </build>
1115
        </profile>
1116

  
1117
        <profile>
1118
            <id>windows-profile</id>
1119
            <activation>
1120
                <os>
1121
                    <family>windows</family>
1122
                </os>
1123
            </activation>
1124
            <build>
1125
                <plugins>
1126
                    <plugin>
1127
                        <groupId>org.apache.maven.plugins</groupId>
1128
                        <artifactId>maven-dependency-plugin</artifactId>
1129
                        <executions>
1130
                            <execution>
1131
                                <id>unpack-dependencies</id>
1132
                                <phase>generate-sources</phase>
1133
                                <goals>
1134
                                    <goal>unpack-dependencies</goal>
1135
                                </goals>
1136
                                <configuration>
1137
                                    <includeTypes>tar.gz</includeTypes>
1138
                                    <outputDirectory>${user.home}/.depman</outputDirectory>
1139
                                    <overWriteReleases>true</overWriteReleases>
1140
                                    <overWriteSnapshots>true</overWriteSnapshots>
1141
                                </configuration>
1142
                            </execution>
1143
                        </executions>
1144
                    </plugin>
1145
                </plugins>
1146
            </build>
1147
        </profile>
1148
        <profile>
1149
            <id>linux-profile</id>
1150
            <activation>
1151
                <os>
1152
                    <family>linux</family>
1153
                </os>
1154
            </activation>
1155
            <build>
1156
                <plugins>
1157
                    <plugin>
1158
                        <groupId>org.apache.maven.plugins</groupId>
1159
                        <artifactId>maven-dependency-plugin</artifactId>
1160
                        <executions>
1161
                            <execution>
1162
                                <id>copy-dependencies</id>
1163
                                <phase>generate-sources</phase>
1164
                                <goals>
1165
                                    <goal>copy-dependencies</goal>
1166
                                </goals>
1167
                                <configuration>
1168
                                    <includeTypes>tar.gz</includeTypes>
1169
                                    <outputDirectory>${user.home}/.depman/orig</outputDirectory>
1170
                                    <overWriteIfNewer>true</overWriteIfNewer>
1171
                                </configuration>
1172
                            </execution>
1173
                        </executions>
1174
                    </plugin>
1175
                    <plugin>
1176
                        <groupId>org.codehaus.mojo</groupId>
1177
                        <artifactId>exec-maven-plugin</artifactId>
1178
                        <executions>
1179
                            <execution>
1180
                                <id>unpack-dependencies</id>
1181
                                <phase>generate-sources</phase>
1182
                                <goals>
1183
                                    <goal>exec</goal>
1184
                                </goals>
1185
                                <configuration>
1186
                                    <executable>sh</executable>
1187
                                    <arguments>
1188
                                        <argument>${project.build.directory}/org.gvsig.maven.base.tools/bash/unpack-dependencies.sh</argument>
1189
                                        <argument>${user.home}/.depman/orig</argument>
1190
                                        <argument>${user.home}/.depman</argument>
1191
                                    </arguments>
1192
                                </configuration>
1193
                            </execution>
1194
                        </executions>
1195
                    </plugin>
1196
                </plugins>
1197
            </build>
1198
        </profile>
1199
        <profile>
1200
            <id>mac-profile</id>
1201
            <activation>
1202
                <os>
1203
                    <family>mac</family>
1204
                </os>
1205
            </activation>
1206
            <build>
1207
                <plugins>
1208
                    <plugin>
1209
                        <groupId>org.apache.maven.plugins</groupId>
1210
                        <artifactId>maven-dependency-plugin</artifactId>
1211
                        <executions>
1212
                            <execution>
1213
                                <id>copy-dependencies</id>
1214
                                <phase>generate-sources</phase>
1215
                                <goals>
1216
                                    <goal>copy-dependencies</goal>
1217
                                </goals>
1218
                                <configuration>
1219
                                    <includeTypes>tar.gz</includeTypes>
1220
                                    <outputDirectory>${user.home}/.depman/orig</outputDirectory>
1221
                                    <overWriteIfNewer>true</overWriteIfNewer>
1222
                                </configuration>
1223
                            </execution>
1224
                        </executions>
1225
                    </plugin>
1226
                    <plugin>
1227
                        <groupId>org.codehaus.mojo</groupId>
1228
                        <artifactId>exec-maven-plugin</artifactId>
1229
                        <executions>
1230
                            <execution>
1231
                                <id>unpack-dependencies</id>
1232
                                <phase>generate-sources</phase>
1233
                                <goals>
1234
                                    <goal>exec</goal>
1235
                                </goals>
1236
                                <configuration>
1237
                                    <executable>sh</executable>
1238
                                    <arguments>
1239
                                        <argument>${project.build.directory}/org.gvsig.maven.base.tools/bash/unpack-dependencies.sh</argument>
1240
                                        <argument>${user.home}/.depman/orig</argument>
1241
                                        <argument>${user.home}/.depman</argument>
1242
                                    </arguments>
1243
                                </configuration>
1244
                            </execution>
1245
                        </executions>
1246
                    </plugin>
1247
                </plugins>
1248
            </build>
1249
        </profile>
1250
        <profile>
1251
            <id>eclipse-project</id>
1252
            <build>
1253
                <defaultGoal>eclipse:eclipse</defaultGoal>
1254
            </build>
1255
        </profile>
1256
    </profiles>
1257
    <reporting>
1258
        <plugins>
1259
            <plugin>
1260
                <groupId>org.apache.maven.plugins</groupId>
1261
                <artifactId>maven-checkstyle-plugin</artifactId>
1262
                <version>2.6</version>
1263
                <configuration>
1264
                    <configLocation>checkstyle/checkstyle_gvsig.xml</configLocation>
1265
                    <headerLocation>checkstyle/gvsig.header</headerLocation>
1266
                    <propertyExpansion>
1267
                        basedir=${basedir}
1268
                    </propertyExpansion>
1269
                </configuration>
1270
            </plugin>
1271
            <plugin>
1272
                <groupId>org.apache.maven.plugins</groupId>
1273
                <artifactId>maven-javadoc-plugin</artifactId>
1274
                <version>2.7</version>
1275
                <configuration>
1276
                    <docTitle>${project.name} ${project.version}</docTitle>
1277
                    <encoding>ISO-8859-1</encoding>
1278
                    <footer />
1279
                    <header />
1280
                    <keywords>true</keywords>
1281
                    <detectLinks>true</detectLinks>
1282
                    <javaApiLinks>
1283
                        <property>
1284
                            <name>api_1.4</name>
1285
                            <value>http://download.oracle.com/javase/1.4.2/docs/api/</value>
1286
                        </property>
1287
                        <property>
1288
                            <name>api_1.5</name>
1289
                            <value>http://download.oracle.com/javase/1.5.0/docs/api/</value>
1290
                        </property>
1291
                        <property>
1292
                            <name>api_1.6</name>
1293
                            <value>http://download.oracle.com/javase/6/docs/api/</value>
1294
                        </property>
1295
                    </javaApiLinks>
1296
                </configuration>
1297
            </plugin>
1298
            <plugin>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff