forked from jboss-developer/jboss-stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stacks.yaml
3543 lines (3108 loc) · 120 KB
/
stacks.yaml
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
# JBoss, Home of Professional Open Source
# Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
# contributors by the @authors tag. See the copyright.txt in the
# distribution for a full listing of individual contributors.
#
# Licensed 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.#All Rules
licenses:
- &lgpl http://www.gnu.org/copyleft/lesser.txt
- &lgpl21 http://www.gnu.org/licenses/lgpl-2.1.txt
#metadatas
- &lastSpecBomRelease 3.0.2.Final
# - &lastJDGBomRelease 6.2.0-redhat-1
# - &lastBRMSBomRelease 5.3.1-redhat-1
- &eap600SpecBomRelease 3.0.0.Final-redhat-1
- &eap601SpecBomRelease 3.0.1.Final-redhat-1
- &eap610SpecBomRelease 3.0.2.Final-redhat-3
- &eap620SpecBomRelease 3.0.2.Final-redhat-7
- &eap630SpecBomRelease 3.0.2.Final-redhat-13
- &eap601BomRelease 1.0.2.Final-redhat-1
- &eap610BomRelease 1.0.4.Final-redhat-4
- &eap620BomRelease 6.2.0.GA
- &eap630BomRelease 6.3.0.GA
- &lastEAPBomRelease 6.3.0.GA
- &lastWFKBomRelease 2.7.0-redhat-1
- &wfk21BomRelease 1.0.1.Final-redhat-1
- &wfk22BomRelease 1.0.4.Final-redhat-wfk-1
- &wfk23BomRelease 1.0.4.Final-redhat-wfk-2
- &wfk24BomRelease 2.4.0-redhat-2
- &wfk25BomRelease 2.5.0-redhat-1
- &wfk26BomRelease 2.6.0-redhat-1
- &wfk27BomRelease 2.7.0-redhat-1
- &oldArchetypeRelease 7.1.3.Final
- &wildflyArchetypeRelease 8.2.0.Final
- &wfk24ArchetypeRelease 2.4.0.Final
- &wfk25ArchetypeRelease 2.5.0.Final
- &wfk26ArchetypeRelease 2.6.0.Final
- &wfk27ArchetypeRelease 2.7.0.Final
- &eap620ArchetypeRelease 6.2.0.GA
- &eap630ArchetypeRelease 6.3.0.GA
#################################################################
# #
# L I S T O F A L L A V A I L A B L E B O M S #
# #
#################################################################
availableBoms:
##############################
# S P E C S B O M S #
##############################
- &jboss-javaee-6_0-all
id: jboss-javaee-6_0-all
name: Java EE 6 All
description: Bill of Materials for Java EE 6 APIs for use with JBoss AS 7
groupId: org.jboss.spec
artifactId: jboss-javaee-all-6.0
recommendedVersion: *lastSpecBomRelease
##############################
- &jboss-javaee-6_0-web
id: jboss-javaee-6_0-web
name: Java EE 6 Web
description: Bill of Materials for Java EE 6 Web Profile APIs for use with JBoss AS 7.0.0 Web Profile Configuration
groupId: org.jboss.spec
artifactId: jboss-javaee-web-6.0
recommendedVersion: *lastSpecBomRelease
###############################
- &jboss-javaee-6_0
id: jboss-javaee-6_0
name: Java EE 6
description: Dependency Management for Java EE 6 Specification APIs
groupId: org.jboss.spec
artifactId: jboss-javaee-6.0
recommendedVersion: *lastSpecBomRelease
##############################
##########################
# J D G B O M #
##########################
# TODO Waiting for Runtime
# - &jboss-javaee-6_0-with-infinispan
# id: jboss-javaee-6_0-with-infinispan
# name: Java EE 6 with Infinispan
# description: Dependency Management for Java EE 6 Specification APIs with Infinispan
# groupId: org.jboss.bom.jdg
# artifactId: jboss-javaee-6.0-with-infinispan
# recommendedVersion: *lastJDGBomRelease
##########################
# B R M S B O M #
##########################
# TODO Waiting for Runtime
# - &jboss-javaee-6_0-with-drools
# id: jboss-javaee-6_0-with-drools
# name: Java EE 6 with Drools
# description: Dependency Management for Java EE 6 Specification APIs with Drools
# groupId: org.jboss.bom.brms
# artifactId: jboss-javaee-6.0-with-drools
# recommendedVersion: *lastBRMSBomRelease
##########################
# B O M S #
##########################
- &jboss-javaee-6_0-with-deltaspike-old
id: jboss-javaee-6_0-with-deltaspike-old
name: Java EE 6 with Deltaspike (Old BOM)
description: Dependency Management for Java EE 6 Specification APIs with Deltaspike
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-deltaspike
recommendedVersion: *wfk23BomRelease
- &jboss-javaee-6_0-with-deltaspike
id: jboss-javaee-6_0-with-deltaspike
name: Java EE 6 with Deltaspike (WFK BOM)
description: Dependency Management for Java EE 6 Specification APIs with Deltaspike
groupId: org.jboss.bom.wfk
artifactId: jboss-javaee-6.0-with-deltaspike
recommendedVersion: *lastWFKBomRelease
##############################
- &jboss-javaee-6_0-with-errai-old
id: jboss-javaee-6_0-with-errai-old
name: Java EE 6 with Errai and GWT (Old BOM)
description: Errai provides a comprehensive framework and tools for building rich web applications, leveraging the GWT compiler. With standard server-side APIs, such as CDI, in the browser, managing large web applications was never so easy. This BOM adds both Errai and GWT to your project.
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-errai
recommendedVersion: *wfk23BomRelease
- &jboss-javaee-6_0-with-errai-wfk21
id: jboss-javaee-6_0-with-errai-wfk21
name: Java EE 6 with Errai and GWT (WFK 2.1 BOM)
description: Errai provides a comprehensive framework and tools for building rich web applications, leveraging the GWT compiler. With standard server-side APIs, such as CDI, in the browser, managing large web applications was never so easy. This BOM adds both Errai and GWT to your project.
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-errai
recommendedVersion: *wfk21BomRelease
- &jboss-javaee-6_0-with-errai
id: jboss-javaee-6_0-with-errai
name: Java EE 6 with Errai and GWT (WFK BOM)
description: Errai provides a comprehensive framework and tools for building rich web applications, leveraging the GWT compiler. With standard server-side APIs, such as CDI, in the browser, managing large web applications was never so easy. This BOM adds both Errai and GWT to your project.
groupId: org.jboss.bom.wfk
artifactId: jboss-javaee-6.0-with-errai
recommendedVersion: *wfk24BomRelease
##############################
- &jboss-javaee-6_0-with-hibernate-old
id: jboss-javaee-6_0-with-hibernate-old
name: Java EE 6 with Hibernate (Old BOM)
description: Historically, Hibernate facilitated the storage and retrieval of Java domain objects via Object/Relational Mapping. Today, Hibernate is a collection of related projects enabling developers to utilize POJO-style domain models in their applications in ways extending well beyond Object/Relational Mapping. This BOM builds on the Java EE full profile BOM, adding Hibernate Community projects including Hibernate ORM, and Hibernate Validator. It also provides tool projects such as Hibernate JPA Model Gen and Hibernate Validator Annotation Processor.
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-hibernate
recommendedVersion: *eap610BomRelease
- &jboss-javaee-6_0-with-hibernate-wfk21
id: jboss-javaee-6_0-with-hibernate-wfk21
name: Java EE 6 with Hibernate (WFK 2.1 BOM)
description: Historically, Hibernate facilitated the storage and retrieval of Java domain objects via Object/Relational Mapping. Today, Hibernate is a collection of related projects enabling developers to utilize POJO-style domain models in their applications in ways extending well beyond Object/Relational Mapping. This BOM builds on the Java EE full profile BOM, adding Hibernate Community projects including Hibernate ORM, Hibernate Search and Hibernate Validator. It also provides tool projects such as Hibernate JPA Model Gen and Hibernate Validator Annotation Processor.
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-hibernate
recommendedVersion: *wfk21BomRelease
- &jboss-javaee-6_0-with-hibernate
id: jboss-javaee-6_0-with-hibernate
name: Java EE 6 with Hibernate (EAP BOM)
description: Historically, Hibernate facilitated the storage and retrieval of Java domain objects via Object/Relational Mapping. Today, Hibernate is a collection of related projects enabling developers to utilize POJO-style domain models in their applications in ways extending well beyond Object/Relational Mapping. This BOM builds on the Java EE full profile BOM, adding Hibernate Community projects including Hibernate ORM, Hibernate Search and Hibernate Validator. It also provides tool projects such as Hibernate JPA Model Gen and Hibernate Validator Annotation Processor.
groupId: org.jboss.bom.eap
artifactId: jboss-javaee-6.0-with-hibernate
recommendedVersion: *lastEAPBomRelease
###################################
- &jboss-javaee-6_0-with-hibernate3-old
id: jboss-javaee-6_0-with-hibernate3-old
name: Java EE 6 with Hibernate 3 (Old BOM)
description: Dependency Management for Java EE 6 Specification APIs with Hibernate 3 projects.
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-hibernate3
recommendedVersion: *eap610BomRelease
- &jboss-javaee-6_0-with-hibernate3-wfk21
id: jboss-javaee-6_0-with-hibernate3-wfk21
name: Java EE 6 with Hibernate 3 (WFK 2.1 BOM)
description: Dependency Management for Java EE 6 Specification APIs with Hibernate 3 projects.
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-hibernate3
recommendedVersion: *wfk21BomRelease
- &jboss-javaee-6_0-with-hibernate3
id: jboss-javaee-6_0-with-hibernate3
name: Java EE 6 with Hibernate 3 (EAP BOM)
description: Dependency Management for Java EE 6 Specification APIs with Hibernate 3 projects.
groupId: org.jboss.bom.eap
artifactId: jboss-javaee-6.0-with-hibernate3
recommendedVersion: *lastEAPBomRelease
#############################
- &jboss-javaee-6_0-with-hsearch
id: jboss-javaee-6_0-with-hsearch
name: Java EE 6 with Hibernate Search (WFK BOM)
description: Dependency Management for Java EE 6 Specification APIs with Hibernate Search.
groupId: org.jboss.bom.wfk
artifactId: jboss-javaee-6.0-with-hsearch
recommendedVersion: *lastWFKBomRelease
##############################
- &jboss-javaee-6_0-with-infinispan-old
id: jboss-javaee-6_0-with-infinispan-old
name: Java EE 6 with Infinispan (Old BOM)
description: Dependency Management for Java EE 6 Specification APIs with Infinispan
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-infinispan
recommendedVersion: *eap610BomRelease
- &jboss-javaee-6_0-with-infinispan-wfk21
id: jboss-javaee-6_0-with-infinispan-wfk21
name: Java EE 6 with Infinispan (WFK 2.1 BOM)
description: Dependency Management for Java EE 6 Specification APIs with Infinispan
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-infinispan
recommendedVersion: *wfk21BomRelease
####################################
- &jboss-javaee-6_0-with-logging-old
id: jboss-javaee-6_0-with-logging-old
name: Java EE 6 with Logging Tools (Old BOM)
description: Dependency Management for Java EE 6 Specification APIs with Logging Tools
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-logging
recommendedVersion: *eap610BomRelease
- &jboss-javaee-6_0-with-logging-wfk21
id: jboss-javaee-6_0-with-logging-wfk21
name: Java EE 6 with Logging Tools (WFK 2.1 BOM)
description: Dependency Management for Java EE 6 Specification APIs with Logging Tools
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-logging
recommendedVersion: *wfk21BomRelease
- &jboss-javaee-6_0-with-logging
id: jboss-javaee-6_0-with-logging
name: Java EE 6 with Logging Tools (EAP BOM)
description: Dependency Management for Java EE 6 Specification APIs with Logging Tools
groupId: org.jboss.bom.eap
artifactId: jboss-javaee-6.0-with-logging
recommendedVersion: *lastEAPBomRelease
###################################
- &jboss-javaee-6_0-with-osgi-old
id: jboss-javaee-6_0-with-osgi-old
name: Java EE 6 with OSGI (Old BOM)
description: Dependency Management for Java EE 6 Specification APIs with OSGI.
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-osgi
recommendedVersion: *eap610BomRelease
- &jboss-javaee-6_0-with-osgi-wfk21
id: jboss-javaee-6_0-with-osgi-wfk21
name: Java EE 6 with OSGI (WFK 2.1 BOM)
description: Dependency Management for Java EE 6 Specification APIs with OSGI.
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-osgi
recommendedVersion: *wfk21BomRelease
- &jboss-javaee-6_0-with-osgi
id: jboss-javaee-6_0-with-osgi
name: Java EE 6 with OSGI (EAP BOM)
description: Dependency Management for Java EE 6 Specification APIs with OSGI.
groupId: org.jboss.bom.eap
artifactId: jboss-javaee-6.0-with-osgi
recommendedVersion: *lastEAPBomRelease
####################################
- &jboss-javaee-6_0-with-resteasy
id: jboss-javaee-6_0-with-resteasy
name: Java EE 6 with Resteasy (EAP BOM)
description: Dependency Management for Java EE 6 Specification APIs with Resteasy.
groupId: org.jboss.bom.eap
artifactId: jboss-javaee-6.0-with-resteasy
recommendedVersion: *lastEAPBomRelease
####################################
- &jboss-javaee-6_0-with-richfaces-old
id: jboss-javaee-6_0-with-richfaces-old
name: Java EE 6 with Richfaces (Old BOM)
description: Dependency Management for Java EE 6 Specification APIs with Richfaces.
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-richfaces
recommendedVersion: *wfk23BomRelease
- &jboss-javaee-6_0-with-richfaces-wfk21
id: jboss-javaee-6_0-with-richfaces-wfk21
name: Java EE 6 with Richfaces (WFK 2.1 BOM)
description: Dependency Management for Java EE 6 Specification APIs with Richfaces.
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-richfaces
recommendedVersion: *wfk21BomRelease
- &jboss-javaee-6_0-with-richfaces
id: jboss-javaee-6_0-with-richfaces
name: Java EE 6 with Richfaces (WFK BOM)
description: Dependency Management for Java EE 6 Specification APIs with Richfaces.
groupId: org.jboss.bom.wfk
artifactId: jboss-javaee-6.0-with-richfaces
recommendedVersion: *lastWFKBomRelease
##################################
- &jboss-javaee-6_0-with-security-old
id: jboss-javaee-6_0-with-security-old
name: Java EE 6 with Security (Old BOM)
description: Dependency Management for Java EE 6 Specification APIs with JBoss specific Security features. Currently included is JBoss Negotiation.
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-security
recommendedVersion: *eap610BomRelease
- &jboss-javaee-6_0-with-security-wfk21
id: jboss-javaee-6_0-with-security-wfk21
name: Java EE 6 with Security (WFK 2.1 BOM)
description: Dependency Management for Java EE 6 Specification APIs with JBoss specific Security features. Currently included is JBoss Negotiation.
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-security
recommendedVersion: *wfk21BomRelease
- &jboss-javaee-6_0-with-security
id: jboss-javaee-6_0-with-security
name: Java EE 6 with Security (EAP BOM)
description: Dependency Management for Java EE 6 Specification APIs with JBoss specific Security features. Currently included is JBoss Negotiation.
groupId: org.jboss.bom.eap
artifactId: jboss-javaee-6.0-with-security
recommendedVersion: *lastEAPBomRelease
###############################
- &jboss-javaee-6_0-with-spring
id: jboss-javaee-6_0-with-spring
name: Java EE 6 with Spring 3 (WFK BOM)
description: Dependency Management for Java EE 6 Specification APIs with Spring 3
groupId: org.jboss.bom.wfk
artifactId: jboss-javaee-6.0-with-spring
recommendedVersion: *lastWFKBomRelease
###############################
- &jboss-javaee-6_0-with-spring4
id: jboss-javaee-6_0-with-spring4
name: Java EE 6 with Spring 4 (WFK BOM)
description: Dependency Management for Java EE 6 Specification APIs with Spring 4
groupId: org.jboss.bom.wfk
artifactId: jboss-javaee-6.0-with-spring4
recommendedVersion: *lastWFKBomRelease
###############################
- &jboss-javaee-6_0-with-spring4_1
id: jboss-javaee-6_0-with-spring4_1
name: Java EE 6 with Spring 4.1 (WFK BOM)
description: Dependency Management for Java EE 6 Specification APIs with Spring 4.1
groupId: org.jboss.bom.wfk
artifactId: jboss-javaee-6.0-with-spring4.1
recommendedVersion: *lastWFKBomRelease
###############################
- &jboss-javaee-6_0-with-tools-old
id: jboss-javaee-6_0-with-tools-old
name: Java EE 6 with tools recommended by JBoss (Old BOM)
description: Java EE lacks any testing APIs, and for this reason JBoss developed the Arquillian project, along with its various component projects, such as Arquillian Drone, and the sister project Shrinkwrap. This BOM builds on the Java EE full profile BOM, adding Arquillian to the mix. It also provides a version of JUnit and TestNG recommended for use with Arquillian. Furthermore, this BOM adds the JBoss AS Maven deployment plugin. EAP 6s recommended mode of deployment is via the management APIs, and the Maven plugin is the recommended way to do this, if the customer is using Maven for building.
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-tools
recommendedVersion: *eap610BomRelease
- &jboss-javaee-6_0-with-tools-wfk21
id: jboss-javaee-6_0-with-tools-wfk21
name: Java EE 6 with tools recommended by JBoss (WFK 2.1 BOM)
description: Java EE lacks any testing APIs, and for this reason JBoss developed the Arquillian project, along with its various component projects, such as Arquillian Drone, and the sister project Shrinkwrap. This BOM builds on the Java EE full profile BOM, adding Arquillian to the mix. It also provides a version of JUnit and TestNG recommended for use with Arquillian. Furthermore, this BOM adds the JBoss AS Maven deployment plugin. EAP 6s recommended mode of deployment is via the management APIs, and the Maven plugin is the recommended way to do this, if the customer is using Maven for building.
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-tools
recommendedVersion: *wfk21BomRelease
- &jboss-javaee-6_0-with-tools-eap
id: jboss-javaee-6_0-with-tools-eap
name: Java EE 6 with tools recommended by JBoss (EAP BOM)
description: Java EE lacks any testing APIs, and for this reason JBoss developed the Arquillian project, along with its various component projects, such as Arquillian Drone, and the sister project Shrinkwrap. This BOM builds on the Java EE full profile BOM, adding Arquillian to the mix. It also provides a version of JUnit and TestNG recommended for use with Arquillian. Furthermore, this BOM adds the JBoss AS Maven deployment plugin. EAP 6s recommended mode of deployment is via the management APIs, and the Maven plugin is the recommended way to do this, if the customer is using Maven for building.
groupId: org.jboss.bom.eap
artifactId: jboss-javaee-6.0-with-tools
recommendedVersion: *lastEAPBomRelease
- &jboss-javaee-6_0-with-tools-wfk
id: jboss-javaee-6_0-with-tools-wfk
name: Java EE 6 with tools recommended by JBoss (WFK BOM)
description: Java EE lacks any testing APIs, and for this reason JBoss developed the Arquillian project, along with its various component projects, such as Arquillian Drone, and the sister project Shrinkwrap. This BOM builds on the Java EE full profile BOM, adding Arquillian to the mix. It also provides a version of JUnit and TestNG recommended for use with Arquillian. Furthermore, this BOM adds the JBoss AS Maven deployment plugin. EAP 6s recommended mode of deployment is via the management APIs, and the Maven plugin is the recommended way to do this, if the customer is using Maven for building.
groupId: org.jboss.bom.wfk
artifactId: jboss-javaee-6.0-with-tools
recommendedVersion: *lastWFKBomRelease
################################
- &jboss-javaee-6_0-with-transactions-old
id: jboss-javaee-6_0-with-transactions-old
name: Java EE 6 with JBoss Transactions (Old BOM)
description: JBoss AS includes a world class transaction manager. In order to access its full capabilites, including for example XTS, WS-AT and WS-BA, you need to use the JBossTS APIs. This BOM adds the JBossTS APIs to the stack.
groupId: org.jboss.bom
artifactId: jboss-javaee-6.0-with-transactions
recommendedVersion: *eap610BomRelease
- &jboss-javaee-6_0-with-transactions-wfk21
id: jboss-javaee-6_0-with-transactions-wfk21
name: Java EE 6 with JBoss Transactions (WFK 2.1 BOM)
description: JBoss AS includes a world class transaction manager. In order to access its full capabilites, including for example XTS, WS-AT and WS-BA, you need to use the JBossTS APIs. This BOM adds the JBossTS APIs to the stack.
groupId: com.redhat.jboss.wfk.boms
artifactId: jboss-javaee-6.0-with-transactions
recommendedVersion: *wfk21BomRelease
- &jboss-javaee-6_0-with-transactions
id: jboss-javaee-6_0-with-transactions
name: Java EE 6 with JBoss Transactions (EAP BOM)
description: JBoss AS includes a world class transaction manager. In order to access its full capabilites, including for example XTS, WS-AT and WS-BA, you need to use the JBossTS APIs. This BOM adds the JBossTS APIs to the stack.
groupId: org.jboss.bom.eap
artifactId: jboss-javaee-6.0-with-transactions
recommendedVersion: *lastEAPBomRelease
#########################
# W F K B O M S #
#########################
- &spring-2_5-bom-wfk
id: spring-2_5-bom-wfk
name: Spring 2.5 BOM (WFK BOM)
description: WFK Spring 2.5.0 dependencies
groupId: com.redhat.jboss.wfk.boms
artifactId: spring-2.5-bom
recommendedVersion: 2.7.0-redhat-1
- &spring-3_0-bom-wfk
id: spring-3_0-bom-wfk
name: Spring 3.0 BOM (WFK BOM)
description: WFK Spring 3.0.x dependencies
groupId: com.redhat.jboss.wfk.boms
artifactId: spring-3.0-bom
recommendedVersion: 2.7.0-redhat-1
- &spring-3_1-bom-wfk
id: spring-3_1-bom-wfk
name: Spring 3.1 BOM (WFK BOM)
description: WFK Spring 3.1.x dependencies
groupId: com.redhat.jboss.wfk.boms
artifactId: spring-3.1-bom
recommendedVersion: 2.7.0-redhat-1
- &spring-3_2-bom-wfk
id: spring-3_2-bom-wfk
name: Spring 3.2 BOM (WFK BOM)
description: WFK Spring 3.2.x dependencies
groupId: com.redhat.jboss.wfk.boms
artifactId: spring-3.2-bom
recommendedVersion: 2.7.0-redhat-1
##############################
# JBoss EAP 6.1 B O M S #
##############################
- &jboss-wfk-arquillian
id: jboss-wfk-arquillian
name: JBoss Web Framework Kit Arquillian Bill of Materials (Old BOM)
description: Dependency Management for Arquillian Testing Tool
groupId: org.jboss.bom
artifactId: jboss-wfk-arquillian
recommendedVersion: *eap610BomRelease
##############################
# JBoss Portal B O M S #
##############################
- &gatein-3_6-bom
id: gatein-3_6-bom
name: GateIn Portal 3.6 BOM (Old BOM)
description: Bill of Materials for GateIn Portal 3.6
groupId: org.jboss.bom
artifactId: gatein-3.6-bom
recommendedVersion: 1.0.1.Final
- &gatein-3_5-bom
id: gatein-3_5-bom
name: GateIn Portal 3.5 BOM (Old BOM)
description: Bill of Materials for GateIn Portal 3.5
groupId: org.jboss.bom
artifactId: gatein-3.5-bom
recommendedVersion: 1.0.0.Final-redhat-2
#####################################################################################
# #
# L I S T O F A L L A V A I L A B L E B O M V E R S I O N S #
# #
#####################################################################################
availableBomVersions:
###################
# Java EE 6 All #
###################
- &jboss-javaee-6_0-all-last
id: jboss-javaee-6_0-all-last
bom: *jboss-javaee-6_0-all
version: *lastSpecBomRelease
labels: {}
- &jboss-javaee-6_0-all-eap601
id: jboss-javaee-6_0-all-eap601
bom: *jboss-javaee-6_0-all
version: *eap601SpecBomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
###################
# Java EE 6 Web #
###################
- &jboss-javaee-6_0-web-last
id: jboss-javaee-6_0-web-last
bom: *jboss-javaee-6_0-web
version: *lastSpecBomRelease
labels: {}
- &jboss-javaee-6_0-web-300redhat1
id: jboss-javaee-6_0-web-300redhat1
bom: *jboss-javaee-6_0-web
version: 3.0.0.Final-redhat-1
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-web-eap601
id: jboss-javaee-6_0-web-eap601
bom: *jboss-javaee-6_0-web
version: *eap601SpecBomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-web-eap61
id: jboss-javaee-6_0-web-eap61
bom: *jboss-javaee-6_0-web
version: *eap610SpecBomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-web-eap62
id: jboss-javaee-6_0-web-eap62
bom: *jboss-javaee-6_0-web
version: *eap620SpecBomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-web-eap63
id: jboss-javaee-6_0-web-eap63
bom: *jboss-javaee-6_0-web
version: *eap630SpecBomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
#################
# Java EE 6 #
#################
- &jboss-javaee-6_0-last
id: jboss-javaee-6_0-last
bom: *jboss-javaee-6_0
version: *lastSpecBomRelease
labels: {}
- &jboss-javaee-6_0-300redhat1
id: jboss-javaee-6_0-300redhat1
bom: *jboss-javaee-6_0
version: 3.0.0.Final-redhat-1
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-eap601
id: jboss-javaee-6_0-eap601
bom: *jboss-javaee-6_0
version: *eap601SpecBomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-eap61
id: jboss-javaee-6_0-eap61
bom: *jboss-javaee-6_0
version: *eap610SpecBomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-eap62
id: jboss-javaee-6_0-eap62
bom: *jboss-javaee-6_0
version: *eap620SpecBomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-eap63
id: jboss-javaee-6_0-eap63
bom: *jboss-javaee-6_0
version: *eap630SpecBomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
###################################
# PRODUCT B O M s VERSIONS #
###################################
- &jboss-javaee-6_0-with-deltaspike-eap61
id: jboss-javaee-6_0-with-deltaspike-eap61
bom: *jboss-javaee-6_0-with-deltaspike-old
version: *eap610BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-deltaspike-wfk-22
id: jboss-javaee-6_0-with-deltaspike-wfk-22
bom: *jboss-javaee-6_0-with-deltaspike-old
version: *wfk22BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-deltaspike-wfk-23
id: jboss-javaee-6_0-with-deltaspike-wfk-23
bom: *jboss-javaee-6_0-with-deltaspike-old
version: *wfk23BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-deltaspike-wfk-24
id: jboss-javaee-6_0-with-deltaspike-wfk-24
bom: *jboss-javaee-6_0-with-deltaspike
version: *wfk24BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-deltaspike-wfk-25
id: jboss-javaee-6_0-with-deltaspike-wfk-25
bom: *jboss-javaee-6_0-with-deltaspike
version: *wfk25BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-deltaspike-wfk-26
id: jboss-javaee-6_0-with-deltaspike-wfk-26
bom: *jboss-javaee-6_0-with-deltaspike
version: *wfk26BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-deltaspike-wfk-27
id: jboss-javaee-6_0-with-deltaspike-wfk-27
bom: *jboss-javaee-6_0-with-deltaspike
version: *wfk27BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-errai-100m11-redhat1
id: jboss-javaee-6_0-with-errai-100m11-redhat1
bom: *jboss-javaee-6_0-with-errai-old
version: 1.0.0.M11-redhat-1
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-errai-eap601
id: jboss-javaee-6_0-with-errai-eap601
bom: *jboss-javaee-6_0-with-errai-old
version: *eap601BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-errai-eap61
id: jboss-javaee-6_0-with-errai-eap61
bom: *jboss-javaee-6_0-with-errai-old
version: *eap610BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-errai-wfk-21
id: jboss-javaee-6_0-with-errai-wfk-21
bom: *jboss-javaee-6_0-with-errai-wfk21
version: *wfk21BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-errai-wfk-22
id: jboss-javaee-6_0-with-errai-wfk-22
bom: *jboss-javaee-6_0-with-errai-old
version: *wfk22BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-errai-wfk-23
id: jboss-javaee-6_0-with-errai-wfk-23
bom: *jboss-javaee-6_0-with-errai-old
version: *wfk23BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-errai-wfk-24
id: jboss-javaee-6_0-with-errai-wfk-24
bom: *jboss-javaee-6_0-with-errai
version: *wfk24BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate-100m11-redhat1
id: jboss-javaee-6_0-with-hibernate-100m11-redhat1
bom: *jboss-javaee-6_0-with-hibernate-old
version: 1.0.0.M11-redhat-1
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate-100m12-redhat1
id: jboss-javaee-6_0-with-hibernate-100m12-redhat1
bom: *jboss-javaee-6_0-with-hibernate-old
version: 1.0.0.M12-redhat-1
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate-eap601
id: jboss-javaee-6_0-with-hibernate-eap601
bom: *jboss-javaee-6_0-with-hibernate-old
version: *eap601BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate-eap61
id: jboss-javaee-6_0-with-hibernate-eap61
bom: *jboss-javaee-6_0-with-hibernate-old
version: *eap610BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate-eap62
id: jboss-javaee-6_0-with-hibernate-eap62
bom: *jboss-javaee-6_0-with-hibernate
version: *eap620BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate-eap63
id: jboss-javaee-6_0-with-hibernate-eap63
bom: *jboss-javaee-6_0-with-hibernate
version: *eap630BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate-wfk-21
id: jboss-javaee-6_0-with-hibernate-wfk-21
bom: *jboss-javaee-6_0-with-hibernate-wfk21
version: *wfk21BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate-wfk-22
id: jboss-javaee-6_0-with-hibernate-wfk-22
bom: *jboss-javaee-6_0-with-hibernate-old
version: *wfk22BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate-wfk-23
id: jboss-javaee-6_0-with-hibernate-wfk-23
bom: *jboss-javaee-6_0-with-hibernate-old
version: *wfk23BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate3-eap601
id: jboss-javaee-6_0-with-hibernate3-eap601
bom: *jboss-javaee-6_0-with-hibernate3-old
version: *eap601BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate3-eap61
id: jboss-javaee-6_0-with-hibernate3-eap61
bom: *jboss-javaee-6_0-with-hibernate3-old
version: *eap610BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate3-eap62
id: jboss-javaee-6_0-with-hibernate3-eap62
bom: *jboss-javaee-6_0-with-hibernate3
version: *eap620BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate3-eap63
id: jboss-javaee-6_0-with-hibernate3-eap63
bom: *jboss-javaee-6_0-with-hibernate3
version: *eap630BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hibernate3-wfk-21
id: jboss-javaee-6_0-with-hibernate3-wfk-21
bom: *jboss-javaee-6_0-with-hibernate3-wfk21
version: *wfk21BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hsearch-wfk-24
id: jboss-javaee-6_0-with-hsearch-wfk-24
bom: *jboss-javaee-6_0-with-hsearch
version: *wfk24BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hsearch-wfk-25
id: jboss-javaee-6_0-with-hsearch-wfk-25
bom: *jboss-javaee-6_0-with-hsearch
version: *wfk25BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},
}
- &jboss-javaee-6_0-with-hsearch-wfk-26
id: jboss-javaee-6_0-with-hsearch-wfk-26
bom: *jboss-javaee-6_0-with-hsearch
version: *wfk26BomRelease
labels: {
additionalRepositories: {
"redhat-techpreview-all-repository": "http://maven.repository.redhat.com/techpreview/all/",
},