-
Notifications
You must be signed in to change notification settings - Fork 22
/
pom.xml
535 lines (526 loc) · 16.2 KB
/
pom.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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">
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>58</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>commons-jelly</groupId>
<artifactId>commons-jelly-parent</artifactId>
<version>1.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache Commons Jelly Parent</name>
<description>Parent pom for Apache Commons Jelly</description>
<modules>
<module>core</module>
<module>jelly-tags</module>
</modules>
<url>http://commons.apache.org/proper/commons-jelly/</url>
<inceptionYear>2002</inceptionYear>
<organization>
<name>The Apache Software Foundation</name>
<url>http://commons.apache.org/</url>
</organization>
<mailingLists>
<mailingList>
<name>Commons Dev List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<archive>http://mail-archives.apache.org/mod_mbox/commons-dev/</archive>
</mailingList>
<mailingList>
<name>Commons User List</name>
<subscribe>[email protected]</subscribe>
<unsubscribe>[email protected]</unsubscribe>
<archive>http://mail-archives.apache.org/mod_mbox/commons-user/</archive>
</mailingList>
</mailingLists>
<properties>
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<!--
This is also used to generate download_xxx file name.
To override this when generating the download page:
mvn commons:download-page -Dcommons.componentid=lang
The above seems to change the download page name but not any other
properties that depend on the componentid.
-->
<commons.componentid>jelly</commons.componentid>
<!-- Current 3.x release series -->
<commons.release.version>1.1</commons.release.version>
<commons.release.desc>(Java 8 or above)</commons.release.desc>
<commons.jira.id>JELLY</commons.jira.id>
<commons.jira.pid>10012</commons.jira.pid>
<commons.site.path>jelly</commons.site.path>
<commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-jelly</commons.scmPubUrl>
<commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory>
<commons.encoding>utf-8</commons.encoding>
<!-- Override clirr version to be able to build the site on Java 8 -->
<commons.clirr.version>2.8</commons.clirr.version>
<checkstyle.plugin.version>2.17</checkstyle.plugin.version>
</properties>
<developers>
<developer>
<id>jstrachan</id>
<name>James Strachan</name>
<email>[email protected]</email>
<organization>SpiritSoft, Inc.</organization>
</developer>
<developer>
<id>geirm</id>
<name>Geir Magnusson Jr.</name>
<email>[email protected]</email>
<organization>Adeptra, Inc.</organization>
</developer>
<developer>
<id>werken</id>
<name>Bob McWhirter</name>
<email>[email protected]</email>
<organization>The Werken Company</organization>
</developer>
<developer>
<id>dion</id>
<name>dIon Gillard</name>
<email>[email protected]</email>
<organization>Multitask Consulting</organization>
<roles>
<role>Interested party</role>
</roles>
</developer>
<developer>
<id>morgand</id>
<name>Morgan Delagrange</name>
<email>[email protected]</email>
</developer>
<developer>
<id>rwaldhoff</id>
<name>Rodney Waldhoff</name>
<email>[email protected]</email>
</developer>
<developer>
<id>proyal</id>
<name>Peter Royal</name>
<email>[email protected]</email>
</developer>
<developer>
<id>mvdb</id>
<name>Martin van den Bemt</name>
<email>[email protected]</email>
</developer>
<developer>
<id>polx</id>
<name>Paul Libbrecht</name>
<email>[email protected]</email>
</developer>
<developer>
<id>rdonkin</id>
<name>Robert Burrell Donkin</name>
<email>[email protected]</email>
</developer>
<developer>
<id>dfs</id>
<name>Daniel F. Savarese</name>
<email>dfs -> apache.org</email>
</developer>
<developer>
<id>brett</id>
<name>Brett Porter</name>
<email>[email protected]</email>
</developer>
<developer>
<id>hgilde</id>
<name>Hans Gilde</name>
<email>[email protected]</email>
</developer>
<developer>
<id>chtompki</id>
<name>Rob Tompkins</name>
<email>[email protected]</email>
</developer>
</developers>
<contributors>
<contributor>
<name>Erik Fransen</name>
<email>[email protected]</email>
<roles>
<role>Logo designer</role>
</roles>
</contributor>
<contributor>
<name>Calvin Yu</name>
</contributor>
<contributor>
<name>Stephen Haberman</name>
<email>[email protected]</email>
</contributor>
<contributor>
<name>Vinay Chandran</name>
<email>[email protected]</email>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Theo Niemeijer</name>
</contributor>
<contributor>
<name>Joe Walnes</name>
<email>[email protected]</email>
<organization>ThoughtWorks, Inc.</organization>
<roles>
<role>Inventor of Mock Tags</role>
</roles>
</contributor>
<contributor>
<name>Otto von Wachter</name>
<email>[email protected]</email>
<organization></organization>
<roles>
<role>Author of the tutorials</role>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Robert Leftwich</name>
<email>[email protected]</email>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Jim Birchfield</name>
<email>[email protected]</email>
<organization>Genscape, Inc.</organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Jason Horman</name>
<email>[email protected]</email>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Tim Anderson</name>
<email>[email protected]</email>
<organization>Intalio, Inc.</organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Theo Niemeijer</name>
<email>[email protected]</email>
<organization></organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>J. Matthew Pryor</name>
<email>[email protected]</email>
<organization></organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Knut Wannheden</name>
<email></email>
<organization></organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Kelvin Tan</name>
<email></email>
<organization></organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Todd Jonker</name>
<email></email>
<organization></organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Christiaan ten Klooster</name>
<email></email>
<organization></organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>Pete Kazmier</name>
<email>[email protected]</email>
<organization></organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>John Spackman</name>
<email>[email protected]</email>
<organization>Zenesis Limited</organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>John Spackman</name>
<email>[email protected]</email>
<organization>Zenesis Limited</organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
<contributor>
<name>John Spackman</name>
<email>[email protected]</email>
<organization>Zenesis Limited</organization>
<roles>
<role>Developer</role>
</roles>
</contributor>
</contributors>
<issueManagement>
<url>http://issues.apache.org/jira/browse/JELLY</url>
</issueManagement>
<scm>
<connection>scm:git:https://gitbox.apache.org/repos/asf/commons-jelly</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/commons-jelly</developerConnection>
<url>https://gitbox.apache.org/repos/asf/commons-jelly</url>
</scm>
<ciManagement>
<notifiers>
<notifier>
<configuration>
<address>[email protected]</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
<build>
<defaultGoal>clean verify javadoc:javadoc</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<debug>true</debug>
<optimize>false</optimize>
<showDeprecation>true</showDeprecation>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.source}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
<X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK>
<X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<moduleExcludes>
<xdoc>navigation.xml,changes.xml</xdoc>
</moduleExcludes>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>default</id>
<name>Default Repository</name>
<url>people.apache.org//www/people.apache.org/builds/commons/${pom.artifactId.substring(8)}/</url>
</repository>
<site>
<id>default</id>
<name>Default Site</name>
<url>scp://people.apache.org/www/commons.apache.org/${pom.artifactId.substring(8)}/</url>
</site>
</distributionManagement>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>commons-discovery</groupId>
<artifactId>commons-discovery</artifactId>
<version>20030211.213356</version>
</dependency>
<dependency>
<groupId>forehead</groupId>
<artifactId>forehead</artifactId>
<version>1.0-beta-5</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<groupId>commons-jexl</groupId>
<artifactId>commons-jexl</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.1.6</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.2.1</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
<configuration>
<issueLinkTemplate>http://issues.apache.org/jira/browse/%ISSUE%</issueLinkTemplate>
<xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>jelly-tags/tag-checkstyle.xml</configLocation>
<headerLocation>${basedir}/checkstyle-header.txt</headerLocation>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jvnet.maven-jellydoc-plugin</groupId>
<artifactId>maven-jellydoc-plugin</artifactId>
<version>1.4</version>
</plugin>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<!-- Plugin doesn't work with maven 3
<plugin>
<groupId>maven</groupId>
<artifactId>maven-multichanges-plugin</artifactId>
<version>1.3</version>
</plugin>
-->
<!-- Plugin doesn't work with maven 3
<plugin>
<groupId>maven</groupId>
<artifactId>maven-multiproject-plugin</artifactId>
<version>1.5.1</version>
</plugin>
-->
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>deactivate-javadoc-lint</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
</project>