Newer
Older
<?xml version="1.0" encoding="UTF-8"?>
<!--
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.xwiki.platform</groupId>
<artifactId>xwiki-platform</artifactId>
<version>17.0.0-SNAPSHOT</version>
<artifactId>xwiki-platform-core</artifactId>
<name>XWiki Platform - Core - Parent POM</name>
<packaging>pom</packaging>
<description>XWiki Platform - Core - Parent POM</description>
Marius Dumitru Florea
committed
<properties>
Vincent Massol
committed
<!-- JS/CSS minification is on by default, this property is used in order to able to skip minification when the
debug profile is active. It can also be used from the command line to skip minification -->
<xwiki.minification.skip>false</xwiki.minification.skip>
Clément Aubin
committed
<!-- Define here extension features that will be used within some modules and their legacy versions -->
<!-- Extension features of xwiki-platform-oldcore -->
<xwiki.platform.oldcore.extension.features>
<!-- Old names of this module used for retro compatibility when resolving dependencies of old extensions -->
com.xpn.xwiki.platform:xwiki-core,
<!-- The old org.xwiki.platform:xwiki-platform-filter-instance-oldcore has been merged with oldcore -->
org.xwiki.platform:xwiki-platform-filter-instance-oldcore,
<!-- A contrib extension to use with versions of oldcore which does not support authservice API -->
org.xwiki.contrib:authservice-backport-api,
org.xwiki.contrib:authservice-backport-default
</xwiki.platform.oldcore.extension.features>
Marius Dumitru Florea
committed
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<!-- Use the manifest file generated by the OSGi Maven Bundle Plugin -->
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
Marius Dumitru Florea
committed
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Vincent Massol
committed
<dependencies>
<dependency>
<groupId>org.xwiki.commons</groupId>
<artifactId>xwiki-commons-tool-test-simple</artifactId>
Vincent Massol
committed
</dependency>
</dependencies>
Marius Dumitru Florea
committed
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- Generate OSGi Manifest information to all XWiki Core JARs -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
Vincent Massol
committed
<plugin>
<groupId>org.revapi</groupId>
<artifactId>revapi-maven-plugin</artifactId>
<configuration>
Vincent Massol
committed
<analysisConfiguration>
<revapi.filter>
<archives>
<!-- We're ignoring all API incompatibilities from XWiki dependencies (i.e. commons and rendering)
since they're already covered by their own builds and we release all of them together. -->
<exclude>
<item>org\.xwiki\.commons:.*:.*</item>
<item>org\.xwiki\.rendering:.*:.*</item>
</exclude>
</archives>
</revapi.filter>
<!-- Add ignores here using the following syntax. You can use a single <revapi.differences> entry but it
cannot be empty. You can also use different <revapi.differences> entries if you wish to use a common
justification for example (see example below).
By default criticality is set to "error" if not specified.
See https://revapi.org/revapi/configuration.html#_criticality for more.
Vincent Massol
committed
Note: you can use regexes by using the syntax: <regex>true</regex>
Marius Dumitru Florea
committed
Don't forget to '\'-escape dots and other special characters in this case ;)
Common justification example:
<revapi.differences>
<justification>This change is necessary to fix bug #1234</justification>
<criticality>highlight</criticality>
<differences>
<item>
<code>java.method.addToInterface</code>
<fullQualifiedClassName>com.acme.ToolInterface</fullyQualifiedClassName>
<new>method void com.acme.ToolInterface::setup()</new>
</item>
<item>
<code>java.method.removed</code>
<fullQualifiedClassName>com.acme.ToolInterface</fullyQualifiedClassName>
<old>method void com.acme.ToolInterface::initialize()</old>
<justification>...</justification>
</item>
</differences>
</revapi.differences>
<revapi.differences>
... other difference group here...
</revapi.differences>
Single justification example:
Simon Urli
committed
-->
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
<revapi.differences>
<justification>
For security reasons, it is necessary to drop the dependency on version 1 of ROME. Unfortunately, this
dependency is exposed in APIs. As these APIs should mainly be used by scripts and the new version
provides largely identical classes only with other package names, in practice this shouldn't cause any
real breakage.
</justification>
<criticality>highlight</criticality>
<differences>
<item>
<code>java.method.parameterTypeChanged</code>
<old>parameter int com.xpn.xwiki.plugin.feed.FeedPlugin.SyndEntryComparator::compare(===com.sun.syndication.feed.synd.SyndEntry===, com.sun.syndication.feed.synd.SyndEntry)</old>
<new>parameter int com.xpn.xwiki.plugin.feed.FeedPlugin.SyndEntryComparator::compare(===com.rometools.rome.feed.synd.SyndEntry===, com.rometools.rome.feed.synd.SyndEntry)</new>
<parameterIndex>0</parameterIndex>
</item>
<item>
<code>java.method.parameterTypeChanged</code>
<old>parameter int com.xpn.xwiki.plugin.feed.FeedPlugin.SyndEntryComparator::compare(com.sun.syndication.feed.synd.SyndEntry, ===com.sun.syndication.feed.synd.SyndEntry===)</old>
<new>parameter int com.xpn.xwiki.plugin.feed.FeedPlugin.SyndEntryComparator::compare(com.rometools.rome.feed.synd.SyndEntry, ===com.rometools.rome.feed.synd.SyndEntry===)</new>
<parameterIndex>1</parameterIndex>
</item>
<item>
<code>java.class.noLongerImplementsInterface</code>
<old>class com.xpn.xwiki.plugin.feed.FeedPlugin.SyndEntryComparator</old>
<new>class com.xpn.xwiki.plugin.feed.FeedPlugin.SyndEntryComparator</new>
<interface>java.util.Comparator<com.sun.syndication.feed.synd.SyndEntry></interface>
</item>
<item>
<code>java.class.superTypeTypeParametersChanged</code>
<old>class com.xpn.xwiki.plugin.feed.FeedPlugin.SyndEntryComparator</old>
<new>class com.xpn.xwiki.plugin.feed.FeedPlugin.SyndEntryComparator</new>
<oldSuperType>java.util.Comparator<com.sun.syndication.feed.synd.SyndEntry></oldSuperType>
<newSuperType>java.util.Comparator<com.rometools.rome.feed.synd.SyndEntry></newSuperType>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(com.xpn.xwiki.XWikiContext)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(com.xpn.xwiki.XWikiContext)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, com.xpn.xwiki.XWikiContext) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, com.xpn.xwiki.XWikiContext) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, boolean, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, boolean, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.util.List<java.lang.Object>, com.xpn.xwiki.plugin.feed.SyndEntrySource, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.util.List<java.lang.Object>, com.xpn.xwiki.plugin.feed.SyndEntrySource, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.util.List<java.lang.Object>, com.xpn.xwiki.plugin.feed.SyndEntrySource, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.util.List<java.lang.Object>, com.xpn.xwiki.plugin.feed.SyndEntrySource, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, int, int, com.xpn.xwiki.plugin.feed.SyndEntrySource, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, int, int, com.xpn.xwiki.plugin.feed.SyndEntrySource, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, int, int, com.xpn.xwiki.plugin.feed.SyndEntrySource, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeed(java.lang.String, int, int, com.xpn.xwiki.plugin.feed.SyndEntrySource, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndEntry com.xpn.xwiki.plugin.feed.FeedPlugin::getFeedEntry(com.xpn.xwiki.XWikiContext)</old>
<new>method com.rometools.rome.feed.synd.SyndEntry com.xpn.xwiki.plugin.feed.FeedPlugin::getFeedEntry(com.xpn.xwiki.XWikiContext)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeedForce(java.lang.String, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeedForce(java.lang.String, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndImage com.xpn.xwiki.plugin.feed.FeedPlugin::getFeedImage(com.xpn.xwiki.XWikiContext)</old>
<new>method com.rometools.rome.feed.synd.SyndImage com.xpn.xwiki.plugin.feed.FeedPlugin::getFeedImage(com.xpn.xwiki.XWikiContext)</new>
</item>
<item>
<code>java.method.parameterTypeChanged</code>
<old>parameter java.lang.String com.xpn.xwiki.plugin.feed.FeedPlugin::getFeedOutput(===com.sun.syndication.feed.synd.SyndFeed===, java.lang.String, com.xpn.xwiki.XWikiContext)</old>
<new>parameter java.lang.String com.xpn.xwiki.plugin.feed.FeedPlugin::getFeedOutput(===com.rometools.rome.feed.synd.SyndFeed===, java.lang.String, com.xpn.xwiki.XWikiContext)</new>
<parameterIndex>0</parameterIndex>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeeds(java.lang.String, com.xpn.xwiki.XWikiContext) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeeds(java.lang.String, com.xpn.xwiki.XWikiContext) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeeds(java.lang.String, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeeds(java.lang.String, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeeds(java.lang.String, boolean, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPlugin::getFeeds(java.lang.String, boolean, boolean, com.xpn.xwiki.XWikiContext) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getArticleFeed(java.util.List<java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getArticleFeed(java.util.List<java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getArticleFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getArticleFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getArticleFeed(java.lang.String, int, int)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getArticleFeed(java.lang.String, int, int)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getArticleFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getArticleFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.util.List<java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.util.List<java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.lang.String, int, int)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.lang.String, int, int)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.lang.String, int, int, java.lang.String, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getBlogFeed(java.lang.String, int, int, java.lang.String, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndImage com.xpn.xwiki.plugin.feed.FeedPluginApi::getDefaultFeedImage()</old>
<new>method com.rometools.rome.feed.synd.SyndImage com.xpn.xwiki.plugin.feed.FeedPluginApi::getDefaultFeedImage()</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getDocumentFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getDocumentFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getDocumentFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getDocumentFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getDocumentFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getDocumentFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getDocumentFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getDocumentFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed()</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed()</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String, boolean) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String, boolean) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String, boolean, boolean) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String, boolean, boolean) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.util.List<java.lang.Object>, com.xpn.xwiki.plugin.feed.SyndEntrySourceApi, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.util.List<java.lang.Object>, com.xpn.xwiki.plugin.feed.SyndEntrySourceApi, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.util.List<java.lang.Object>, com.xpn.xwiki.plugin.feed.SyndEntrySourceApi, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.util.List<java.lang.Object>, com.xpn.xwiki.plugin.feed.SyndEntrySourceApi, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String, int, int, com.xpn.xwiki.plugin.feed.SyndEntrySourceApi, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String, int, int, com.xpn.xwiki.plugin.feed.SyndEntrySourceApi, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String, int, int, com.xpn.xwiki.plugin.feed.SyndEntrySourceApi, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeed(java.lang.String, int, int, com.xpn.xwiki.plugin.feed.SyndEntrySourceApi, java.util.Map<java.lang.String, java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndEntry com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeedEntry()</old>
<new>method com.rometools.rome.feed.synd.SyndEntry com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeedEntry()</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndImage com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeedImage()</old>
<new>method com.rometools.rome.feed.synd.SyndImage com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeedImage()</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndImage com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeedImage(java.lang.String, java.lang.String, java.lang.String, java.lang.String)</old>
<new>method com.rometools.rome.feed.synd.SyndImage com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeedImage(java.lang.String, java.lang.String, java.lang.String, java.lang.String)</new>
</item>
<item>
<code>java.method.parameterTypeChanged</code>
<old>parameter java.lang.String com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeedOutput(===com.sun.syndication.feed.synd.SyndFeed===, java.lang.String)</old>
<new>parameter java.lang.String com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeedOutput(===com.rometools.rome.feed.synd.SyndFeed===, java.lang.String)</new>
<parameterIndex>0</parameterIndex>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeeds(java.lang.String) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeeds(java.lang.String) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeeds(java.lang.String, boolean) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeeds(java.lang.String, boolean) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeeds(java.lang.String, boolean, boolean) throws java.io.IOException</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getFeeds(java.lang.String, boolean, boolean) throws java.io.IOException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getWebFeed(java.util.List<java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getWebFeed(java.util.List<java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getWebFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getWebFeed(java.util.List<java.lang.Object>, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getWebFeed(java.lang.String, int, int)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getWebFeed(java.lang.String, int, int)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getWebFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndFeed com.xpn.xwiki.plugin.feed.FeedPluginApi::getWebFeed(java.lang.String, int, int, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndContent com.xpn.xwiki.plugin.feed.SyndEntryDocumentSource::getDescription(com.xpn.xwiki.api.Document, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</old>
<new>method com.rometools.rome.feed.synd.SyndContent com.xpn.xwiki.plugin.feed.SyndEntryDocumentSource::getDescription(com.xpn.xwiki.api.Document, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</new>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndContent com.xpn.xwiki.plugin.feed.SyndEntryDocumentSource::getSyndContent(java.lang.String, java.lang.String)</old>
<new>method com.rometools.rome.feed.synd.SyndContent com.xpn.xwiki.plugin.feed.SyndEntryDocumentSource::getSyndContent(java.lang.String, java.lang.String)</new>
</item>
<item>
<code>java.method.parameterTypeChanged</code>
<old>parameter void com.xpn.xwiki.plugin.feed.SyndEntryDocumentSource::source(===com.sun.syndication.feed.synd.SyndEntry===, java.lang.Object, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</old>
<new>parameter void com.xpn.xwiki.plugin.feed.SyndEntryDocumentSource::source(===com.rometools.rome.feed.synd.SyndEntry===, java.lang.Object, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</new>
<parameterIndex>0</parameterIndex>
</item>
<item>
<code>java.method.parameterTypeChanged</code>
<old>parameter void com.xpn.xwiki.plugin.feed.SyndEntryDocumentSource::sourceDocument(===com.sun.syndication.feed.synd.SyndEntry===, com.xpn.xwiki.api.Document, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</old>
<new>parameter void com.xpn.xwiki.plugin.feed.SyndEntryDocumentSource::sourceDocument(===com.rometools.rome.feed.synd.SyndEntry===, com.xpn.xwiki.api.Document, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</new>
<parameterIndex>0</parameterIndex>
</item>
<item>
<code>java.method.parameterTypeChanged</code>
<old>parameter void com.xpn.xwiki.plugin.feed.SyndEntrySource::source(===com.sun.syndication.feed.synd.SyndEntry===, java.lang.Object, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</old>
<new>parameter void com.xpn.xwiki.plugin.feed.SyndEntrySource::source(===com.rometools.rome.feed.synd.SyndEntry===, java.lang.Object, java.util.Map<java.lang.String, java.lang.Object>, com.xpn.xwiki.XWikiContext) throws com.xpn.xwiki.XWikiException</new>
<parameterIndex>0</parameterIndex>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndEntry com.xpn.xwiki.plugin.feed.SyndEntrySourceApi::source(java.lang.Object)</old>
<new>method com.rometools.rome.feed.synd.SyndEntry com.xpn.xwiki.plugin.feed.SyndEntrySourceApi::source(java.lang.Object)</new>
</item>
<item>
<code>java.method.parameterTypeChanged</code>
<old>parameter boolean com.xpn.xwiki.plugin.feed.SyndEntrySourceApi::source(===com.sun.syndication.feed.synd.SyndEntry===, java.lang.Object)</old>
<new>parameter boolean com.xpn.xwiki.plugin.feed.SyndEntrySourceApi::source(===com.rometools.rome.feed.synd.SyndEntry===, java.lang.Object)</new>
<parameterIndex>0</parameterIndex>
</item>
<item>
<code>java.method.returnTypeChanged</code>
<old>method com.sun.syndication.feed.synd.SyndEntry com.xpn.xwiki.plugin.feed.SyndEntrySourceApi::source(java.lang.Object, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>method com.rometools.rome.feed.synd.SyndEntry com.xpn.xwiki.plugin.feed.SyndEntrySourceApi::source(java.lang.Object, java.util.Map<java.lang.String, java.lang.Object>)</new>
</item>
<item>
<code>java.method.parameterTypeChanged</code>
<old>parameter boolean com.xpn.xwiki.plugin.feed.SyndEntrySourceApi::source(===com.sun.syndication.feed.synd.SyndEntry===, java.lang.Object, java.util.Map<java.lang.String, java.lang.Object>)</old>
<new>parameter boolean com.xpn.xwiki.plugin.feed.SyndEntrySourceApi::source(===com.rometools.rome.feed.synd.SyndEntry===, java.lang.Object, java.util.Map<java.lang.String, java.lang.Object>)</new>
<parameterIndex>0</parameterIndex>
</item>
<item>
<code>java.class.removed</code>
<old>class com.xpn.xwiki.plugin.feed.XWikiFeedFetcher</old>
<justification>
It seems like a mistake to expose XWikiFeedFetcher as an API. The concept of feed fetching has
been removed from ROME 2, and staying on ROME 1 is no option from a security perspective. The
implementation has been completely changed, and the class has been made internal as existing uses
would most likely be broken, anyway. We're not aware of any code using this class outside the Feed
API.
</justification>
</item>
</differences>
</revapi.differences>
<revapi.differences>
<justification>
Those APIs were removed as part of JGroups upgrade to 5.4.0: the APIs have been removed on JGroups
side and are directly exposed in XWiki. The original issue for removing them in JGroups was
https://issues.redhat.com/browse/JGRP-2783.
</justification>
<criticality>highlight</criticality>
<differences>
<item>
<ignore>true</ignore>
<code>java.method.removed</code>
<old>method void org.jgroups.Receiver::block() @ org.xwiki.observation.remote.jgroups.JGroupsReceiver</old>
</item>
<item>
<ignore>true</ignore>
<code>java.method.removed</code>
<old>method void org.jgroups.Receiver::unblock() @ org.xwiki.observation.remote.jgroups.JGroupsReceiver</old>
</item>
</differences>
</revapi.differences>
</analysisConfiguration>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<!-- Sorted Alphabetically -->
<module>xwiki-platform-activeinstalls2</module>
<module>xwiki-platform-administration</module>
<module>xwiki-platform-alerts</module>
Vincent Massol
committed
<module>xwiki-platform-annotation</module>
<module>xwiki-platform-application</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-appwithinminutes</module>
Vincent Massol
committed
<module>xwiki-platform-attachment</module>
<module>xwiki-platform-bootstrap</module>
<module>xwiki-platform-bridge</module>
<module>xwiki-platform-chart</module>
<module>xwiki-platform-ckeditor</module>
<module>xwiki-platform-classloader</module>
<module>xwiki-platform-component</module>
<module>xwiki-platform-configuration</module>
Vincent Massol
committed
<module>xwiki-platform-container</module>
<module>xwiki-platform-crypto</module>
<module>xwiki-platform-csrf</module>
Vincent Massol
committed
<module>xwiki-platform-dashboard</module>
Guillaume Delhumeau
committed
<module>xwiki-platform-date</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-diff</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-display</module>
<module>xwiki-platform-edit</module>
<module>xwiki-platform-export</module>
<module>xwiki-platform-extension</module>
<module>xwiki-platform-feed</module>
<module>xwiki-platform-filter</module>
<module>xwiki-platform-flamingo</module>
<module>xwiki-platform-flavor</module>
<module>xwiki-platform-groovy</module>
<module>xwiki-platform-help</module>
<module>xwiki-platform-icon</module>
Clément Aubin
committed
<module>xwiki-platform-image</module>
Vincent Massol
committed
<module>xwiki-platform-index</module>
<module>xwiki-platform-instance</module>
<module>xwiki-platform-invitation</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-job</module>
<module>xwiki-platform-jodatime</module>
<module>xwiki-platform-lesscss</module>
<module>xwiki-platform-link</module>
<module>xwiki-platform-linkchecker</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-livedata</module>
<module>xwiki-platform-livetable</module>
<module>xwiki-platform-logging</module>
<module>xwiki-platform-mail</module>
<module>xwiki-platform-mailsender</module>
<module>xwiki-platform-mentions</module>
<module>xwiki-platform-menu</module>
Vincent Massol
committed
<module>xwiki-platform-minimaldependencies</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-netflux</module>
<module>xwiki-platform-notifications</module>
<module>xwiki-platform-observation</module>
<module>xwiki-platform-office</module>
<module>xwiki-platform-oldcore</module>
<module>xwiki-platform-panels</module>
<module>xwiki-platform-ratings</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-realtime</module>
<module>xwiki-platform-release</module>
<module>xwiki-platform-repository</module>
<module>xwiki-platform-resource</module>
<module>xwiki-platform-sandbox</module>
Vincent Massol
committed
<module>xwiki-platform-sharepage</module>
<module>xwiki-platform-scheduler</module>
<module>xwiki-platform-search</module>
<module>xwiki-platform-security</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-sheet</module>
<module>xwiki-platform-skin</module>
<module>xwiki-platform-statistics</module>
<module>xwiki-platform-store</module>
<module>xwiki-platform-tag</module>
<module>xwiki-platform-template</module>
<module>xwiki-platform-test</module>
<module>xwiki-platform-tika</module>
<module>xwiki-platform-tour</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-tree</module>
<module>xwiki-platform-user</module>
Jean-Vincent Drean
committed
<module>xwiki-platform-uiextension</module>
<module>xwiki-platform-url</module>
<module>xwiki-platform-velocity</module>
Vincent Massol
committed
<module>xwiki-platform-vfs</module>
<module>xwiki-platform-whatsnew</module>
Vincent Massol
committed
<module>xwiki-platform-webjars</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-websocket</module>
<module>xwiki-platform-wiki</module>
Marius Dumitru Florea
committed
<module>xwiki-platform-wysiwyg</module>
<module>xwiki-platform-xar</module>
<module>xwiki-platform-xclass</module>
<module>xwiki-platform-zipexplorer</module>
</modules>
<profiles>
<!-- Profile to build Legacy modules -->
<modules>
<module>xwiki-platform-legacy</module>
</modules>
</profile>
Vincent Massol
committed
<profile>
<id>docker</id>
<build>
Vincent Massol
committed
<plugins>
<!-- Dynamically generate a properties file containing all xwiki.test.ui.* system properties in it.
See the explanation on the failsafe maven plugin definition below -->
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>4.0.1</version>
Vincent Massol
committed
<executions>
<execution>
<id>set-system-properties-file</id>
<phase>process-test-resources</phase>
<goals>
<goal>execute</goal>
</goals>
</execution>
</executions>
<configuration>
<scripts>
<script><![CDATA[
def sysProps = System.getProperties().findAll({it.key.startsWith 'xwiki.test.ui.'})
sysProps.storeToXML(new FileOutputStream(new File("${project.build.directory}/env-tests.xml")), null);
]]></script>
</scripts>
</configuration>
<dependencies>
<!-- Avoid the following warning:
[WARNING] Unable to initialize 'ant' with a new AntBuilder object. Is Groovy a dependency?
If you are using Groovy >= 2.3.0-rc-1, remember to include groovy-ant as a dependency.
-->
<dependency>
<groupId>org.apache.groovy</groupId>
Vincent Massol
committed
<artifactId>groovy</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.apache.groovy</groupId>
Vincent Massol
committed
<artifactId>groovy-ant</artifactId>
Vincent Massol
committed
<version>${groovy.version}</version>
Vincent Massol
committed
</dependency>
</dependencies>
</plugin>
</plugins>
Vincent Massol
committed
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
Vincent Massol
committed
<systemPropertyVariables>
Vincent Massol
committed
<!-- This is required by the Oracle JDBC driver when running configuration tests on Oracle, as
otherwise it fails with:
SQLException: ORA-00604: error occurred at recursive SQL level 1
ORA-01882: timezone region not found
Vincent Massol
committed
It's required at this level since TestContainers uses JDBC to verify that the Oracle database is
Vincent Massol
committed
started.
-->
Vincent Massol
committed
<oracle.jdbc.timezoneAsRegion>false</oracle.jdbc.timezoneAsRegion>
</systemPropertyVariables>
Vincent Massol
committed
<!-- Tell Failsafe to use the properties file generated by the gmavenplus maven plugin which will
contain all the xwiki.test.ui.* system properties passed from the command line. This is needed
for the Gradle Cache to recognize different inputs for two builds with different system properties.
See https://tinyurl.com/2xkdzcpn
-->
<systemPropertiesFile>${project.build.directory}/env-tests.xml</systemPropertiesFile>
Vincent Massol
committed
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
Vincent Massol
committed
<profile>
<!-- Executed when the docker profile is not specified. This is because we want to define the
"screenshotDirectory" system property for Surefire/Failsafe plugins only when not executing docker-based
tests since it's not used for them (the screenshot directory is computed based on the "maven.build.dir"
system property for them). -->
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
Vincent Massol
committed
<systemPropertyVariables>
Vincent Massol
committed
<!-- Tells XWiki Platform Test module to generate screenshots in the target dir when a test is
failing.
TODO: Remove this property once all functional tests have been moved to use the failsafe plugin
-->
Vincent Massol
committed
<screenshotDirectory>${project.build.directory}/screenshots</screenshotDirectory>
</systemPropertyVariables>
Vincent Massol
committed
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
Vincent Massol
committed
<systemPropertyVariables>
Vincent Massol
committed
<!-- Tells XWiki Platform Test module to generate screenshots in the target dir when a test is
failing (only used by non-docker UI tests) -->
Vincent Massol
committed
<screenshotDirectory>${project.build.directory}/screenshots</screenshotDirectory>
</systemPropertyVariables>
Vincent Massol
committed
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</project>