forked from kiegroup/droolsjbpm-build-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
2792 lines (2687 loc) · 115 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
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<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>
<!-- That parent extends the org.jboss:jboss-parent -->
<groupId>org.jboss.integration-platform</groupId>
<artifactId>jboss-integration-platform-bom</artifactId>
<!-- Keep in sync with ip-parent version in kie-user-bom-parent/pom.xml -->
<version>8.0.0.Final</version>
</parent>
<groupId>org.kie</groupId>
<artifactId>kie-parent</artifactId>
<packaging>pom</packaging>
<!-- On updating the version, also look for these variations for OSGi stuff: "5.3.0.qualifier" and "5.3.0.SNAPSHOT" -->
<!-- Important a released version should always follow any of these patterns: -->
<!-- major.minor.micro.Alpha[n] -->
<!-- major.minor.micro.Beta[n] -->
<!-- major.minor.micro.CR[n] -->
<!-- major.minor.micro.Final -->
<!-- For example: 1.2.3 without the suffix ".Final" corrupts the OSGi eclipse updatesite -->
<!-- For example: 1.2.3.M2 corrupts the OSGi eclipse updatesite update order -->
<version>7.10.0-SNAPSHOT</version>
<name>KIE (Drools, jBPM, OptaPlanner) parent</name>
<description>
The parent contains all metadata (including plugins) including dependency versions. All modules, except for user BOMS,
should (transitively) inherit from this parent.
</description>
<url>http://www.kiegroup.org</url>
<inceptionYear>2001</inceptionYear>
<organization>
<name>JBoss by Red Hat</name>
<url>http://www.jboss.org/</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<!-- Internal dependencies -->
<version.org.kie>7.10.0-SNAPSHOT</version.org.kie>
<version.org.drools>${version.org.kie}</version.org.drools>
<version.org.optaplanner>${version.org.kie}</version.org.optaplanner>
<version.org.jbpm>${version.org.kie}</version.org.jbpm>
<version.org.drools.droolsjbpm-integration>${version.org.drools}</version.org.drools.droolsjbpm-integration>
<version.org.uberfire>2.7.0-SNAPSHOT</version.org.uberfire>
<version.org.kie.uberfire.extensions>${version.org.drools}</version.org.kie.uberfire.extensions>
<version.org.drools.droolsjbpm-tools>${version.org.drools}</version.org.drools.droolsjbpm-tools>
<version.org.jbpm.jbpm-designer>${version.org.jbpm}</version.org.jbpm.jbpm-designer>
<version.org.jbpm.jbpm-wb>${version.org.jbpm}</version.org.jbpm.jbpm-wb>
<version.org.apache.xmlgraphics.commons>2.2</version.org.apache.xmlgraphics.commons>
<!-- CONVENTIONS:
- A version property must be specified in the format "version.{groupId}", optionally with a suffix to make it unique.
- Version properties must be sorted alphabetically (other form of sorting were found to be unclear and ambiguous).
-->
<!-- External dependency versions bom -->
<!-- ################################################################################ -->
<!-- New and overwritten dependencies -->
<!-- ################################################################################ -->
<version.javaee.api>7.0</version.javaee.api>
<version.com.android-dx>1.10</version.com.android-dx>
<!-- commons cli 1.3.1+ required by Dashbuilder's ElasticSearch module. This override can be removed once IP BOM upgrades as well. -->
<version.commons-cli>1.3.1</version.commons-cli>
<!-- IP BOM 7.0.0.Final defines Jackson 2.5.4
Wildfly 10.0.0.Final includes Jackson 2.5.4
Wildfly 10.1.0.Final includes Jackson 2.7.4
JBoss EAP 6.4.16 includes Jackson 2.5.4
JBoss EAP 7.1.0.Beta4 includes Jackson 2.8.6
Dashbuilder's ElasticSearch module requires Jackson 2.6.2+, so defined here
Fabric8 Kubernetes/OpenShift Client 2.6.3 requires Jackson 2.6+, but built against Jackson 2.7.7
guvnor-ala-openshift-client shades Jackson 2.7.7 with Fabric8 Kubernetes/OpenShift Client 2.6.3
Once the IP BOM gets upgraded and we solely deploy on Wildfly 10.1+ and EAP 7.1+, guvnor-ala-openshift-client can be removed. -->
<version.org.eclipse.bpmn2>0.8.2-jboss</version.org.eclipse.bpmn2>
<version.com.fasterxml.jackson>2.8.9</version.com.fasterxml.jackson>
<version.com.github.detro>1.2.0</version.com.github.detro>
<version.com.github.tomakehurst.wiremock>1.53</version.com.github.tomakehurst.wiremock>
<version.com.google.android>4.1.1.4</version.com.google.android>
<version.com.google.testing.compile>0.11</version.com.google.testing.compile>
<version.jakarta-regexp>1.4</version.jakarta-regexp>
<version.link.bek.tools.issue-keeper-junit>4.11.1</version.link.bek.tools.issue-keeper-junit>
<version.net.sf.docbook.docbook-xsl>1.76.1</version.net.sf.docbook.docbook-xsl>
<version.org.antlr4>4.5.3</version.org.antlr4>
<version.org.apache.camel>2.21.0</version.org.apache.camel>
<version.org.apache.cxf>3.2.2</version.org.apache.cxf>
<version.org.codehaus.cargo>1.6.9</version.org.codehaus.cargo>
<!-- Custom Freemarker build with workaround for random concurrent access issue (annotation processors). See AF-600 for more info.-->
<version.org.freemarker>2.3.26.jbossorg-1</version.org.freemarker>
<version.org.jboss.arquillian.extension.drone>2.0.0.Final</version.org.jboss.arquillian.extension.drone>
<version.org.jboss.arquillian.graphene>2.1.0.CR1</version.org.jboss.arquillian.graphene>
<version.com.google.elemental2>1.0.0-beta-1</version.com.google.elemental2>
<version.org.jboss.errai>4.3.3-SNAPSHOT</version.org.jboss.errai>
<!-- Required for kie-wb-common to build in IntelliJ Idea 2017, due to -->
<!-- https://youtrack.jetbrains.com/issue/IDEA-166417 -->
<!-- Property can be removed when the above issue is fixed -->
<version.org.jboss.errai.wildfly>11.0.0.Final</version.org.jboss.errai.wildfly>
<version.org.jboss.remoting>5.0.3.Final</version.org.jboss.remoting>
<version.org.jboss.remotingjmx>3.0.0.Final</version.org.jboss.remotingjmx>
<!--resteasy override: RHPAM-340 -->
<version.org.jboss.resteasy>3.0.24.Final</version.org.jboss.resteasy>
<!-- Required by jboss-remoting version above -->
<version.org.wildfly.security>1.1.0.Final</version.org.wildfly.security>
<version.org.mortbay.jetty.runner>8.1.7.v20120910</version.org.mortbay.jetty.runner>
<version.org.picketlink>2.6.0.Final</version.org.picketlink>
<version.com.unboundid>3.2.0</version.com.unboundid>
<version.com.wordnik.swagger>1.3.10</version.com.wordnik.swagger>
<version.io.swagger>1.5.15</version.io.swagger>
<version.org.jboss.as>7.2.0.Final</version.org.jboss.as>
<version.org.jboss.byteman>3.0.1</version.org.jboss.byteman>
<version.org.roboguice>3.0.1</version.org.roboguice>
<version.org.robolectric>3.1.2</version.org.robolectric>
<version.org.jboss.arquillian.selenium>2.53.0</version.org.jboss.arquillian.selenium>
<version.org.simpleframework>6.0.1</version.org.simpleframework>
<version.org.xmlunit>2.3.0</version.org.xmlunit>
<version.org.skyscreamer.jsonassert>1.2.3</version.org.skyscreamer.jsonassert>
<!-- WildFly version used together with the GWT's Super Dev Mode -->
<version.org.wildfly.gwt.sdm>11.0.0.Final</version.org.wildfly.gwt.sdm>
<version.org.jboss.jboss-dmr>1.4.1.Final</version.org.jboss.jboss-dmr>
<!-- this version will overwrite jboss-ip-bom version 2.5.1. The version in jboss-ip-bom couldn't be upgraded as it will break ModeShape Web Explorer application which uses GWT 2.5.1 -->
<!-- please look at https://github.com/fredsa/gwt-dnd/wiki/GettingStarted -->
<version.com.google.gwt>2.8.2</version.com.google.gwt>
<version.net.ltgt.gwt.maven>1.0-rc-6</version.net.ltgt.gwt.maven>
<version.com.google.guava>20.0</version.com.google.guava>
<!-- this version will overwrite jboss-ip-version 3.1.2. The version in jboss-ip-bom couldn't be upgraded as this version needs GWT 2.7.0 -->
<!-- please look at https://github.com/fredsa/gwt-dnd/wiki/GettingStarted -->
<version.com.allen-sauer.gwt.dnd>3.3.3</version.com.allen-sauer.gwt.dnd>
<!-- Version 1.1.0.Final which is coming from ip-bom is not compatible with GWT 2.8.0.Beta1 -->
<version.javax.validation>1.0.0.GA</version.javax.validation>
<!-- temporary because it was removed/rename in jboss-ip-bom and it is needed by droolsjbpm-knowledge/kie-api/pom.xml -->
<version.javax.xml.stream.stax>1.0-2</version.javax.xml.stream.stax>
<version.org.ops4j.pax.url>2.2.0</version.org.ops4j.pax.url>
<version.org.geronimo.atinject>1.0</version.org.geronimo.atinject>
<!-- simple-jndi is a small library that helps us avoid JNDI error messages during testing -->
<version.simple-jndi>0.11.4.1</version.simple-jndi>
<version.org.asciidoctor.pdf>1.5.0-alpha.11</version.org.asciidoctor.pdf>
<!-- Downgrade required for Errai Dynamic Bean validation -->
<version.org.hibernate.hibernate-validator>4.1.0.Final</version.org.hibernate.hibernate-validator>
<version.javax.validation>1.0.0.GA</version.javax.validation>
<!-- JGIT 4.8.0.201706111038-r required by UberFire/AppFormer. Can be removed once IP BOM is upgraded.-->
<version.org.eclipse.jgit>4.8.0.201706111038-r</version.org.eclipse.jgit>
<version.org.apache.sshd>1.6.0</version.org.apache.sshd>
<!-- CSS parsing library from Apache used by Stunner. -->
<version.net.sourceforge.cssparser>0.9.21</version.net.sourceforge.cssparser>
<version.org.w3c.css.sac>1.3</version.org.w3c.css.sac>
<version.org.apache.lucene>6.6.1</version.org.apache.lucene>
<!-- narayana dependencies for tomcat and kie server -->
<version.org.jboss.narayana.tomcat>5.6.4.Final</version.org.jboss.narayana.tomcat>
<version.org.jboss.transaction.spi>7.6.0.Final</version.org.jboss.transaction.spi>
<!-- DBCP connection pooling for Narayana -->
<version.org.apache.tomcat.tomcat-dbcp>9.0.10</version.org.apache.tomcat.tomcat-dbcp>
<!-- In community builds productized is false, in product builds it's true to enable branding changes -->
<org.kie.productized>false</org.kie.productized>
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
<!-- This property needs to be defined in all modules that use the packaging 'jar' or 'bundle'. It is
being used by different plugins to make sure the module/bundle names are consistent. -->
<java.module.name/>
<!-- Make OSGi happy -->
<osgi.snapshot.qualifier>${maven.build.timestamp}</osgi.snapshot.qualifier>
<!-- Newer version in ip-bom causes ServiceLoader error -->
<version.ch.qos.logback>1.1.3</version.ch.qos.logback>
<!-- IMPORTANT: Don't use this dependency. The right dependency version is the one named as "version.io.netty".
This is just needed by Elasticsearch Transport Plugin because it has a compatibility mode with netty 3 and
it can't be removed -->
<version.io.netty.old>3.10.6.Final</version.io.netty.old>
<!-- Plugin version overrides.
IMPORTANT: always explain the reason for overriding the plugin version! -->
<!-- Surefire version 2.19.1 coming from parent is buggy and kie-osgi tests in droolsjbpm-integration are failing because of that. -->
<version.surefire.plugin>2.18.1</version.surefire.plugin>
<version.enforcer.plugin>3.0.0-M1</version.enforcer.plugin> <!-- Needed to support JDK 9. Can be removed once IP BOM 8.0.0.CR1 is used. -->
<version.javadoc.plugin>3.0.0-M1</version.javadoc.plugin> <!-- Needed to support JDK 9. Can be removed once IP BOM 8.0.0.CR1 is used. -->
<!-- Jacoco plugin configurations -->
<jacoco.haltOnFailure>false</jacoco.haltOnFailure>
<jacoco.line.coveredratio.minimum>0.9</jacoco.line.coveredratio.minimum>
<version.jacoco.plugin>0.7.5.201505241946</version.jacoco.plugin>
<!-- TODO: remove this once all repositories comply to the defined checkstyle rules -->
<checkstyle.failOnViolation>false</checkstyle.failOnViolation>
<checkstyle.logViolationsToConsole>false</checkstyle.logViolationsToConsole>
<checkstyle.header.template>.*</checkstyle.header.template>
<checkstyle.header.extensions>java</checkstyle.header.extensions>
<enforcer.failOnDuplicatedClasses>true</enforcer.failOnDuplicatedClasses>
<!-- Set to "true" on every project that has no violations. -->
<findbugs.failOnViolation>false</findbugs.failOnViolation>
<!-- org.eclipse.tycho plugin version -->
<version.org.eclipse.tycho>1.0.0</version.org.eclipse.tycho>
<version.org.jboss.tools.tycho-plugins>1.0.0</version.org.jboss.tools.tycho-plugins>
<maven.min.version>3.3.9</maven.min.version>
<!-- Important: this is one and only place where the supported user agents (browsers) are configured.
All webapps/showcases must use this property in their *.gwt.xml files.
We only need to support IE11+, but there is no ie11 permutation. IE11 will use the Firefox one (gecko1_8) -->
<gwt.user.agent.all>gecko1_8,safari</gwt.user.agent.all>
<!-- Number of GWT compiler worker processes. Defined as property so that it can be easily overridden from cmd line.
Default value is 1 to enable building on older machines as well (minimum is still about 4GiB of RAM memory). -->
<gwt.compiler.localWorkers>1</gwt.compiler.localWorkers>
<!-- property for productisation to know the last released version -->
<latestReleasedVersionFromThisBranch>notYetReleased</latestReleasedVersionFromThisBranch>
<version.io.takari.maven.plugins>1.13.5</version.io.takari.maven.plugins>
<version.io.takari.maven.plugins.integration-testing>2.9.2</version.io.takari.maven.plugins.integration-testing>
<version.org.codehaus.plexus.plexus-io>3.0.0</version.org.codehaus.plexus.plexus-io>
<version.org.apache.maven.shared.maven-artifact-transfer>0.9.1</version.org.apache.maven.shared.maven-artifact-transfer>
<version.org.apache.maven.plugins.maven-compiler-plugin>3.7.0</version.org.apache.maven.plugins.maven-compiler-plugin>
<!-- Version of the KIE Workbench application. Shown for example in About dialog. Will be usually overridden by productisation. -->
<version.org.kie.workbench.app>${version.org.kie}</version.org.kie.workbench.app>
<version.org.wildfly.swarm>2018.3.3</version.org.wildfly.swarm>
<version.net.byte-buddy>1.4.16</version.net.byte-buddy>
<version.commons-beanutils>1.9.2</version.commons-beanutils>
<version.docker-client>3.5.12</version.docker-client>
<version.kubernetes-model>1.1.4</version.kubernetes-model>
<version.kubernetes-client>2.6.3</version.kubernetes-client>
<version.okhttp>3.8.1</version.okhttp>
<version.zjsonpatch>0.3.0</version.zjsonpatch>
<version.arquillian-cube>1.0.0.Alpha15</version.arquillian-cube>
<version.org.wildfly.arquillian.container>2.0.0.Final</version.org.wildfly.arquillian.container>
<jboss.releases.repo.url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</jboss.releases.repo.url>
<jboss.snapshots.repo.url>https://repository.jboss.org/nexus/content/repositories/snapshots/</jboss.snapshots.repo.url>
<!-- Latest release to be used by api-compatibility-check to check backwards compatibility of the Kie API. -->
<revapi.oldKieVersion>7.5.0.Final</revapi.oldKieVersion>
<revapi.newKieVersion>${project.version}</revapi.newKieVersion>
<!-- using undertow for kie server router - same version as it comes with WildFly 10.0.0.Final-->
<version.io.undertow.core>1.3.15.Final</version.io.undertow.core>
<!-- Overrides the version in the jboss-integration-platform-bom. A peer PR will be sent to jboss-integration-platform project.
Please move this new version number there when possible -->
<version.org.jboss.forge.roaster>2.19.5.Final</version.org.jboss.forge.roaster>
<version.org.jboss.spec.javax.enterprise.concurrent>1.0.0.Final</version.org.jboss.spec.javax.enterprise.concurrent>
<version.org.jboss.spec.javax.websocket>1.1.1.Final</version.org.jboss.spec.javax.websocket>
<version.org.mvel>2.4.0.Final</version.org.mvel>
<version.javax.xml.soap>1.3.5</version.javax.xml.soap>
<version.javax.jws>1.0-MR1</version.javax.jws>
<version.org.quartz-scheduler>2.2.3</version.org.quartz-scheduler>
<version.org.jboss.spec.javax.ws.rs.jboss-jaxrs-api_2.1_spec>1.0.0.Final</version.org.jboss.spec.javax.ws.rs.jboss-jaxrs-api_2.1_spec>
<version.org.apache.maven.plugins.dependency>3.0.2</version.org.apache.maven.plugins.dependency>
</properties>
<repositories>
<repository>
<!-- Duplicating the Maven Central repository here (as it is already coming from Super POM) makes the build much faster,
as the Maven Central is now treated as the first (default) repository (because it is before the JBoss.org one).
Artifacts with release (fixed) versions are being downloaded primarily from there. Without the central being the
first repository the JBoss.org Nexus would be contacted first and since it is quite slow it slows down the build.
We use JBoss.org repo only to download our SNAPSHOTs. -->
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- Bootstrap repository to locate the parent pom when the parent pom has not been build locally. -->
<!-- Conventions are described in http://community.jboss.org/wiki/MavenGettingStarted-Developers -->
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<!-- Duplicating the Maven Central repository here (as it is already coming from Super POM) makes the build much faster,
as the Maven Central is now treated as the first (default) repository (because it is before the JBoss.org one).
Artifacts with release (fixed) versions are being downloaded primarily from there. Without the central being the
first repository the JBoss.org Nexus would be contacted first and since it is quite slow it slows down the build.
We use JBoss.org repo only to download our SNAPSHOTs. -->
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<scm>
<connection>scm:git:https://github.com/kiegroup/droolsjbpm-build-bootstrap.git</connection>
<developerConnection>scm:git:[email protected]:kiegroup/droolsjbpm-build-bootstrap.git</developerConnection>
<url>https://github.com/kiegroup/droolsjbpm-build-bootstrap</url>
</scm>
<ciManagement>
<system>jenkins</system>
<url>https://jenkins-kieci.rhcloud.com</url>
</ciManagement>
<issueManagement>
<system>jira</system>
<url>https://issues.jboss.org/browse/DROOLS</url>
</issueManagement>
<developers>
<developer>
<name>All developers are listed on the team website</name>
<url>http://www.drools.org/community/team.html</url>
</developer>
</developers>
<contributors>
<contributor>
<name>All contributors are listed on the team website</name>
<url>http://www.drools.org/community/team.html</url>
</contributor>
</contributors>
<mailingLists>
<mailingList>
<name>setup</name>
<subscribe>https://groups.google.com/forum/#!forum/drools-setup</subscribe>
<unsubscribe>https://groups.google.com/forum/#!forum/drools-setup</unsubscribe>
<otherArchives>
<!-- Very old (and long deprecated) user mailing list -->
<otherArchive>http://drools.46999.n3.nabble.com/Drools-User-forum-f47000.html</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>usage</name>
<subscribe>https://groups.google.com/forum/#!forum/drools-usage</subscribe>
<unsubscribe>https://groups.google.com/forum/#!forum/drools-usage</unsubscribe>
</mailingList>
<mailingList>
<name>development</name>
<subscribe>https://groups.google.com/forum/#!forum/drools-development</subscribe>
<unsubscribe>https://groups.google.com/forum/#!forum/drools-development</unsubscribe>
</mailingList>
</mailingLists>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>1.0-beta-6</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
<version>1.0-beta-6</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>enforce-plugin-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requirePluginVersions>
<unCheckedPluginList>org.kie:kie-maven-plugin</unCheckedPluginList>
</requirePluginVersions>
</rules>
</configuration>
</execution>
<execution>
<id>enforce-direct-dependencies</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<illegalTransitiveDependencyCheck
implementation="de.is24.maven.enforcer.rules.IllegalTransitiveDependencyCheck">
<regexIgnoredClasses combine.children="append">
<!-- The marshalling classes are generated by Errai during GWT compilation. These classes
usually contain references to other dependencies which are not part of the project
(transitive dependencies), which then results in the dependency check failure.
From the maintenance point of view, ignoring these generated classes seems like the
best option. -->
<regexIgnoredClass>org\.jboss\.errai\.marshalling\.server\.impl\.ServerMarshallingFactory.*</regexIgnoredClass>
<!-- The maven-shade-plugin needs these classes to be compile-scope in guvnor-ala-openshift-client to be picked up, and
then referenced in guvnor-ala-openshift-provider. When we don't need to shade anymore, we can remove these lines. -->
<regexIgnoredClass>io\.fabric8\.kubernetes.*</regexIgnoredClass>
<regexIgnoredClass>io\.fabric8\.openshift.*</regexIgnoredClass>
</regexIgnoredClasses>
</illegalTransitiveDependencyCheck>
</rules>
</configuration>
</execution>
<execution>
<id>ban-blacklisted-dependencies</id>
<phase>validate</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<bannedDependencies>
<excludes combine.children="append">
<!-- Ban blacklisted logging deps (we only use SLF4J + Logback) -->
<!-- In case of transitive dependency, exclude it and use 'org.slf4j:jcl-over-slf4j' instead -->
<exclude>commons-logging:commons-log*</exclude>
<!-- In case of transitive dependency, exclude it and use 'org.slf4j:log4j-over-slf4j' instead -->
<exclude>log4j:log4j</exclude>
<!-- In case of transitive dependency, exclude it and use 'org.javassist:javassist' instead -->
<exclude>javassist:javassist</exclude>
</excludes>
</bannedDependencies>
</rules>
<fail>true</fail>
</configuration>
</execution>
<execution>
<id>ban-duplicated-classes</id>
<!-- Using phase=none as we don't want this execution as part of the default build. The phase
is specified in the "full" profile and thus the execution will only be activated when using that profile. -->
<phase>none</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<banDuplicateClasses>
<ignoreClasses>
<!-- ASM is in Wildfly Swarm through Undertow but exclusion will break the swarm jar -->
<!-- when docker-client shaded GAV will be removed, this ignore can be removed too -->
<!-- kie-wb-common-ala-distribution is affected by this -->
<ignoreClass>org.objectweb.asm.*</ignoreClass>
<!-- Duplicated by XStream's transitive deps, with very little chance to get properly fixed -->
<ignoreClass>org.xmlpull.v1.XmlPullParserException</ignoreClass>
<ignoreClass>org.xmlpull.v1.XmlPullParser</ignoreClass>
<!-- Bundled by both com.sun:tools and com.sun.xml.bind:jaxb-xjc. No easy way to exclude one of them. -->
<ignoreClass>org.relaxng.datatype.*</ignoreClass>
<!-- Classes duplicated by the jar itself (bug), see https://issues.apache.org.jira/browse/XMLBEANS-499 -->
<ignoreClass>org.apache.xmlbeans.xml.stream.XMLName</ignoreClass>
<ignoreClass>org.apache.xmlbeans.xml.stream.XMLInputStream</ignoreClass>
<ignoreClass>org.apache.xmlbeans.xml.stream.utils.NestedThrowable</ignoreClass>
<ignoreClass>org.apache.xmlbeans.xml.stream.utils.NestedThrowable$Util</ignoreClass>
<ignoreClass>org.apache.xmlbeans.xml.stream.XMLStreamException</ignoreClass>
<ignoreClass>org.apache.xmlbeans.xml.stream.ReferenceResolver</ignoreClass>
<ignoreClass>org.apache.xmlbeans.xml.stream.XMLEvent</ignoreClass>
<ignoreClass>org.apache.xmlbeans.xml.stream.Location</ignoreClass>
<!-- Duplicated in xml-apis:xml-apis:jar:1.4.01 and xerces:xercesImpl:jar:2.11.0.SP4. The class is identical
and there is very little chance this will get ever fixed. -->
<ignoreClass>org.w3c.dom.ElementTraversal</ignoreClass>
<ignoreClass>org.w3c.dom.UserDataHandler</ignoreClass>
<!-- Packaged both in hornetq-commons and hornetq-client. Remove this once we move the testing
from HornetQ to ActiveMQ (https://issues.jboss.org/browse/JBPM-5503) -->
<ignoreClass>org.hornetq.utils.HornetQUtilBundle_$bundle</ignoreClass>
<ignoreClass>org.hornetq.utils.HornetQUtilLogger_$logger</ignoreClass>
<!-- Classes bundled in errai-javax-enterprise which are GWT friendly.
See https://github.com/errai/errai/blob/master/errai-javax-enterprise/README -->
<ignoreClass>javax.interceptor.InvocationContext</ignoreClass>
<ignoreClass>javax.inject.Provider</ignoreClass>
<ignoreClass>javax.inject.Named</ignoreClass>
<ignoreClass>javax.inject.Scope</ignoreClass>
<ignoreClass>javax.inject.Qualifier</ignoreClass>
<ignoreClass>javax.inject.Singleton</ignoreClass>
<ignoreClass>javax.enterprise.*</ignoreClass>
<!-- Servlet API is bundled in way too many different dependencies, causing nightmares trying to
properly exclude everything. There were no real issues with this so far as mostly the APIs
are just duplicates of the exactly same sources. In ideal world, this get eventually fixed,
but it may very well not be worth the effort. -->
<ignoreClass>javax.servlet.*</ignoreClass>
<!-- Classes in javax.annotation package are just marker annotations used to aid the programmers.
These annotations do not influence the actual behavior of the code, so it's reasonable to
ignore them. Following dependencies contain these classes: 'com.google.code.findbugs:jsr305'
and 'com.google.code.findbugs:annotations'. -->
<ignoreClass>javax.annotation.*</ignoreClass>
<!-- Exactly the same case as for above 'javax.annotation.*' classes. Following dependencies contain
these classes: 'net.jcip:jcip-annotations' and 'com.google.code.findbugs:annotations'. -->
<ignoreClass>net.jcip.annotations.*</ignoreClass>
<!-- Classes from gwt-user duplicated in errai-uibinder -->
<ignoreClass>com.google.gwt.uibinder.rebind.UiBinderWriter</ignoreClass>
<ignoreClass>com.google.gwt.uibinder.rebind.UiBinderGenerator</ignoreClass>
<!-- ignoring java 9 compatible class for modules -->
<ignoreClass>module-info</ignoreClass>
<!-- Classes repackaged in the maven world-->
<ignoreClass>org.eclipse.aether.*</ignoreClass>
<ignoreClass>org.apache.maven.*</ignoreClass>
<ignoreClass>org.codehaus.plexus.*</ignoreClass>
</ignoreClasses>
<dependencies>
<!-- gwt-dev bundles dozens of different 3rd party dependencies, but can not be usually excluded
as e.g. GWT Mockito tests are using the com.google.gwt classes inside. Ignoring it for the
duplicate classes check seems to be the only way. -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<type>jar</type>
<ignoreClasses>
<ignoreClass>*</ignoreClass>
</ignoreClasses>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<ignoreClasses>
<!-- Elasticsearch team claims they fixed performance issues in the class and re-bundled it.
See https://discuss.elastic.co/t/an-unshaded-joda-time-classes-in-elasticsearch-2-1-1-jar/38943
Nothing we can do here. -->
<ignoreClass>org.joda.time.base.BaseDateTime</ignoreClass>
</ignoreClasses>
</dependency>
<!-- ignore jboss-logging included in kie server router as it is required by undertow and uberjar usage-->
<dependency>
<groupId>org.kie.server</groupId>
<artifactId>kie-server-router-proxy</artifactId>
<type>jar</type>
<ignoreClasses>
<ignoreClass>org.jboss.logging.*</ignoreClass>
</ignoreClasses>
</dependency>
<!-- ignore jboss-logging included in kie server on tomcat using narayana-->
<dependency>
<groupId>org.jboss.narayana.tomcat</groupId>
<artifactId>tomcat-jta</artifactId>
<type>jar</type>
<ignoreClasses>
<ignoreClass>org.jboss.logging.*</ignoreClass>
<ignoreClass>javax.transaction.*</ignoreClass>
</ignoreClasses>
</dependency>
<dependency>
<!-- The openshift-client duplicates these classes from the kubernetes-client.
It is an upstream io.fabric8 issue that needs to be fixed there:
https://github.com/fabric8io/kubernetes-client/issues/828 -->
<groupId>io.fabric8</groupId>
<artifactId>openshift-client</artifactId>
<type>jar</type>
<ignoreClasses>
<ignoreClass>io.fabric8.kubernetes.client.ConfigFluent</ignoreClass>
<ignoreClass>io.fabric8.kubernetes.client.ConfigBuilder</ignoreClass>
<ignoreClass>io.fabric8.kubernetes.client.ConfigFluentImpl</ignoreClass>
</ignoreClasses>
</dependency>
</dependencies>
<findAllDuplicates>true</findAllDuplicates>
</banDuplicateClasses>
</rules>
<fail>${enforcer.failOnDuplicatedClasses}</fail>
</configuration>
</execution>
<execution>
<id>no-duplicate-declared-dependencies</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<banDuplicatePomDependencyVersions/>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<checkstyleRules>
<module name="Checker">
<!-- Checks for whitespace. -->
<module name="FileTabCharacter">
<property name="severity" value="error"/>
<property name="eachLine" value="true"/>
</module>
<module name="TreeWalker">
<!-- Import settings: getting rid of redundant import, forbid star notation, defined order of imports. -->
<module name="RedundantImport"/>
<module name="AvoidStarImport">
<property name="allowClassImports" value="false"/>
<property name="allowStaticMemberImports" value="false"/>
</module>
<module name="CustomImportOrder">
<property name="customImportOrderRules"
value="STANDARD_JAVA_PACKAGE###SPECIAL_IMPORTS###THIRD_PARTY_PACKAGE###STATIC"/>
<property name="specialImportsRegExp" value="^javax\."/>
<property name="standardPackageRegExp" value="^java\."/>
<property name="sortImportsInGroupAlphabetically" value="true"/>
<property name="separateLineBetweenGroups" value="true"/>
</module>
<module name="UnusedImports"/>
<module name="NeedBraces">
<property name="tokens" value="LITERAL_IF, LITERAL_ELSE, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO"/>
</module>
<module name="EqualsHashCode"/>
</module>
<module name="RegexpHeader">
<property name="header" value="${checkstyle.header.template}"/>
<property name="fileExtensions" value="${checkstyle.header.extensions}"/>
</module>
</module>
</checkstyleRules>
<outputFile>${project.build.directory}/checkstyle.log</outputFile>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<includeResources>true</includeResources>
<includeTestResources>true</includeTestResources>
<consoleOutput>false</consoleOutput>
<logViolationsToConsole>${checkstyle.logViolationsToConsole}</logViolationsToConsole>
<failsOnError>false</failsOnError>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.revapi</groupId>
<artifactId>revapi-maven-plugin</artifactId>
<version>0.9.4</version>
<dependencies>
<dependency>
<groupId>org.revapi</groupId>
<artifactId>revapi-java</artifactId>
<version>0.14.3</version>
</dependency>
</dependencies>
<configuration>
<oldArtifacts>
<artifact>${project.groupId}:${project.artifactId}:${revapi.oldKieVersion}</artifact>
</oldArtifacts>
<newArtifacts>
<artifact>${project.groupId}:${project.artifactId}:${revapi.newKieVersion}</artifact>
</newArtifacts>
<!-- By default revapi will check the oldArtifact against the currently executed build -->
<analysisConfigurationFiles>
<configurationFile>
<path>src/build/revapi-config.json</path>
<roots>
<root>filters</root>
<root>ignores</root>
</roots>
</configurationFile>
</analysisConfigurationFiles>
<!-- By default, revapi will only fail the build if there are potentially breaking or breaking changes. However, in the report
we want even non breaking changes to be present. -->
<reportSeverity>nonBreaking</reportSeverity>
<failSeverity>potentiallyBreaking</failSeverity>
</configuration>
<!-- Running two executions is a workaround to make sure we get a HTML report in case revapi finds
some incompatible changes. The "check" goal will simply fail the whole build before it could get
to the report. To make sure we always get a HTML report, the "report" goal needs to be executed
before the "check" goal.
Once https://github.com/revapi/revapi/issues/11 is fixed it should be possible to use single execution. -->
<executions>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<phase>verify</phase>
</execution>
<execution>
<!-- report can be found in ${build.directory}/site/revapi-report.html -->
<id>report</id>
<goals>
<goal>report</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-apache-regexp</artifactId>
<version>1.8.2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<!-- Split packages in combination with <Export-Package> causes bloated jars otherwise -->
<excludeDependencies>true</excludeDependencies>
<instructions>
<Bundle-SymbolicName>${java.module.name}</Bundle-SymbolicName>
<_removeheaders>Ignore-Package</_removeheaders>
<_nouses>true</_nouses>
<_snapshot>${osgi.snapshot.qualifier}</_snapshot>
<Bundle-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${osgi.snapshot.qualifier}</Bundle-Version>
<Automatic-Module-Name>${java.module.name}</Automatic-Module-Name>
</instructions>
<obrRepository>NONE</obrRepository>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
</excludes>
<argLine>-Xmx1024m -Dfile.encoding=UTF-8</argLine>
<systemPropertyVariables>
<apple.awt.UIElement>true</apple.awt.UIElement>
<org.uberfire.nio.git.daemon.enabled>false</org.uberfire.nio.git.daemon.enabled>
<org.uberfire.nio.git.ssh.enabled>false</org.uberfire.nio.git.ssh.enabled>
<org.uberfire.sys.repo.monitor.disabled>true</org.uberfire.sys.repo.monitor.disabled>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>${version.org.codehaus.cargo}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<includes>
<include>**/*IntegrationTest.java</include>
<include>**/*IT.java</include>
</includes>
<argLine>-Xmx1024m -Dfile.encoding=UTF-8</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${version.jacoco.plugin}</version>
<executions>
<execution>
<id>default-instrument</id>
<goals>
<goal>instrument</goal>
</goals>
</execution>
<execution>
<id>default-restore-instrumented-classes</id>
<goals>
<goal>restore-instrumented-classes</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>default-check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<haltOnFailure>${jacoco.haltOnFailure}</haltOnFailure>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>${jacoco.line.coveredratio.minimum}</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<!-- Packaging -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<configuration>
<archive>
<manifestEntries combine.children="append">
<Automatic-Module-Name>${java.module.name}</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</execution>
<!-- No OSGi manifestEntries for <goal>jar</goal>: if it supported, then felix has already added them -->
<execution>
<id>test-jar</id>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<skipIfEmpty>true</skipIfEmpty>
<excludes>
<exclude>**/logback-test.xml</exclude>
<exclude>**/jndi.properties</exclude>
</excludes>
<archive>
<manifestEntries>
<Bundle-SymbolicName>${java.module.name}.tests</Bundle-SymbolicName>
<Bundle-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${osgi.snapshot.qualifier}</Bundle-Version>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Vendor>${project.organization.name}</Bundle-Vendor>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
<configuration>
<archive>
<manifestEntries>
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
<Bundle-SymbolicName>${java.module.name}.source</Bundle-SymbolicName>
<Bundle-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${osgi.snapshot.qualifier}</Bundle-Version>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Vendor>${project.organization.name}</Bundle-Vendor>
<Eclipse-SourceBundle>${java.module.name};version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${osgi.snapshot.qualifier}";roots:="."</Eclipse-SourceBundle>
</manifestEntries>
</archive>
</configuration>
</execution>
<execution>
<id>attach-test-sources</id>
<goals>
<goal>test-jar-no-fork</goal>
</goals>
<configuration>
<archive>
<manifestEntries>
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
<Bundle-SymbolicName>${java.module.name}.tests.source</Bundle-SymbolicName>
<Bundle-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${osgi.snapshot.qualifier}</Bundle-Version>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Vendor>${project.organization.name}</Bundle-Vendor>
<Eclipse-SourceBundle>${java.module.name}.tests;version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${osgi.snapshot.qualifier}";roots:="."</Eclipse-SourceBundle>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.commonjava.maven.plugins</groupId>
<artifactId>project-sources-maven-plugin</artifactId>
<version>0.3</version>
<executions>
<execution>
<id>project-sources-archive</id>
<phase>initialize</phase>
<goals>
<goal>archive</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<dependencies>
<!-- Workaround for JDK9. Should be removed once we upgrade the plugin to version which depends directly on plexus-archiver 3.0.3+ -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>${version.plexus.archiver}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<dependencies>
<!-- Workaround for JDK9. Should be removed once we upgrade the plugin to version which depends directly on plexus-archiver 3.0.3+ -->
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-archiver</artifactId>
<version>${version.plexus.archiver}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>parse-version</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xml-maven-plugin</artifactId>
<version>1.0</version>
</plugin>
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
<version>2.3.9</version>
<extensions>true</extensions>
<dependencies>
<dependency>
<groupId>org.jboss.pressgang</groupId>
<artifactId>pressgang-xslt-ns</artifactId>
<version>3.1.3</version>
</dependency>
<dependency>
<groupId>org.jboss.pressgang</groupId>
<artifactId>pressgang-jdocbook-style</artifactId>
<type>jdocbook-style</type>