summaryrefslogtreecommitdiff
path: root/java/wildfly/pkg-plist
blob: 83bdb55132bfbe0492fb93607ff4ac0cd75f8b6a (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
%%APP_HOME%%/.galleon/hashes/appclient/configuration/hashes
%%APP_HOME%%/.galleon/hashes/bin/client/hashes
%%APP_HOME%%/.galleon/hashes/bin/hashes
%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/hashes
%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/init.d/hashes
%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/service/amd64/hashes
%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/service/hashes
%%APP_HOME%%/.galleon/hashes/docs/contrib/scripts/systemd/hashes
%%APP_HOME%%/.galleon/hashes/docs/examples/configs/hashes
%%APP_HOME%%/.galleon/hashes/docs/examples/hashes
%%APP_HOME%%/.galleon/hashes/docs/licenses/hashes
%%APP_HOME%%/.galleon/hashes/docs/schema/hashes
%%APP_HOME%%/.galleon/hashes/domain/configuration/hashes
%%APP_HOME%%/.galleon/hashes/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/asm/asm/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/carrotsearch/hppc/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/classmate/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/jakarta/jackson-jakarta-json-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/ben-manes/caffeine/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/fge/btf/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/fge/jackson-coreutils/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/fge/json-patch/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/github/fge/msg-simple/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/google/code/gson/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/google/guava/failureaccess/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/google/guava/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/google/protobuf/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/googlecode/javaewah/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/h2database/h2/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/ibm/async/asyncutil/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/microsoft/azure/storage/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/nimbusds/nimbus-jose-jwt/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/squareup/okhttp3/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/squareup/protoparser/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/xml/bind/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/xml/fastinfoset/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/com/sun/xml/messaging/saaj/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/gnu/getopt/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/ibm/jdk/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/internal/javax/json/api/ee8/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/agroal/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/micrometer/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-buffer/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-codec-dns/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-codec-http/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-codec-http2/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-codec-socks/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-codec/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-handler-proxy/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-handler/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-resolver-dns/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-resolver/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-transport-native-epoll/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-transport-native-epoll/main/lib/META-INF/native/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-transport-native-kqueue/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-transport-native-kqueue/main/lib/META-INF/native/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-transport-native-unix-common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/netty/netty-transport/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentelemetry/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentelemetry/context/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentelemetry/exporter/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentelemetry/otlp/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentelemetry/proto/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/opentelemetry/sdk/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/reactivex/rxjava2/rxjava/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/reactivex/rxjava3/rxjava/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/common/annotation/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/common/classloader/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/common/constraint/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/common/expression/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/common/function/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/common/vertx-context/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/config/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/fault-tolerance/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/health/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/jandex/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/jwt/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/openapi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/opentelemetry/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/converters/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/messaging/connector/kafka/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/messaging/connector/kafka/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/messaging/connector/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/messaging/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/mutiny/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/mutiny/reactive-streams-operators/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/mutiny/vertx-core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/mutiny/vertx-kafka-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/mutiny/vertx-runtime/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/mutiny/zero-flow-adapters/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/smallrye/reactive/mutiny/zero/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/undertow/core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/undertow/jsp/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/undertow/servlet/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/undertow/websocket/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/vertx/client/kafka/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/vertx/client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/io/vertx/core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/activation/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/annotation/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/batch/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/ejb/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/el/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/enterprise/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/enterprise/concurrent/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/faces/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/faces/impl/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/inject/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/interceptor/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/jms/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/json/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/json/bind/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/mail/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/persistence/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/resource/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/security/auth/message/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/security/enterprise/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/security/jacc/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/servlet/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/servlet/jsp/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/servlet/jstl/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/transaction/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/validation/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/websocket/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/ws/rs/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/xml/bind/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/xml/soap/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/jakarta/xml/ws/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javaee/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/activation/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/annotation/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/batch/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/ejb/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/el/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/enterprise/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/enterprise/concurrent/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/faces/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/inject/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/interceptor/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/jms/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/json/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/json/bind/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/jws/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/mail/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/orb/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/persistence/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/resource/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/rmi/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/security/auth/message/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/security/enterprise/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/security/jacc/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/servlet/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/servlet/jsp/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/servlet/jstl/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/sql/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/transaction/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/validation/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/websocket/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/ws/rs/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/wsdl4j/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/xml/bind/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/xml/soap/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/xml/stream/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/javax/xml/ws/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/net/bytebuddy/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/net/jcip/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/aesh/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/antlr/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/journal/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-i686/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-x86_64/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/activemq/artemis/ra/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/beanutils/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/cli/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/codec/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/collections/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/io/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/lang3/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/commons/logging/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/cxf/impl/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/cxf/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/cxf/services-sts/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/cxf/ws-security/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/httpcomponents/core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/httpcomponents/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/james/mime4j/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/kafka/client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/logging/log4j/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/lucene/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/neethi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/qpid/proton/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/santuario/xmlsec/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/sshd/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/velocity/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/ws/security/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/ws/xmlschema/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/xerces/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/apache/xml-resolver/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/bitbucket/jose4j/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/bouncycastle/bcmail/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/bouncycastle/bcpg/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/bouncycastle/bcpkix/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/bouncycastle/bcprov/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/bouncycastle/bcutil/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/bouncycastle/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/codehaus/woodstox/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/angus/activation/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/angus/mail/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/jdt/ecj/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/jgit/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/config/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/fault-tolerance/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/health/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/jwt/auth/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/lra/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/openapi/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/reactive-messaging/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/reactive-streams-operators/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/reactive-streams-operators/core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/microprofile/restclient/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/parsson/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/persistence/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/eclipse/yasson/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/elasticsearch/client/rest-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/fusesource/jansi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/expressly/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/jakarta/el/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/jakarta/enterprise/concurrent/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/javax/el/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/jaxb/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/glassfish/soteria/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/commons-annotations/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/envers/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/infinispan/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/jipijapa-hibernate6/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/backend/elasticsearch/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/backend/lucene/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/engine/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/jipijapa-hibernatesearch/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/mapper/orm/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/mapper/pojo/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/search/orm/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/validator/cdi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hibernate/validator/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/hornetq/client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/cachestore/remote/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/cdi/common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/cdi/embedded/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/cdi/remote/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/client/hotrod/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/commons/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/component/annotations/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/counter/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/hibernate-cache/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/lock/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/objectfilter/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/persistence/jdbc/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/persistence/remote/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/protostream/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/protostream/types/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/query/client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/query/core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/query/dsl/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/infinispan/query/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jasypt/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jberet/jberet-core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/appclient/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/cli/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/clustering/web/infinispan/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/connector/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/console/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/controller-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/controller/main/dir/META-INF/services/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/controller/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/core-security/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/deployment-repository/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/deployment-scanner/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/domain-add-user/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/domain-http-interface/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/domain-management/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/ee/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/ejb3/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/ejb3/main/timers/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/host-controller/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jaxrs/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jdr/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jdr/main/resources/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jmx/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jpa/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jpa/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jsf-injection/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jsf/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/jsr77/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/logging/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/mail/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/management-client-content/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/modcluster/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/naming/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/network/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/patching/cli/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/patching/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/platform-mbean/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/pojo/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/process-controller/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/product/main/dir/META-INF/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/product/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/protocol/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/remoting/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/sar/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/security/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/server/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/standalone/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/system-jmx/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/threads/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/transactions/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/version/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/web-common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/webservices/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/webservices/server/integration/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/beanvalidation/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/ejb/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/jpa/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/transactions/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/weld/webservices/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/as/xts/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/classfilewriter/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/common-beans/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/dmr/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ejb-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ejb3/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/genericjms/main/META-INF/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/genericjms/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/iiop-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/invocation/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ironjacamar/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ironjacamar/impl/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jandex/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jaxbintros/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jboss-transaction-spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jts/integration/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/jts/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/logging/commons/logging/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/logging/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/logmanager/log4j2/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/logmanager/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/marshalling/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/marshalling/river/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/appclient/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/ear/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/ejb/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/metadata/web/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/mod_cluster/core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/mod_cluster/load/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/msc/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/narayana/compensations/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/narayana/rts/lra-coordinator/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/narayana/rts/lra-participant/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/narayana/rts/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/remote-naming/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/remoting-jmx/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/remoting/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/microprofile/config/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-client-api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-client-microprofile/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-core-spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-json-binding-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-rxjava2/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/bundled/resteasy-spring-jar/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-tracing-api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/staxmapper/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/stdio/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/threads/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/vfs/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/weld/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/weld/core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/weld/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/cxf/sts/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/jaxws-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/saaj-impl/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/tools/common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/tools/wsconsume/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/ws/tools/wsprovide/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/xnio/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/xnio/nio/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jboss/xts/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jctools/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jetbrains/kotlin/kotlin-stdlib/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jgroups/aws/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jgroups/azure/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jgroups/kubernetes/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/jgroups/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/joda/time/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/keycloak/keycloak-adapter-subsystem/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/omg/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/opensaml/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/projectodd/vdx/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/reactivestreams/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/slf4j/impl/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/slf4j/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/bootable-jar/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/client/config/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/context/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/cache/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/hotrod/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/infinispan/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/cache/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/infinispan/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/el/expressly/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/faces/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/faces/mojarra/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/client/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/client/service/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/client/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/embedded/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/embedded/service/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/embedded/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/marshalling/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/jgroups/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/jgroups/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/jboss/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/protostream/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/infinispan/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/service/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/service/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/server/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/service/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/cache/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/container/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/hotrod/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/infinispan/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/service/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/spi/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/undertow/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/weld/core/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/weld/ejb/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/clustering/weld/web/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/discovery/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/embedded/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/event/logger/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/batch/jberet/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/bean-validation/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/ejb/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/server/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/singleton/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/web/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/core-management-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/core-management/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/datasources-agroal/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/discovery/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/ee-security/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/elytron-oidc-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/elytron/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/health/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/io/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/messaging-activemq/injection/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/messaging-activemq/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/metrics/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/micrometer/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/config-smallrye/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/fault-tolerance-smallrye/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/health-smallrye/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/jwt-smallrye/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/lra-coordinator/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/lra-participant/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/metrics-smallrye/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/openapi-smallrye/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/opentracing-smallrye/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/reactive-messaging-smallrye/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/reactive-streams-operators-smallrye/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/telemetry-api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/telemetry/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/mod_cluster/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/opentelemetry-api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/opentelemetry/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/picketlink/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/request-controller/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/rts/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/security/manager/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/extension/undertow/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/http-client/common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/http-client/ejb/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/http-client/naming/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/http-client/transaction/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/iiop-openjdk/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/installation-manager/api/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/installation-manager/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/micrometer/deployment/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/microprofile/fault-tolerance-smallrye/deployment/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/mod_cluster/undertow/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/naming-client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/naming/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/lib/linux-s390x/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/lib/linux-x86_64/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/lib/macosx-x86_64/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/lib/win-x86_64/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/reactive/dep/jts/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/reactive/messaging/common/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/reactive/messaging/config/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/reactive/messaging/kafka/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/reactive/mutiny/reactive-streams-operators/cdi-provider/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-http-oidc/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-jose-jwk/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-jose-util/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-jwt/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-private/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-tool/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-web/undertow-server-servlet/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-web/undertow-server/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/elytron/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/http/sfbasic/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/authentication/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/authorization/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/client/resteasy/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/client/webservices/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/security/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/security/manager/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/%%APP_HOME%%/transaction/client/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/org/yaml/snakeyaml/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/software/amazon/awssdk/s3/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/sun/jdk/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/sun/scripting/main/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/sun/scripting/main/service-loader-resources/META-INF/services/hashes
%%APP_HOME%%/.galleon/hashes/modules/system/layers/base/%%APP_HOME%%ee/api/main/hashes
%%APP_HOME%%/.galleon/hashes/standalone/configuration/hashes
%%APP_HOME%%/.galleon/hashes/standalone/deployments/hashes
%%APP_HOME%%/.galleon/hashes/welcome-content/hashes
%%APP_HOME%%/.galleon/provisioned.xml
%%APP_HOME%%/.galleon/provisioning.xml
%%APP_HOME%%/LICENSE.txt
%%APP_HOME%%/README.txt
%%APP_HOME%%/appclient/configuration/appclient.xml.sample
%%APP_HOME%%/appclient/configuration/logging.properties.sample
%%APP_HOME%%/bin/.jbossclirc
%%APP_HOME%%/bin/add-user.properties
%%APP_HOME%%/bin/add-user.sh
%%APP_HOME%%/bin/appclient.conf
%%APP_HOME%%/bin/appclient.sh
%%APP_HOME%%/bin/client/README-CLI-JCONSOLE.txt
%%APP_HOME%%/bin/client/README-EJB-JMS.txt
%%APP_HOME%%/bin/client/jboss-cli-client.jar
%%APP_HOME%%/bin/client/jboss-client.jar
%%APP_HOME%%/bin/common.sh
%%APP_HOME%%/bin/domain.conf
%%APP_HOME%%/bin/domain.sh
%%APP_HOME%%/bin/elytron-tool.sh
%%APP_HOME%%/bin/installation-manager.properties
%%APP_HOME%%/bin/installation-manager.sh
%%APP_HOME%%/bin/jboss-cli-logging.properties
%%APP_HOME%%/bin/jboss-cli.sh
%%APP_HOME%%/bin/jboss-cli.xml
%%APP_HOME%%/bin/jconsole.sh
%%APP_HOME%%/bin/jdr.sh
%%APP_HOME%%/bin/launcher.jar
%%APP_HOME%%/bin/product.conf
%%APP_HOME%%/bin/standalone.conf
%%APP_HOME%%/bin/standalone.sh
%%APP_HOME%%/bin/%%APP_HOME%%-elytron-tool.jar
%%APP_HOME%%/bin/wsconsume.sh
%%APP_HOME%%/bin/wsprovide.sh
%%APP_HOME%%/copyright.txt
%%APP_HOME%%/docs/contrib/scripts/README.md
%%APP_HOME%%/docs/contrib/scripts/init.d/%%APP_HOME%%-init-debian.sh
%%APP_HOME%%/docs/contrib/scripts/init.d/%%APP_HOME%%-init-redhat.sh
%%APP_HOME%%/docs/contrib/scripts/init.d/%%APP_HOME%%.conf
%%APP_HOME%%/docs/contrib/scripts/service/amd64/%%APP_HOME%%-service.exe
%%APP_HOME%%/docs/contrib/scripts/service/service.bat
%%APP_HOME%%/docs/contrib/scripts/service/%%APP_HOME%%-mgr.exe
%%APP_HOME%%/docs/contrib/scripts/service/%%APP_HOME%%-service.exe
%%APP_HOME%%/docs/contrib/scripts/systemd/README
%%APP_HOME%%/docs/contrib/scripts/systemd/launch.sh
%%APP_HOME%%/docs/contrib/scripts/systemd/%%APP_HOME%%.conf
%%APP_HOME%%/docs/contrib/scripts/systemd/%%APP_HOME%%.service
%%APP_HOME%%/docs/examples/configs/domain-ec2.xml
%%APP_HOME%%/docs/examples/configs/standalone-activemq-colocated.xml
%%APP_HOME%%/docs/examples/configs/standalone-azure-full-ha.xml
%%APP_HOME%%/docs/examples/configs/standalone-azure-ha.xml
%%APP_HOME%%/docs/examples/configs/standalone-core.xml
%%APP_HOME%%/docs/examples/configs/standalone-ec2-full-ha.xml
%%APP_HOME%%/docs/examples/configs/standalone-ec2-ha.xml
%%APP_HOME%%/docs/examples/configs/standalone-genericjms.xml
%%APP_HOME%%/docs/examples/configs/standalone-gossip-full-ha.xml
%%APP_HOME%%/docs/examples/configs/standalone-gossip-ha.xml
%%APP_HOME%%/docs/examples/configs/standalone-jts.xml
%%APP_HOME%%/docs/examples/configs/standalone-minimalistic.xml
%%APP_HOME%%/docs/examples/configs/standalone-rts.xml
%%APP_HOME%%/docs/examples/configs/standalone-xts.xml
%%APP_HOME%%/docs/examples/enable-microprofile.cli
%%APP_HOME%%/docs/licenses/MIT_CONTRIBUTORS.txt
%%APP_HOME%%/docs/licenses/apache license 2.0.txt
%%APP_HOME%%/docs/licenses/bsd 2-clause simplified license.html
%%APP_HOME%%/docs/licenses/bsd 3-clause new or revised license.html
%%APP_HOME%%/docs/licenses/common public license 1.0.txt
%%APP_HOME%%/docs/licenses/creative commons attribution 2.5.html
%%APP_HOME%%/docs/licenses/eclipse distribution license, version 1.0.txt
%%APP_HOME%%/docs/licenses/eclipse public license 1.0.txt
%%APP_HOME%%/docs/licenses/eclipse public license 2.0.txt
%%APP_HOME%%/docs/licenses/fsf all permissive license.html
%%APP_HOME%%/docs/licenses/gnu general public license v2.0 only, with classpath exception.txt
%%APP_HOME%%/docs/licenses/gnu lesser general public license v2.1 only.txt
%%APP_HOME%%/docs/licenses/gnu lesser general public license v2.1 or later.txt
%%APP_HOME%%/docs/licenses/gnu lesser general public license v3.0 only.txt
%%APP_HOME%%/docs/licenses/gnu lesser general public license v3.0 or later.txt
%%APP_HOME%%/docs/licenses/gnu library general public license v2 only.txt
%%APP_HOME%%/docs/licenses/indiana university extreme lab software license 1.1.1.html
%%APP_HOME%%/docs/licenses/licenses.css
%%APP_HOME%%/docs/licenses/licenses.html
%%APP_HOME%%/docs/licenses/licenses.xml
%%APP_HOME%%/docs/licenses/licenses.xsl
%%APP_HOME%%/docs/licenses/mit license.txt
%%APP_HOME%%/docs/licenses/mit-0.html
%%APP_HOME%%/docs/licenses/mozilla public license 2.0.html
%%APP_HOME%%/docs/licenses/%%APP_HOME%%-ee-feature-pack-licenses.html
%%APP_HOME%%/docs/licenses/%%APP_HOME%%-ee-feature-pack-licenses.xml
%%APP_HOME%%/docs/licenses/%%APP_HOME%%-feature-pack-licenses.html
%%APP_HOME%%/docs/licenses/%%APP_HOME%%-feature-pack-licenses.xml
%%APP_HOME%%/docs/schema/README.md
%%APP_HOME%%/docs/schema/application-client_10.xsd
%%APP_HOME%%/docs/schema/application-client_6.xsd
%%APP_HOME%%/docs/schema/application-client_7.xsd
%%APP_HOME%%/docs/schema/application-client_8.xsd
%%APP_HOME%%/docs/schema/application-client_9.xsd
%%APP_HOME%%/docs/schema/application_10.xsd
%%APP_HOME%%/docs/schema/application_1_4.xsd
%%APP_HOME%%/docs/schema/application_5.xsd
%%APP_HOME%%/docs/schema/application_6.xsd
%%APP_HOME%%/docs/schema/application_7.xsd
%%APP_HOME%%/docs/schema/application_8.xsd
%%APP_HOME%%/docs/schema/application_9.xsd
%%APP_HOME%%/docs/schema/batch-jberet_1_0.xsd
%%APP_HOME%%/docs/schema/discovery-1_0.xsd
%%APP_HOME%%/docs/schema/distributable-web_1_0.xsd
%%APP_HOME%%/docs/schema/distributable-web_2_0.xsd
%%APP_HOME%%/docs/schema/distributable-web_3_0.xsd
%%APP_HOME%%/docs/schema/distributable-web_4_0.xsd
%%APP_HOME%%/docs/schema/ejb-jar_2_1.xsd
%%APP_HOME%%/docs/schema/ejb-jar_3_0.xsd
%%APP_HOME%%/docs/schema/ejb-jar_3_1.xsd
%%APP_HOME%%/docs/schema/ejb-jar_3_2.xsd
%%APP_HOME%%/docs/schema/ejb-jar_4_0.xsd
%%APP_HOME%%/docs/schema/elytron-1_0.xsd
%%APP_HOME%%/docs/schema/elytron-1_0_1.xsd
%%APP_HOME%%/docs/schema/elytron-client-1_1.xsd
%%APP_HOME%%/docs/schema/elytron-client-1_2.xsd
%%APP_HOME%%/docs/schema/elytron-client-1_3.xsd
%%APP_HOME%%/docs/schema/elytron-client-1_4.xsd
%%APP_HOME%%/docs/schema/elytron-client-1_5.xsd
%%APP_HOME%%/docs/schema/elytron-client-1_6.xsd
%%APP_HOME%%/docs/schema/elytron-client-1_7.xsd
%%APP_HOME%%/docs/schema/elytron-identity-1_1.xsd
%%APP_HOME%%/docs/schema/elytron-identity-1_2.xsd
%%APP_HOME%%/docs/schema/j2ee_1_4.xsd
%%APP_HOME%%/docs/schema/j2ee_jaxrpc_mapping_1_1.xsd
%%APP_HOME%%/docs/schema/j2ee_web_services_1_1.xsd
%%APP_HOME%%/docs/schema/j2ee_web_services_client_1_1.xsd
%%APP_HOME%%/docs/schema/jakartaee_10.xsd
%%APP_HOME%%/docs/schema/jakartaee_9.xsd
%%APP_HOME%%/docs/schema/jakartaee_web_services_2_0.xsd
%%APP_HOME%%/docs/schema/jakartaee_web_services_client_2_0.xsd
%%APP_HOME%%/docs/schema/jakartaee_web_services_metadata_handler_3_0.xsd
%%APP_HOME%%/docs/schema/java-properties_1_0.xsd
%%APP_HOME%%/docs/schema/javaee_5.xsd
%%APP_HOME%%/docs/schema/javaee_6.xsd
%%APP_HOME%%/docs/schema/javaee_7.xsd
%%APP_HOME%%/docs/schema/javaee_8.xsd
%%APP_HOME%%/docs/schema/javaee_web_services_1_2.xsd
%%APP_HOME%%/docs/schema/javaee_web_services_1_3.xsd
%%APP_HOME%%/docs/schema/javaee_web_services_1_4.xsd
%%APP_HOME%%/docs/schema/javaee_web_services_client_1_2.xsd
%%APP_HOME%%/docs/schema/javaee_web_services_client_1_3.xsd
%%APP_HOME%%/docs/schema/javaee_web_services_client_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-app_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-app_7_1.xsd
%%APP_HOME%%/docs/schema/jboss-app_8_0.xsd
%%APP_HOME%%/docs/schema/jboss-app_8_1.xsd
%%APP_HOME%%/docs/schema/jboss-app_9_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-cli_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-cli_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-cli_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-cli_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-cli_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_5.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_6.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_7.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_8.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_2_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_2_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-datasources_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-datasources_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-deployment-scanner_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-deployment-scanner_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-deployment-scanner_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_4_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_5_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_6_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_5.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-iiop-openjdk_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_10_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_11_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_12_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_13_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_14_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_5.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_4_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_5_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_6_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_8_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_9_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_9_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jaxrs_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jaxrs_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jaxrs_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jca_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jdr_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_4_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_5_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_6_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_8_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_9_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jmx_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jmx_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jmx_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-jmx_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-jpa_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jpa_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jsf_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jsf_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jsr77_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_1_5.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_4_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_5_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_6_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_8_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-mail_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-mail_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-mail_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_4_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_5_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_6_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-pojo_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-remoting_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-remoting_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-remoting_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-resource-adapters_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-resource-adapters_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-sar_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-security_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-security_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-security_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-threads_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-threads_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_5.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-webservices_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-webservices_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-webservices_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-webservices_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-weld_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-weld_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-weld_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-weld_4_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-weld_5_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-xts_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-xts_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-xts_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-client_6_0.xsd
%%APP_HOME%%/docs/schema/jboss-client_8_0.xsd
%%APP_HOME%%/docs/schema/jboss-client_8_1.xsd
%%APP_HOME%%/docs/schema/jboss-client_9_0.xsd
%%APP_HOME%%/docs/schema/jboss-common_5_1.xsd
%%APP_HOME%%/docs/schema/jboss-common_6_0.xsd
%%APP_HOME%%/docs/schema/jboss-common_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-common_7_1.xsd
%%APP_HOME%%/docs/schema/jboss-common_8_0.xsd
%%APP_HOME%%/docs/schema/jboss-common_8_1.xsd
%%APP_HOME%%/docs/schema/jboss-common_9_0.xsd
%%APP_HOME%%/docs/schema/jboss-deployment-dependencies-1_0.xsd
%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_0.xsd
%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_1.xsd
%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_2.xsd
%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_3.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-cache_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-cache_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-client_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-client_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-client_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-client_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-client_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-client_1_5.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-clustering_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-clustering_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-container-interceptors_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-container-interceptors_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-delivery-active_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-delivery-active_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-delivery-active_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-delivery-active_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-iiop_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-iiop_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-iiop_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-iiop_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-pool_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-pool_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-resource-adapter-binding_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-resource-adapter-binding_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-security-role_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-security-role_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-security_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-security_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-security_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-timer-service_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb3-2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb3-2_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb3-4_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb3-spec-2_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb3-spec-2_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb3-spec-4_0.xsd
%%APP_HOME%%/docs/schema/jboss-jpa_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-pojo_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-remoting_5_0.xsd
%%APP_HOME%%/docs/schema/jboss-remoting_5_1.xsd
%%APP_HOME%%/docs/schema/jboss-remoting_5_2.xsd
%%APP_HOME%%/docs/schema/jboss-service_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-web_10_0.xsd
%%APP_HOME%%/docs/schema/jboss-web_10_1.xsd
%%APP_HOME%%/docs/schema/jboss-web_11_0.xsd
%%APP_HOME%%/docs/schema/jboss-web_11_1.xsd
%%APP_HOME%%/docs/schema/jboss-web_12_0.xsd
%%APP_HOME%%/docs/schema/jboss-web_12_1.xsd
%%APP_HOME%%/docs/schema/jboss-web_13_0.xsd
%%APP_HOME%%/docs/schema/jboss-web_14_0.xsd
%%APP_HOME%%/docs/schema/jboss-web_14_1.xsd
%%APP_HOME%%/docs/schema/jboss-web_15_0.xsd
%%APP_HOME%%/docs/schema/jboss-web_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-web_7_1.xsd
%%APP_HOME%%/docs/schema/jboss-web_7_2.xsd
%%APP_HOME%%/docs/schema/jboss-web_7_3.xsd
%%APP_HOME%%/docs/schema/jboss-web_8_0.xsd
%%APP_HOME%%/docs/schema/jboss-weld-1_0.xsd
%%APP_HOME%%/docs/schema/jboss-weld-1_1.xsd
%%APP_HOME%%/docs/schema/jbossws-jaxws-config_4_0.xsd
%%APP_HOME%%/docs/schema/jbossws-jaxws-config_5_0.xsd
%%APP_HOME%%/docs/schema/jbossws-web-services_1_0.xsd
%%APP_HOME%%/docs/schema/jbxb_1_0.xsd
%%APP_HOME%%/docs/schema/jndi-binding-service_1_0.xsd
%%APP_HOME%%/docs/schema/jsp_2_0.xsd
%%APP_HOME%%/docs/schema/jsp_2_1.xsd
%%APP_HOME%%/docs/schema/jsp_2_2.xsd
%%APP_HOME%%/docs/schema/jsp_2_3.xsd
%%APP_HOME%%/docs/schema/jsp_3_0.xsd
%%APP_HOME%%/docs/schema/jsp_3_1.xsd
%%APP_HOME%%/docs/schema/module-1_0.xsd
%%APP_HOME%%/docs/schema/module-1_1.xsd
%%APP_HOME%%/docs/schema/module-1_2.xsd
%%APP_HOME%%/docs/schema/module-1_3.xsd
%%APP_HOME%%/docs/schema/module-1_5.xsd
%%APP_HOME%%/docs/schema/module-1_6.xsd
%%APP_HOME%%/docs/schema/module-1_7.xsd
%%APP_HOME%%/docs/schema/module-1_8.xsd
%%APP_HOME%%/docs/schema/module-1_9.xsd
%%APP_HOME%%/docs/schema/orm_1_0.xsd
%%APP_HOME%%/docs/schema/persistence_1_0.xsd
%%APP_HOME%%/docs/schema/persistence_2_0.xsd
%%APP_HOME%%/docs/schema/persistence_3_0.xsd
%%APP_HOME%%/docs/schema/shared-session-config_1_0.xsd
%%APP_HOME%%/docs/schema/shared-session-config_2_0.xsd
%%APP_HOME%%/docs/schema/singleton-deployment_1_0.xsd
%%APP_HOME%%/docs/schema/trans-timeout-1_0.xsd
%%APP_HOME%%/docs/schema/trans-timeout-1_1.xsd
%%APP_HOME%%/docs/schema/trans-timeout-2_0.xsd
%%APP_HOME%%/docs/schema/user-roles_1_0.xsd
%%APP_HOME%%/docs/schema/web-app_2_4.xsd
%%APP_HOME%%/docs/schema/web-app_2_5.xsd
%%APP_HOME%%/docs/schema/web-app_3_0.xsd
%%APP_HOME%%/docs/schema/web-app_3_1.xsd
%%APP_HOME%%/docs/schema/web-app_4_0.xsd
%%APP_HOME%%/docs/schema/web-app_5_0.xsd
%%APP_HOME%%/docs/schema/web-app_6_0.xsd
%%APP_HOME%%/docs/schema/web-common_3_0.xsd
%%APP_HOME%%/docs/schema/web-common_3_1.xsd
%%APP_HOME%%/docs/schema/web-common_4_0.xsd
%%APP_HOME%%/docs/schema/web-common_5_0.xsd
%%APP_HOME%%/docs/schema/web-common_6_0.xsd
%%APP_HOME%%/docs/schema/web-facelettaglibrary_2_2.xsd
%%APP_HOME%%/docs/schema/web-facelettaglibrary_2_3.xsd
%%APP_HOME%%/docs/schema/web-facelettaglibrary_3_0.xsd
%%APP_HOME%%/docs/schema/web-facelettaglibrary_4_0.xsd
%%APP_HOME%%/docs/schema/web-facesconfig_1_2.xsd
%%APP_HOME%%/docs/schema/web-facesconfig_2_2.xsd
%%APP_HOME%%/docs/schema/web-facesconfig_3_0.xsd
%%APP_HOME%%/docs/schema/web-facesconfig_4_0.xsd
%%APP_HOME%%/docs/schema/web-fragment_3_0.xsd
%%APP_HOME%%/docs/schema/web-fragment_3_1.xsd
%%APP_HOME%%/docs/schema/web-fragment_4_0.xsd
%%APP_HOME%%/docs/schema/web-fragment_5_0.xsd
%%APP_HOME%%/docs/schema/web-fragment_6_0.xsd
%%APP_HOME%%/docs/schema/web-jsptaglibrary_2_0.xsd
%%APP_HOME%%/docs/schema/web-jsptaglibrary_2_1.xsd
%%APP_HOME%%/docs/schema/web-jsptaglibrary_3_0.xsd
%%APP_HOME%%/docs/schema/web-jsptaglibrary_3_1.xsd
%%APP_HOME%%/docs/schema/web-partialresponse_2_2.xsd
%%APP_HOME%%/docs/schema/web-partialresponse_2_3.xsd
%%APP_HOME%%/docs/schema/web-partialresponse_3_0.xsd
%%APP_HOME%%/docs/schema/web-partialresponse_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-agroal_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-agroal_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-batch-jberet_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-batch-jberet_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-batch-jberet_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-bean-validation_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-cli_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-cli_3_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-cli_3_2.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-cli_3_3.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-cli_3_4.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-cli_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-client-ejb_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-client-ejb_3_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-client-ejb_3_2.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-client_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_10_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_11_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_12_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_13_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_14_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_15_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_16_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_17_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_18_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_19_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_20_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_4_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_4_2.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_7_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_8_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-config_9_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-core-management_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-credential-reference_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-credential-reference_1_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-datasources_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-datasources_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-datasources_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-datasources_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-datasources_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-datasources_7_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-datasources_7_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-discovery_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-distributable-ejb_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-distributable-web_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-distributable-web_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-distributable-web_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-distributable-web_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ee-security_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ejb-timer_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ejb3_10_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ejb3_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ejb3_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ejb3_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ejb3_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ejb3_7_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ejb3_8_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-ejb3_9_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron-oidc-client_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron-oidc-client_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_10_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_11_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_12_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_13_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_14_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_15_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_15_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_16_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_17_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_18_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_1_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_1_2.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_7_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_8_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-elytron_9_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-health_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-http-client_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-iiop-openjdk_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-iiop-openjdk_2_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-iiop-openjdk_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-io_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-io_1_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-io_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-io_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-jca_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-jca_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-jca_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-jca_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-jca_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-keycloak_1_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-keycloak_1_2.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-mail_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-mail_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-mail_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq-deployment_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_10_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_11_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_12_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_13_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_13_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_14_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_15_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_16_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_7_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_8_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-messaging-activemq_9_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-metrics_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-micrometer_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-micrometer_1_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-config-smallrye_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-config-smallrye_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-fault-tolerance-smallrye_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-health-smallrye_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-health-smallrye_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-health-smallrye_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-jwt-smallrye_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-lra-coordinator_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-lra-participant_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-metrics-smallrye_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-metrics-smallrye_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-openapi-smallrye_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-opentracing_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-opentracing_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-opentracing_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-reactive-messaging-smallrye_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-reactive-streams-operators-smallrye_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-microprofile-telemetry_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-opentelemetry_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-picketlink-federation_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-picketlink-federation_1_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-picketlink-federation_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-picketlink-idm_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-picketlink-idm_1_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-picketlink-idm_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-remoting_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-remoting_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-remoting_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-remoting_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-remoting_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-request-controller_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-resource-adapters_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-resource-adapters_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-resource-adapters_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-resource-adapters_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-resource-adapters_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-resource-adapters_6_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-resource-adapters_7_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-resource-adapters_7_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-rts_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-security-manager_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-security_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-singleton_1_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-threads_2_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-txn_3_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-txn_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-txn_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-txn_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_10_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_11_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_12_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_13_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_14_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_3_1.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_4_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_5_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_6_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_7_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_8_0.xsd
%%APP_HOME%%/docs/schema/%%APP_HOME%%-undertow_9_0.xsd
%%APP_HOME%%/docs/schema/xml.xsd
%%APP_HOME%%/docs/schema/xnio_3_5.xsd
%%APP_HOME%%/domain/configuration/application-roles.properties.sample
%%APP_HOME%%/domain/configuration/application-users.properties.sample
%%APP_HOME%%/domain/configuration/default-server-logging.properties.sample
%%APP_HOME%%/domain/configuration/domain.xml.sample
%%APP_HOME%%/domain/configuration/host-primary.xml.sample
%%APP_HOME%%/domain/configuration/host-secondary.xml.sample
%%APP_HOME%%/domain/configuration/host.xml.sample
%%APP_HOME%%/domain/configuration/logging.properties.sample
%%APP_HOME%%/domain/configuration/mgmt-groups.properties.sample
%%APP_HOME%%/domain/configuration/mgmt-users.properties.sample
%%APP_HOME%%/jboss-modules.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-9.5.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-util-9.5.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/carrotsearch/hppc/main/hppc-0.8.1.jar
%%APP_HOME%%/modules/system/layers/base/com/carrotsearch/hppc/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate/main/classmate-1.5.1.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/classmate/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/jackson-annotations-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-annotations/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/jackson-core-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/jackson-databind-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/core/jackson-databind/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/main/jackson-dataformat-yaml-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/main/jackson-datatype-jdk8-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/main/jackson-datatype-jsr310-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jakarta/jackson-jakarta-json-provider/main/jackson-jakarta-rs-base-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jakarta/jackson-jakarta-json-provider/main/jackson-jakarta-rs-json-provider-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jakarta/jackson-jakarta-json-provider/main/jackson-module-jakarta-xmlbind-annotations-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jakarta/jackson-jakarta-json-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/github/ben-manes/caffeine/main/caffeine-3.1.8.jar
%%APP_HOME%%/modules/system/layers/base/com/github/ben-manes/caffeine/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/github/fge/btf/main/btf-1.2.jar
%%APP_HOME%%/modules/system/layers/base/com/github/fge/btf/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/github/fge/jackson-coreutils/main/jackson-coreutils-1.8.jar
%%APP_HOME%%/modules/system/layers/base/com/github/fge/jackson-coreutils/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/github/fge/json-patch/main/json-patch-1.9.jar
%%APP_HOME%%/modules/system/layers/base/com/github/fge/json-patch/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/github/fge/msg-simple/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/github/fge/msg-simple/main/msg-simple-1.1.jar
%%APP_HOME%%/modules/system/layers/base/com/google/code/gson/main/gson-2.8.9.jar
%%APP_HOME%%/modules/system/layers/base/com/google/code/gson/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/google/guava/failureaccess/main/failureaccess-1.0.1.jar
%%APP_HOME%%/modules/system/layers/base/com/google/guava/failureaccess/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/google/guava/main/guava-32.1.2-jre.jar
%%APP_HOME%%/modules/system/layers/base/com/google/guava/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/google/protobuf/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/google/protobuf/main/perfmark-api-0.23.0.jar
%%APP_HOME%%/modules/system/layers/base/com/google/protobuf/main/proto-google-common-protos-2.0.1.jar
%%APP_HOME%%/modules/system/layers/base/com/google/protobuf/main/protobuf-java-3.19.6.jar
%%APP_HOME%%/modules/system/layers/base/com/google/protobuf/main/protobuf-java-util-3.19.6.jar
%%APP_HOME%%/modules/system/layers/base/com/googlecode/javaewah/main/JavaEWAH-1.2.3.jar
%%APP_HOME%%/modules/system/layers/base/com/googlecode/javaewah/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main/h2-2.2.220.jar
%%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/ibm/async/asyncutil/main/asyncutil-0.1.0.jar
%%APP_HOME%%/modules/system/layers/base/com/ibm/async/asyncutil/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/microsoft/azure/storage/main/azure-storage-8.6.6.jar
%%APP_HOME%%/modules/system/layers/base/com/microsoft/azure/storage/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/nimbusds/nimbus-jose-jwt/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/nimbusds/nimbus-jose-jwt/main/nimbus-jose-jwt-9.31.jar
%%APP_HOME%%/modules/system/layers/base/com/squareup/okhttp3/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/squareup/okhttp3/main/okhttp-4.10.0.jar
%%APP_HOME%%/modules/system/layers/base/com/squareup/okhttp3/main/okio-jvm-3.4.0.jar
%%APP_HOME%%/modules/system/layers/base/com/squareup/protoparser/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/squareup/protoparser/main/protoparser-4.0.3.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/fastinfoset/main/FastInfoset-2.1.0.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/fastinfoset/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj/main/saaj-impl-3.0.0.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj/main/stax-ex-2.1.0.jar
%%APP_HOME%%/modules/system/layers/base/gnu/getopt/main/java-getopt-1.0.13.jar
%%APP_HOME%%/modules/system/layers/base/gnu/getopt/main/module.xml
%%APP_HOME%%/modules/system/layers/base/ibm/jdk/main/module.xml
%%APP_HOME%%/modules/system/layers/base/internal/javax/json/api/ee8/main/jakarta.json-1.1.6.jar
%%APP_HOME%%/modules/system/layers/base/internal/javax/json/api/ee8/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/agroal/main/agroal-api-2.0.jar
%%APP_HOME%%/modules/system/layers/base/io/agroal/main/agroal-narayana-2.0.jar
%%APP_HOME%%/modules/system/layers/base/io/agroal/main/agroal-pool-2.0.jar
%%APP_HOME%%/modules/system/layers/base/io/agroal/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/micrometer/main/micrometer-core-1.9.13.jar
%%APP_HOME%%/modules/system/layers/base/io/micrometer/main/micrometer-registry-otlp-1.9.13.jar
%%APP_HOME%%/modules/system/layers/base/io/micrometer/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-buffer/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-buffer/main/netty-buffer-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec-dns/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec-dns/main/netty-codec-dns-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec-http/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec-http/main/netty-codec-http-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec-http2/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec-http2/main/netty-codec-http2-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec-socks/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec-socks/main/netty-codec-socks-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-codec/main/netty-codec-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-common/main/netty-common-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-handler-proxy/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-handler-proxy/main/netty-handler-proxy-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-handler/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-handler/main/netty-handler-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-resolver-dns/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-resolver-dns/main/netty-resolver-dns-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-resolver/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-resolver/main/netty-resolver-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-epoll/main/lib/META-INF/native/libnetty_transport_native_epoll_aarch_64.so
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-epoll/main/lib/META-INF/native/libnetty_transport_native_epoll_x86_64.so
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-epoll/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-epoll/main/netty-transport-classes-epoll-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-kqueue/main/lib/META-INF/native/libnetty_transport_native_kqueue_aarch_64.jnilib
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-kqueue/main/lib/META-INF/native/libnetty_transport_native_kqueue_x86_64.jnilib
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-kqueue/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-kqueue/main/netty-transport-classes-kqueue-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-unix-common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-unix-common/main/netty-transport-native-unix-common-4.1.100.Final-linux-aarch_64.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-unix-common/main/netty-transport-native-unix-common-4.1.100.Final-linux-x86_64.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-unix-common/main/netty-transport-native-unix-common-4.1.100.Final-osx-aarch_64.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport-native-unix-common/main/netty-transport-native-unix-common-4.1.100.Final-osx-x86_64.jar
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/netty/netty-transport/main/netty-transport-4.1.100.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/api/main/opentelemetry-api-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/api/main/opentelemetry-api-logs-1.20.0-alpha.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/api/main/opentelemetry-instrumentation-annotations-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/api/main/opentelemetry-instrumentation-annotations-support-1.20.0-alpha.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/api/main/opentelemetry-instrumentation-api-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/api/main/opentelemetry-instrumentation-api-semconv-1.20.0-alpha.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/api/main/opentelemetry-semconv-1.20.0-alpha.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/context/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/context/main/opentelemetry-context-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/exporter/main/jackson-jr-objects-2.15.2.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/exporter/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/exporter/main/opentelemetry-exporter-common-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/exporter/main/opentelemetry-exporter-jaeger-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/exporter/main/opentelemetry-exporter-otlp-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/exporter/main/opentelemetry-exporter-otlp-common-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/otlp/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/otlp/main/opentelemetry-exporter-common-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/otlp/main/opentelemetry-exporter-otlp-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/otlp/main/opentelemetry-exporter-otlp-common-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/proto/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/proto/main/opentelemetry-proto-0.19.0-alpha.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/sdk/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/sdk/main/opentelemetry-sdk-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/sdk/main/opentelemetry-sdk-common-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/sdk/main/opentelemetry-sdk-extension-autoconfigure-1.20.0-alpha.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/sdk/main/opentelemetry-sdk-extension-autoconfigure-spi-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/sdk/main/opentelemetry-sdk-logs-1.20.0-alpha.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/sdk/main/opentelemetry-sdk-metrics-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/opentelemetry/sdk/main/opentelemetry-sdk-trace-1.20.0.jar
%%APP_HOME%%/modules/system/layers/base/io/reactivex/rxjava2/rxjava/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/reactivex/rxjava2/rxjava/main/rxjava-2.2.21.jar
%%APP_HOME%%/modules/system/layers/base/io/reactivex/rxjava3/rxjava/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/reactivex/rxjava3/rxjava/main/rxjava-3.1.6.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/annotation/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/annotation/main/smallrye-common-annotation-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/classloader/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/classloader/main/smallrye-common-classloader-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/constraint/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/constraint/main/smallrye-common-constraint-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/expression/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/expression/main/smallrye-common-expression-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/function/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/function/main/smallrye-common-function-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/vertx-context/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/common/vertx-context/main/smallrye-common-vertx-context-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/config/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/config/main/smallrye-config-3.3.4.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/config/main/smallrye-config-common-3.3.4.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/config/main/smallrye-config-core-3.3.4.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/config/main/smallrye-config-source-file-system-3.3.4.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/fault-tolerance/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/fault-tolerance/main/smallrye-fault-tolerance-6.2.6.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/fault-tolerance/main/smallrye-fault-tolerance-api-6.2.6.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/fault-tolerance/main/smallrye-fault-tolerance-autoconfig-core-6.2.6.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/fault-tolerance/main/smallrye-fault-tolerance-core-6.2.6.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/health/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/health/main/smallrye-health-4.0.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/jandex/main/jandex-3.1.5.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/jandex/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/jwt/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/jwt/main/smallrye-jwt-4.3.1.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/jwt/main/smallrye-jwt-cdi-extension-4.3.1.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/jwt/main/smallrye-jwt-common-4.3.1.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/jwt/main/smallrye-jwt-http-mechanism-4.3.1.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/openapi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/openapi/main/smallrye-open-api-core-3.6.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/openapi/main/smallrye-open-api-jaxrs-3.6.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/opentelemetry/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/opentelemetry/main/smallrye-opentelemetry-api-2.3.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/opentelemetry/main/smallrye-opentelemetry-cdi-2.3.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/opentelemetry/main/smallrye-opentelemetry-rest-2.3.2.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/converters/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/converters/api/main/smallrye-reactive-converter-api-2.6.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/messaging/connector/kafka/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/messaging/connector/kafka/api/main/smallrye-reactive-messaging-kafka-api-4.9.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/messaging/connector/kafka/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/messaging/connector/kafka/main/smallrye-reactive-messaging-kafka-4.9.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/messaging/connector/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/messaging/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/messaging/main/smallrye-reactive-messaging-provider-4.9.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/main/mutiny-2.1.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/reactive-streams-operators/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/reactive-streams-operators/main/mutiny-reactive-streams-operators-2.1.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/vertx-core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/vertx-core/main/smallrye-mutiny-vertx-core-3.3.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/vertx-kafka-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/vertx-kafka-client/main/smallrye-mutiny-vertx-kafka-client-3.3.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/vertx-runtime/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/vertx-runtime/main/smallrye-mutiny-vertx-runtime-3.3.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/zero-flow-adapters/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/zero-flow-adapters/main/mutiny-zero-flow-adapters-1.0.0.jar
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/zero/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/smallrye/reactive/mutiny/zero/main/mutiny-zero-1.0.0.jar
%%APP_HOME%%/modules/system/layers/base/io/undertow/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/undertow/core/main/undertow-core-2.3.10.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main/jastow-2.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/undertow/jsp/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/undertow/servlet/main/undertow-servlet-2.3.10.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/undertow/websocket/main/undertow-websockets-jsr-2.3.10.Final.jar
%%APP_HOME%%/modules/system/layers/base/io/vertx/client/kafka/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/vertx/client/kafka/main/vertx-kafka-client-4.4.6.jar
%%APP_HOME%%/modules/system/layers/base/io/vertx/client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/vertx/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/io/vertx/core/main/vertx-core-4.4.6.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/activation/api/main/jakarta.activation-api-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/activation/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/annotation/api/main/jakarta.annotation-api-2.1.1.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/annotation/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/batch/api/main/jakarta.batch-api-2.1.1.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/batch/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/ejb/api/main/jakarta.ejb-api-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/ejb/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/el/api/main/jboss-el-api_5.0_spec-4.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/el/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/enterprise/api/main/jakarta.enterprise.cdi-api-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/enterprise/api/main/jakarta.enterprise.lang-model-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/enterprise/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/enterprise/concurrent/api/main/jakarta.enterprise.concurrent-api-3.0.2.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/enterprise/concurrent/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/faces/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/faces/impl/main/jakarta.faces-4.0.4.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/faces/impl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/inject/api/main/jakarta.inject-api-2.0.1.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/inject/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/interceptor/api/main/jakarta.interceptor-api-2.1.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/interceptor/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/jms/api/main/jakarta.jms-api-3.1.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/jms/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/json/api/main/jakarta.json-api-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/json/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/json/bind/api/main/jakarta.json.bind-api-3.0.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/json/bind/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/mail/api/main/jakarta.mail-api-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/mail/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/persistence/api/main/jakarta.persistence-api-3.1.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/persistence/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/resource/api/main/jakarta.resource-api-2.1.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/resource/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/security/auth/message/api/main/jakarta.authentication-api-3.0.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/security/auth/message/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/security/enterprise/api/main/jakarta.security.enterprise-api-3.0.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/security/enterprise/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/security/jacc/api/main/jakarta.authorization-api-2.1.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/security/jacc/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/servlet/api/main/jakarta.servlet-api-6.0.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/servlet/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/servlet/jsp/api/main/jakarta.servlet.jsp-api-3.1.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/servlet/jsp/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/servlet/jstl/api/main/jakarta.servlet.jsp.jstl-3.0.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/servlet/jstl/api/main/jakarta.servlet.jsp.jstl-api-3.0.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/servlet/jstl/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/transaction/api/main/jakarta.transaction-api-2.0.1.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/transaction/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/validation/api/main/jakarta.validation-api-3.0.2.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/validation/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/websocket/api/main/jakarta.websocket-api-2.1.0-jbossorg-2.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/websocket/api/main/jakarta.websocket-client-api-2.1.0-jbossorg-2.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/websocket/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/ws/rs/api/main/jakarta.ws.rs-api-3.1.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/ws/rs/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/xml/bind/api/main/jakarta.xml.bind-api-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/xml/bind/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/xml/soap/api/main/jboss-saaj-api_3.0_spec-1.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/xml/soap/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/jakarta/xml/ws/api/main/jboss-jakarta-xml-ws-api_4.0_spec-1.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/jakarta/xml/ws/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javaee/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/activation/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/batch/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/el/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/enterprise/concurrent/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/faces/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/inject/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/interceptor/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/jms/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/json/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/json/bind/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/jws/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/mail/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/orb/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/orb/api/main/openjdk-orb-9.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/resource/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/rmi/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/security/enterprise/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/servlet/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/sql/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/validation/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/websocket/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api/main/wsdl4j-1.6.3.jar
%%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/net/bytebuddy/main/byte-buddy-1.14.7.jar
%%APP_HOME%%/modules/system/layers/base/net/bytebuddy/main/module.xml
%%APP_HOME%%/modules/system/layers/base/net/jcip/main/jcip-annotations-1.0.jar
%%APP_HOME%%/modules/system/layers/base/net/jcip/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-2.4.jar
%%APP_HOME%%/modules/system/layers/base/org/aesh/main/aesh-extensions-1.8.jar
%%APP_HOME%%/modules/system/layers/base/org/aesh/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/aesh/main/readline-2.2.jar
%%APP_HOME%%/modules/system/layers/base/org/antlr/main/antlr4-4.10.jar
%%APP_HOME%%/modules/system/layers/base/org/antlr/main/antlr4-runtime-4.10.jar
%%APP_HOME%%/modules/system/layers/base/org/antlr/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/activemq-artemis-native-2.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/artemis-commons-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/artemis-journal-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-i686/libartemis-native-32.so
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/lib/linux-x86_64/libartemis-native-64.so
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/journal/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-cli-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-core-client-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-dto-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-hqclient-protocol-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jakarta-client-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jakarta-server-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jakarta-service-extensions-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-jdbc-store-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-selector-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/artemis-server-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/artemis-amqp-protocol-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/amqp/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/artemis-hornetq-protocol-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/hornetq/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/artemis-stomp-protocol-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/protocol/stomp/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/artemis-jakarta-ra-2.31.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/activemq/artemis/ra/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main/commons-beanutils-1.9.4.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main/commons-cli-1.5.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main/commons-codec-1.15.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main/commons-collections-3.2.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main/commons-io-2.11.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang3/main/commons-lang3-3.12.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang3/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-coloc-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-soap-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-xml-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-aegis-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-jaxb-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-features-clustering-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-jaxws-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-simple-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-management-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-security-saml-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-hc-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-jms-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-local-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-addr-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-mex-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-policy-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-rm-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-wsdl-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-services-ws-discovery-api-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-common-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-java2ws-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-validator-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-core-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-databinding-jaxb-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-frontend-jaxws-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-boolean-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-bug986-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-dv-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-runtime-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-ts-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-core-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-rt-features-logging-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/services-sts/main/cxf-services-sts-core-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/services-sts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/ws-security/main/cxf-rt-ws-security-4.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/ws-security/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/core/main/httpclient-4.5.14.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/core/main/httpcore-4.4.16.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpasyncclient-4.1.5.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpcore-nio-4.4.16.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpmime-4.5.14.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main/apache-mime4j-core-0.8.9.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main/apache-mime4j-dom-0.8.9.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main/apache-mime4j-storage-0.8.9.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/kafka/client/main/kafka-clients-3.5.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/kafka/client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/logging/log4j/api/main/log4j-api-2.19.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/logging/log4j/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-analyzers-common-8.11.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-core-8.11.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-facet-8.11.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-join-8.11.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-queries-8.11.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/lucene-queryparser-8.11.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/lucene/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main/neethi-3.1.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/qpid/proton/main/proton-j-0.34.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/xmlsec-3.0.3.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/sshd/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/sshd/main/sshd-common-2.10.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/sshd/main/sshd-core-2.10.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/velocity-engine-core-2.3.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-bindings-3.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-policy-3.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-common-3.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-dom-3.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-policy-stax-3.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-ws-security-stax-3.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema/main/xmlschema-core-2.3.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/xerces/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/xerces/main/xercesImpl-2.12.0.SP05.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver/main/xml-resolver-1.2.jar
%%APP_HOME%%/modules/system/layers/base/org/bitbucket/jose4j/main/jose4j-0.9.3.jar
%%APP_HOME%%/modules/system/layers/base/org/bitbucket/jose4j/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcmail/main/bcjmail-jdk18on-1.76.jar
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcmail/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcpg/main/bcpg-jdk18on-1.76.jar
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcpg/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcpkix/main/bcpkix-jdk18on-1.76.jar
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcpkix/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcprov/main/bcprov-jdk18on-1.76.jar
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcprov/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcutil/main/bcutil-jdk18on-1.76.jar
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/bcutil/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/bouncycastle/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/stax2-api-4.2.1.jar
%%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/woodstox-core-6.4.0.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/angus/activation/main/angus-activation-2.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/angus/activation/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/angus/mail/main/angus-mail-2.0.2.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/angus/mail/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/jdt/ecj/main/ecj-3.31.0.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/jdt/ecj/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/jgit/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/jgit/main/org.eclipse.jgit-6.6.1.202309021850-r.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/jgit/main/org.eclipse.jgit.ssh.apache-6.6.1.202309021850-r.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/config/api/main/microprofile-config-api-3.0.2.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/config/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/fault-tolerance/api/main/microprofile-fault-tolerance-api-4.0.2.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/fault-tolerance/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/health/api/main/microprofile-health-api-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/health/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/jwt/auth/api/main/microprofile-jwt-auth-api-2.1.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/jwt/auth/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/lra/api/main/microprofile-lra-api-2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/lra/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/openapi/api/main/microprofile-openapi-api-3.1.1.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/openapi/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/reactive-messaging/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/reactive-messaging/api/main/smallrye-reactive-messaging-api-4.9.0.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/reactive-streams-operators/api/main/microprofile-reactive-streams-operators-api-3.0.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/reactive-streams-operators/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/reactive-streams-operators/core/main/microprofile-reactive-streams-operators-core-3.0.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/reactive-streams-operators/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/restclient/main/microprofile-rest-client-api-3.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/microprofile/restclient/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/parsson/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/parsson/main/parsson-1.1.4.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/jipijapa-eclipselink-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/eclipse/persistence/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/yasson/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/eclipse/yasson/main/yasson-3.0.2.jar
%%APP_HOME%%/modules/system/layers/base/org/elasticsearch/client/rest-client/main/elasticsearch-rest-client-8.10.2.jar
%%APP_HOME%%/modules/system/layers/base/org/elasticsearch/client/rest-client/main/elasticsearch-rest-client-sniffer-8.10.2.jar
%%APP_HOME%%/modules/system/layers/base/org/elasticsearch/client/rest-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/jansi-1.18.jar
%%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/glassfish/expressly/main/expressly-5.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/expressly/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jakarta/el/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jakarta/enterprise/concurrent/main/jakarta.enterprise.concurrent-3.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jakarta/enterprise/concurrent/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/el/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/glassfish/javax/enterprise/concurrent/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/codemodel-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/istack-commons-runtime-4.1.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/istack-commons-tools-4.1.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/jaxb-core-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/jaxb-jxc-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/jaxb-runtime-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/jaxb-xjc-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/relaxng-datatype-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/rngom-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/txw2-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/jaxb/main/xsom-4.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/soteria/main/jakarta.security.enterprise-3.0.3.jar
%%APP_HOME%%/modules/system/layers/base/org/glassfish/soteria/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/glassfish/soteria/main/soteria.spi.bean.decorator.weld-3.0.3.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main/hibernate-commons-annotations-6.0.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/envers/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate6/main/jipijapa-hibernate6-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/jipijapa-hibernate6/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-core-6.2.13.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-envers-6.2.13.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend/elasticsearch/main/hibernate-search-backend-elasticsearch-6.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend/elasticsearch/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend/lucene/main/hibernate-search-backend-lucene-6.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/backend/lucene/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main/hibernate-search-engine-6.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main/hibernate-search-util-common-6.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/engine/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/jipijapa-hibernatesearch/main/jipijapa-hibernatesearch-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/jipijapa-hibernatesearch/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/mapper/orm/main/hibernate-search-mapper-orm-orm6-6.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/mapper/orm/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/mapper/pojo/main/hibernate-search-mapper-pojo-base-6.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/mapper/pojo/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/search/orm/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main/hibernate-validator-cdi-8.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/cdi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/hibernate-validator-8.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/hornetq-commons-2.4.9.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/hornetq-core-client-2.4.9.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/hornetq-jakarta-client-2.4.9.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cdi/common/main/infinispan-cdi-common-jakarta-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cdi/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cdi/embedded/main/infinispan-cdi-embedded-jakarta-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cdi/embedded/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cdi/remote/main/infinispan-cdi-remote-jakarta-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cdi/remote/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/infinispan-client-hotrod-jakarta-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main/infinispan-commons-jakarta-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/commons/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/component/annotations/main/infinispan-component-annotations-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/component/annotations/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/counter/main/infinispan-clustered-counter-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/counter/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-commons-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-spi-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/infinispan-hibernate-cache-v62-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/hibernate-cache/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/lock/main/infinispan-clustered-lock-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/lock/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/infinispan-core-jakarta-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/objectfilter/main/infinispan-objectfilter-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/objectfilter/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/jdbc/main/infinispan-cachestore-jdbc-common-jakarta-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/jdbc/main/infinispan-cachestore-jdbc-jakarta-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/jdbc/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/remote/main/infinispan-cachestore-remote-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/persistence/remote/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/protostream/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/protostream/main/protostream-4.6.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/protostream/types/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/protostream/types/main/protostream-types-4.6.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/query/client/main/infinispan-remote-query-client-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/query/client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/query/core/main/infinispan-query-core-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/query/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/query/dsl/main/infinispan-query-dsl-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/query/dsl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/query/main/infinispan-query-14.0.20.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/query/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jasypt/main/jasypt-1.9.3.jar
%%APP_HOME%%/modules/system/layers/base/org/jasypt/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main/jberet-core-2.1.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jberet/jberet-core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/%%APP_HOME%%-appclient-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/%%APP_HOME%%-cli-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main/%%APP_HOME%%-clustering-common-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/%%APP_HOME%%-clustering-infinispan-extension-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main/%%APP_HOME%%-clustering-jgroups-extension-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/%%APP_HOME%%-connector-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/hal-console-3.6.16.Final-resources.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/%%APP_HOME%%-controller-client-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/dir/META-INF/services/org.jboss.as.controller.persistence.ConfigurationExtension
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/%%APP_HOME%%-controller-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/core-security/main/%%APP_HOME%%-core-security-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main/%%APP_HOME%%-deployment-repository-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main/%%APP_HOME%%-deployment-scanner-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/%%APP_HOME%%-domain-http-error-context-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main/%%APP_HOME%%-domain-http-interface-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main/%%APP_HOME%%-domain-management-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/%%APP_HOME%%-ee-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/timers/timer-sql.properties
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/%%APP_HOME%%-ejb3-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main/%%APP_HOME%%-host-controller-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/%%APP_HOME%%-jaxrs-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/resources/plugins.properties
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/%%APP_HOME%%-jdr-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main/%%APP_HOME%%-jmx-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/%%APP_HOME%%-jpa-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main/jipijapa-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/weld-jsf-5.1.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/%%APP_HOME%%-jsf-injection-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/%%APP_HOME%%-jsf-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/%%APP_HOME%%-jsr77-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/%%APP_HOME%%-logging-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main/%%APP_HOME%%-mail-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main/%%APP_HOME%%-management-client-content-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/%%APP_HOME%%-naming-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/%%APP_HOME%%-network-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/cli/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/patching/main/%%APP_HOME%%-patching-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main/%%APP_HOME%%-platform-mbean-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/%%APP_HOME%%-pojo-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main/%%APP_HOME%%-process-controller-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/product/main/dir/META-INF/MANIFEST.MF
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/product/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/%%APP_HOME%%-protocol-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/%%APP_HOME%%-remoting-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/%%APP_HOME%%-sar-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main/%%APP_HOME%%-security-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/%%APP_HOME%%-server-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/standalone/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main/%%APP_HOME%%-system-jmx-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/%%APP_HOME%%-threads-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/%%APP_HOME%%-transactions-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main/%%APP_HOME%%-version-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web-common/main/%%APP_HOME%%-web-common-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/jbossws-cxf-resources-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/%%APP_HOME%%-webservices-server-integration-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/beanvalidation/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/beanvalidation/main/%%APP_HOME%%-weld-bean-validation-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/common/main/%%APP_HOME%%-weld-common-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/ejb/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/ejb/main/%%APP_HOME%%-weld-ejb-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/jpa/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/jpa/main/%%APP_HOME%%-weld-jpa-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/%%APP_HOME%%-weld-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/spi/main/%%APP_HOME%%-weld-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/transactions/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/transactions/main/%%APP_HOME%%-weld-transactions-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/webservices/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/webservices/main/%%APP_HOME%%-weld-webservices-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/%%APP_HOME%%-xts-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main/jboss-classfilewriter-1.3.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main/jboss-common-beans-2.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main/jboss-dmr-1.7.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main/jboss-ejb-client-5.0.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main/jboss-ejb3-ext-api-2.4.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main/META-INF/ra.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main/generic-jms-ra-jar-3.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/genericjms/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client/main/jboss-iiop-client-2.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main/jboss-invocation-2.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-api-3.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-spi-3.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-core-api-3.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-common-impl-3.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-core-impl-3.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-deployers-common-3.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-validator-3.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/ironjacamar-jdbc-3.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main/jboss-jaxb-intros-2.0.1.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main/jboss-transaction-spi-8.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main/narayana-jts-integration-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/narayana-jts-idlj-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/commons/logging/main/commons-logging-jboss-logging-1.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/commons/logging/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main/jul-to-slf4j-stub-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main/jboss-logging-3.5.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/log4j2/main/log4j2-jboss-logmanager-1.1.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/log4j2/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/jboss-logmanager-2.1.19.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/jboss-marshalling-2.1.3.SP1.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main/jboss-marshalling-river-2.1.3.SP1.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/appclient/main/jboss-metadata-appclient-16.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/appclient/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/common/main/jboss-metadata-common-16.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/ear/main/jboss-metadata-ear-16.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/ear/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/ejb/main/jboss-metadata-ejb-16.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/ejb/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/web/main/jboss-metadata-web-16.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/web/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main/mod_cluster-container-spi-2.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/container/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core/main/mod_cluster-core-2.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/load/spi/main/mod_cluster-load-spi-2.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/mod_cluster/load/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main/jboss-msc-1.5.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/compensations/main/compensations-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/compensations/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/lra-coordinator/main/lra-coordinator-jar-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/lra-coordinator/main/lra-service-base-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/lra-coordinator/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/lra-participant/main/lra-client-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/lra-participant/main/lra-proxy-api-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/lra-participant/main/lra-service-base-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/lra-participant/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/lra-participant/main/narayana-lra-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-api-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-bridge-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-integration-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/narayana/rts/main/restat-util-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx/main/remoting-jmx-3.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting/main/jboss-remoting-5.0.27.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/microprofile/config/main/microprofile-config-2.1.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/microprofile/config/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main/resteasy-atom-provider-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/resteasy-cdi-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-client-api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-client-api/main/resteasy-client-api-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-client-microprofile/main/microprofile-rest-client-2.1.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-client-microprofile/main/microprofile-rest-client-base-2.1.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-client-microprofile/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-client/main/resteasy-client-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-core-spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-core-spi/main/resteasy-core-spi-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-core/main/resteasy-core-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-crypto/main/resteasy-crypto-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson2-provider/main/resteasy-jackson2-provider-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main/resteasy-jaxb-provider-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main/resteasy-jsapi-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-binding-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-binding-provider/main/resteasy-json-binding-provider-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-json-p-provider/main/resteasy-json-p-provider-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main/resteasy-multipart-provider-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-rxjava2/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-rxjava2/main/resteasy-rxjava2-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/bundled/resteasy-spring-jar/resteasy-spring-3.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-spring/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-tracing-api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-tracing-api/main/resteasy-tracing-api-2.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-validator-provider/main/resteasy-validator-provider-6.2.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper/main/staxmapper-1.5.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main/jboss-stdio-1.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main/jboss-threads-2.4.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main/jboss-vfs-3.3.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main/weld-api-5.0.SP3.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-core-impl-5.1.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-ejb-5.1.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-jta-5.1.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-lite-extension-translator-5.1.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-web-5.1.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main/weld-spi-5.0.SP3.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main/jbossws-api-3.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main/jbossws-common-5.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/jbossws-cxf-factories-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main/jbossws-cxf-server-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/jbossws-cxf-transports-udp-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-udp/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/jbossws-cxf-transports-undertow-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-undertow/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/sts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/sts/main/%%APP_HOME%%-webservices-opensaml-sysconfig-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/jbossws-cxf-client-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi/main/jaxws-undertow-httpspi-2.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-undertow-httpspi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/saaj-impl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main/jbossws-spi-5.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common/main/jbossws-common-tools-2.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsconsume/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsprovide/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/main/xnio-api-3.8.11.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/netty/netty-xnio-transport/main/netty-xnio-transport-0.1.9.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio/main/xnio-nio-3.8.11.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main/jbosstxbridge-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main/jbossxts-7.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jctools/main/jctools-core-2.1.2.jar
%%APP_HOME%%/modules/system/layers/base/org/jctools/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jetbrains/kotlin/kotlin-stdlib/main/kotlin-stdlib-1.7.10.jar
%%APP_HOME%%/modules/system/layers/base/org/jetbrains/kotlin/kotlin-stdlib/main/kotlin-stdlib-common-1.7.10.jar
%%APP_HOME%%/modules/system/layers/base/org/jetbrains/kotlin/kotlin-stdlib/main/kotlin-stdlib-jdk7-1.7.10.jar
%%APP_HOME%%/modules/system/layers/base/org/jetbrains/kotlin/kotlin-stdlib/main/kotlin-stdlib-jdk8-1.7.10.jar
%%APP_HOME%%/modules/system/layers/base/org/jetbrains/kotlin/kotlin-stdlib/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jgroups/aws/main/jgroups-aws-3.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jgroups/aws/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jgroups/azure/main/jgroups-azure-2.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jgroups/azure/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jgroups/kubernetes/main/jgroups-kubernetes-2.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jgroups/kubernetes/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jgroups/main/jgroups-5.2.19.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jgroups/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/joda/time/main/joda-time-2.12.1.jar
%%APP_HOME%%/modules/system/layers/base/org/joda/time/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/keycloak/keycloak-adapter-subsystem/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/keycloak/keycloak-adapter-subsystem/main/%%APP_HOME%%-keycloak-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/omg/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/cryptacular-1.2.5.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/java-support-8.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-core-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-profile-api-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-saml-api-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-saml-impl-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-security-api-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-security-impl-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-soap-api-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xacml-api-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xacml-impl-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xacml-saml-api-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xacml-saml-impl-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xmlsec-api-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-xmlsec-impl-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/projectodd/vdx/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/projectodd/vdx/main/vdx-core-1.1.6.jar
%%APP_HOME%%/modules/system/layers/base/org/projectodd/vdx/main/vdx-%%APP_HOME%%-1.1.6.jar
%%APP_HOME%%/modules/system/layers/base/org/reactivestreams/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/reactivestreams/main/reactive-streams-1.0.4.jar
%%APP_HOME%%/modules/system/layers/base/org/slf4j/impl/main/jbosgi-xservice.properties
%%APP_HOME%%/modules/system/layers/base/org/slf4j/impl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/slf4j/impl/main/slf4j-jboss-logmanager-2.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/slf4j/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/slf4j/main/slf4j-api-2.0.9.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/bootable-jar/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/bootable-jar/main/%%APP_HOME%%-jar-runtime-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/client/config/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/client/config/main/%%APP_HOME%%-client-config-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/context/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/context/main/%%APP_HOME%%-clustering-context-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/cache/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/cache/main/%%APP_HOME%%-clustering-ee-cache-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/hotrod/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/hotrod/main/%%APP_HOME%%-clustering-ee-hotrod-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/infinispan/main/%%APP_HOME%%-clustering-ee-infinispan-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ee/spi/main/%%APP_HOME%%-clustering-ee-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/cache/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/cache/main/%%APP_HOME%%-clustering-ejb-cache-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/client/main/%%APP_HOME%%-clustering-ejb-client-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/infinispan/main/%%APP_HOME%%-clustering-ejb-infinispan-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/ejb/spi/main/%%APP_HOME%%-clustering-ejb-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/el/expressly/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/el/expressly/main/%%APP_HOME%%-clustering-el-expressly-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/faces/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/faces/api/main/%%APP_HOME%%-clustering-faces-api-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/faces/mojarra/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/faces/mojarra/main/%%APP_HOME%%-clustering-faces-mojarra-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/client/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/client/api/main/%%APP_HOME%%-clustering-infinispan-client-api-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/client/service/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/client/service/main/%%APP_HOME%%-clustering-infinispan-client-service-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/client/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/client/spi/main/%%APP_HOME%%-clustering-infinispan-client-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/embedded/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/embedded/api/main/%%APP_HOME%%-clustering-infinispan-embedded-api-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/embedded/service/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/embedded/service/main/%%APP_HOME%%-clustering-infinispan-embedded-service-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/embedded/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/embedded/spi/main/%%APP_HOME%%-clustering-infinispan-embedded-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/marshalling/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/infinispan/marshalling/main/%%APP_HOME%%-clustering-infinispan-marshalling-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/jgroups/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/jgroups/api/main/%%APP_HOME%%-clustering-jgroups-api-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/jgroups/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/jgroups/spi/main/%%APP_HOME%%-clustering-jgroups-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/api/main/%%APP_HOME%%-clustering-marshalling-api-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/jboss/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/jboss/main/%%APP_HOME%%-clustering-marshalling-jboss-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/protostream/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/protostream/main/%%APP_HOME%%-clustering-marshalling-protostream-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/marshalling/spi/main/%%APP_HOME%%-clustering-marshalling-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/api/main/%%APP_HOME%%-clustering-server-api-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/infinispan/main/%%APP_HOME%%-clustering-server-infinispan-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/service/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/service/main/%%APP_HOME%%-clustering-server-service-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/server/spi/main/%%APP_HOME%%-clustering-server-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/service/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/service/main/%%APP_HOME%%-clustering-service-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/api/main/%%APP_HOME%%-clustering-singleton-api-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/server/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/server/main/%%APP_HOME%%-clustering-singleton-server-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/service/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/singleton/service/main/%%APP_HOME%%-clustering-singleton-service-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/api/main/%%APP_HOME%%-clustering-web-api-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/cache/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/cache/main/%%APP_HOME%%-clustering-web-cache-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/container/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/container/main/%%APP_HOME%%-clustering-web-container-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/hotrod/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/hotrod/main/%%APP_HOME%%-clustering-web-hotrod-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/infinispan/main/%%APP_HOME%%-clustering-web-infinispan-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/service/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/service/main/%%APP_HOME%%-clustering-web-service-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/spi/main/%%APP_HOME%%-clustering-web-spi-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/undertow/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/web/undertow/main/%%APP_HOME%%-clustering-web-undertow-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/weld/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/weld/core/main/%%APP_HOME%%-clustering-weld-core-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/weld/ejb/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/weld/ejb/main/%%APP_HOME%%-clustering-weld-ejb-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/weld/web/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/clustering/weld/web/main/%%APP_HOME%%-clustering-weld-web-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/common/main/%%APP_HOME%%-common-1.6.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/discovery/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/discovery/main/%%APP_HOME%%-discovery-client-1.2.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/embedded/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/embedded/main/%%APP_HOME%%-embedded-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/event/logger/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/event/logger/main/%%APP_HOME%%-event-logger-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/batch/jberet/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/batch/jberet/main/%%APP_HOME%%-batch-jberet-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/bean-validation/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/bean-validation/main/%%APP_HOME%%-bean-validation-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/ejb/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/ejb/main/%%APP_HOME%%-clustering-ejb-extension-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/server/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/server/main/%%APP_HOME%%-clustering-server-extension-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/singleton/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/singleton/main/%%APP_HOME%%-clustering-singleton-extension-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/web/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/clustering/web/main/%%APP_HOME%%-clustering-web-extension-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/core-management-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/core-management-client/main/%%APP_HOME%%-core-management-client-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/core-management/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/core-management/main/%%APP_HOME%%-core-management-subsystem-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/datasources-agroal/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/datasources-agroal/main/%%APP_HOME%%-datasources-agroal-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/discovery/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/discovery/main/%%APP_HOME%%-discovery-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/ee-security/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/ee-security/main/%%APP_HOME%%-ee-security-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/elytron-oidc-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/elytron-oidc-client/main/%%APP_HOME%%-elytron-oidc-client-subsystem-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/elytron/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/elytron/main/%%APP_HOME%%-elytron-integration-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/health/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/health/main/%%APP_HOME%%-health-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/io/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/io/main/%%APP_HOME%%-io-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/messaging-activemq/injection/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/messaging-activemq/injection/main/%%APP_HOME%%-messaging-activemq-injection-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/messaging-activemq/main/artemis-%%APP_HOME%%-integration-2.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/messaging-activemq/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/messaging-activemq/main/%%APP_HOME%%-messaging-activemq-subsystem-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/metrics/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/metrics/main/%%APP_HOME%%-metrics-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/micrometer/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/micrometer/main/%%APP_HOME%%-micrometer-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/config-smallrye/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/config-smallrye/main/%%APP_HOME%%-microprofile-config-smallrye-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/fault-tolerance-smallrye/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/fault-tolerance-smallrye/main/%%APP_HOME%%-microprofile-fault-tolerance-smallrye-extension-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/health-smallrye/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/health-smallrye/main/%%APP_HOME%%-microprofile-health-smallrye-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/jwt-smallrye/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/jwt-smallrye/main/%%APP_HOME%%-microprofile-jwt-smallrye-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/lra-coordinator/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/lra-coordinator/main/%%APP_HOME%%-microprofile-lra-coordinator-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/lra-participant/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/lra-participant/main/%%APP_HOME%%-microprofile-lra-participant-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/metrics-smallrye/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/metrics-smallrye/main/%%APP_HOME%%-microprofile-metrics-smallrye-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/openapi-smallrye/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/openapi-smallrye/main/%%APP_HOME%%-microprofile-openapi-smallrye-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/opentracing-smallrye/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/opentracing-smallrye/main/%%APP_HOME%%-microprofile-opentracing-extension-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/reactive-messaging-smallrye/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/reactive-messaging-smallrye/main/%%APP_HOME%%-microprofile-reactive-messaging-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/reactive-streams-operators-smallrye/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/reactive-streams-operators-smallrye/main/%%APP_HOME%%-microprofile-reactive-streams-operators-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/telemetry-api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/telemetry-api/main/%%APP_HOME%%-microprofile-telemetry-cdi-provider-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/telemetry/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/microprofile/telemetry/main/%%APP_HOME%%-microprofile-telemetry-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/mod_cluster/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/mod_cluster/main/%%APP_HOME%%-mod_cluster-extension-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/opentelemetry-api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/opentelemetry-api/main/%%APP_HOME%%-opentelemetry-api-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/opentelemetry/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/opentelemetry/main/%%APP_HOME%%-opentelemetry-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/picketlink/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/picketlink/main/%%APP_HOME%%-picketlink-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/request-controller/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/request-controller/main/%%APP_HOME%%-request-controller-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/rts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/rts/main/%%APP_HOME%%-rts-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/security/manager/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/security/manager/main/%%APP_HOME%%-security-manager-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/undertow/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/extension/undertow/main/%%APP_HOME%%-undertow-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/http-client/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/http-client/common/main/%%APP_HOME%%-http-client-common-2.0.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/http-client/ejb/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/http-client/ejb/main/%%APP_HOME%%-http-ejb-client-2.0.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/http-client/naming/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/http-client/naming/main/%%APP_HOME%%-http-naming-client-2.0.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/http-client/transaction/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/http-client/transaction/main/%%APP_HOME%%-http-transaction-client-2.0.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/iiop-openjdk/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/iiop-openjdk/main/%%APP_HOME%%-iiop-openjdk-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/installation-manager/api/main/installation-manager-api-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/installation-manager/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/installation-manager/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/installation-manager/main/%%APP_HOME%%-installation-manager-22.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/micrometer/deployment/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/micrometer/deployment/main/%%APP_HOME%%-micrometer-deployment-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/microprofile/fault-tolerance-smallrye/deployment/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/microprofile/fault-tolerance-smallrye/deployment/main/%%APP_HOME%%-microprofile-fault-tolerance-smallrye-deployment-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/mod_cluster/undertow/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/mod_cluster/undertow/main/%%APP_HOME%%-mod_cluster-undertow-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/naming-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/naming-client/main/%%APP_HOME%%-naming-client-2.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/naming/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/lib/linux-s390x/libwfssl.so
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/lib/linux-x86_64/libwfssl.so
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/lib/macosx-x86_64/libwfssl.dylib
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/lib/win-x86_64/wfssl.dll
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/openssl/main/%%APP_HOME%%-openssl-java-2.2.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/reactive/dep/jts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/reactive/messaging/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/reactive/messaging/common/main/%%APP_HOME%%-microprofile-reactive-messaging-common-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/reactive/messaging/config/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/reactive/messaging/config/main/%%APP_HOME%%-microprofile-reactive-messaging-config-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/reactive/messaging/kafka/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/reactive/messaging/kafka/main/%%APP_HOME%%-microprofile-reactive-messaging-kafka-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/reactive/mutiny/reactive-streams-operators/cdi-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/reactive/mutiny/reactive-streams-operators/cdi-provider/main/%%APP_HOME%%-microprofile-reactive-streams-operators-cdi-provider-30.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-asn1-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-audit-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-auth-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-auth-server-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-auth-server-deprecated-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-auth-server-http-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-auth-server-sasl-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-auth-util-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-base-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-client-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-credential-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-credential-source-impl-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-credential-store-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-digest-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-encryption-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-basic-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-bearer-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-cert-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-digest-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-external-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-form-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-spnego-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-sso-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-http-util-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-json-util-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-keystore-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-mechanism-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-mechanism-digest-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-mechanism-gssapi-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-mechanism-http-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-mechanism-oauth2-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-mechanism-scram-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-password-impl-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-permission-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-provider-util-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-realm-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-realm-jdbc-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-realm-ldap-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-realm-token-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-anonymous-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-auth-util-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-digest-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-entity-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-external-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-gs2-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-gssapi-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-localuser-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-oauth2-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-otp-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-plain-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-sasl-scram-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-security-manager-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-security-manager-action-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-ssh-util-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-ssl-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-util-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-x500-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-x500-cert-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-x500-cert-acme-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-x500-cert-util-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-base/main/%%APP_HOME%%-elytron-x500-principal-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-http-oidc/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-http-oidc/main/%%APP_HOME%%-elytron-http-oidc-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-jose-jwk/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-jose-jwk/main/%%APP_HOME%%-elytron-jose-jwk-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-jose-util/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-jose-util/main/%%APP_HOME%%-elytron-jose-util-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-jwt/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-jwt/main/%%APP_HOME%%-elytron-jwt-2.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-private/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-tool/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-tool/main/%%APP_HOME%%-elytron-tool-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-web/undertow-server-servlet/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-web/undertow-server-servlet/main/undertow-server-servlet-4.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-web/undertow-server/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron-web/undertow-server/main/undertow-server-4.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/elytron/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/http/sfbasic/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/http/sfbasic/main/%%APP_HOME%%-elytron-http-stateful-basic-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/authentication/main/jakarta-authentication-3.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/authentication/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/authorization/main/jakarta-authorization-3.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/authorization/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/client/resteasy/main/jakarta-client-resteasy-3.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/client/resteasy/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/client/webservices/main/jakarta-client-webservices-3.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/client/webservices/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/security/main/jakarta-security-3.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/jakarta/security/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/security/manager/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/transaction/client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/%%APP_HOME%%/transaction/client/main/%%APP_HOME%%-transaction-client-3.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml/main/snakeyaml-2.0.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/annotations-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/apache-client-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/arns-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/auth-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/aws-core-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/aws-query-protocol-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/aws-xml-protocol-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/crt-core-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/endpoints-spi-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/eventstream-1.0.1.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/http-client-spi-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/json-utils-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/metrics-spi-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/module.xml
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/profiles-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/protocol-core-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/regions-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/s3-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/sdk-core-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/third-party-jackson-core-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/software/amazon/awssdk/s3/main/utils-2.20.126.jar
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/module.xml
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services/java.sql.Driver
%%APP_HOME%%/modules/system/layers/base/sun/scripting/main/module.xml
%%APP_HOME%%/modules/system/layers/base/sun/scripting/main/service-loader-resources/META-INF/services/javax.script.ScriptEngineFactory
%%APP_HOME%%/modules/system/layers/base/%%APP_HOME%%ee/api/main/module.xml
%%APP_HOME%%/standalone/configuration/application-roles.properties.sample
%%APP_HOME%%/standalone/configuration/application-users.properties.sample
%%APP_HOME%%/standalone/configuration/logging.properties.sample
%%APP_HOME%%/standalone/configuration/mgmt-groups.properties.sample
%%APP_HOME%%/standalone/configuration/mgmt-users.properties.sample
%%APP_HOME%%/standalone/configuration/standalone-full-ha.xml.sample
%%APP_HOME%%/standalone/configuration/standalone-full.xml.sample
%%APP_HOME%%/standalone/configuration/standalone-ha.xml.sample
%%APP_HOME%%/standalone/configuration/standalone-load-balancer.xml
%%APP_HOME%%/standalone/configuration/standalone-microprofile-ha.xml
%%APP_HOME%%/standalone/configuration/standalone-microprofile.xml
%%APP_HOME%%/standalone/configuration/standalone.xml.sample
%%APP_HOME%%/standalone/deployments/README.txt
%%APP_HOME%%/welcome-content/bkg.gif
%%APP_HOME%%/welcome-content/favicon.ico
%%APP_HOME%%/welcome-content/index.html
%%APP_HOME%%/welcome-content/index_noconsole.html
%%APP_HOME%%/welcome-content/jbosscommunity_logo_hori_white.png
%%APP_HOME%%/welcome-content/noconsole.html
%%APP_HOME%%/welcome-content/noredirect.html
%%APP_HOME%%/welcome-content/%%APP_HOME%%.css
%%APP_HOME%%/welcome-content/%%APP_HOME%%_logo.png
@dir %%APP_HOME%%/.galleon/hashes/.installation
@dir %%APP_HOME%%/.galleon/hashes/.well-known/acme-challenge
@dir %%APP_HOME%%/.galleon/hashes/domain/tmp/auth
@dir %%APP_HOME%%/.galleon/hashes/standalone/lib/ext
@dir %%APP_HOME%%/.galleon/hashes/standalone/tmp/auth
@dir %%APP_HOME%%/.well-known/acme-challenge
@dir %%APP_HOME%%/domain/tmp/auth
@dir %%APP_HOME%%/standalone/lib/ext
@dir %%APP_HOME%%/standalone/tmp/auth