aboutsummaryrefslogblamecommitdiff
path: root/java/jboss72/pkg-plist
blob: 5293e8ea919377715fca449eddf41102b43ad2b4 (plain) (tree)
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
          
          










































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                         



































































































































































































































































































































































































































































































































































































































































































































                                                                                                         
           
            
@owner www
@group www
%%APP_HOME%%/docs/schema/jboss-as-web_1_1.xsd
%%APP_HOME%%/docs/schema/service-ref_4_2.dtd
%%APP_HOME%%/docs/schema/web-jsptaglibrary_1_1.dtd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_2.xsd
%%APP_HOME%%/docs/schema/jbossws-web-services_1_0.xsd
%%APP_HOME%%/docs/schema/jsp_2_0.xsd
%%APP_HOME%%/docs/schema/web-app_2_2.dtd
%%APP_HOME%%/docs/schema/web-facesconfig_1_1.dtd
%%APP_HOME%%/docs/schema/jboss-as-threads_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-cmp_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-remoting_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-security_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jsr77_1_0.xsd
%%APP_HOME%%/docs/schema/persistence_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jmx_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-resource-adapter-binding_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-pojo_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-mail_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-messaging_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_2.xsd
%%APP_HOME%%/docs/schema/web-jsptaglibrary_2_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-deployment-scanner_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-configadmin_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-security_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-pool_1_0.xsd
%%APP_HOME%%/docs/schema/javaee_5.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-client_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jca_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb3-2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jacorb_1_1.xsd
%%APP_HOME%%/docs/schema/web-app_2_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-cli_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_3.xsd
%%APP_HOME%%/docs/schema/application_1_3.dtd
%%APP_HOME%%/docs/schema/javaee_web_services_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-resource-adapters_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-app_3_2.dtd
%%APP_HOME%%/docs/schema/javaee_web_services_client_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-webservices_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-service_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-deployment-scanner_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-mail_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-messaging_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_3.xsd
%%APP_HOME%%/docs/schema/jbossws-jaxws-config_4_0.xsd
%%APP_HOME%%/docs/schema/web-jsptaglibrary_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-app_5_0.dtd
%%APP_HOME%%/docs/schema/application_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-as-remoting_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-security_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jmx_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-threads_1_1.xsd
%%APP_HOME%%/docs/schema/web-facesconfig_1_0.dtd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-cmp_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-osgi_1_2.xsd
%%APP_HOME%%/docs/schema/web-app_2_3.dtd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-common_5_1.xsd
%%APP_HOME%%/docs/schema/jsp_2_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-web_1_0.xsd
%%APP_HOME%%/docs/schema/module-1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-messaging-deployment_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-common_6_0.xsd
%%APP_HOME%%/docs/schema/javaee_web_services_client_1_3.xsd
%%APP_HOME%%/docs/schema/jboss-as-webservices_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-resource-adapters_1_0.xsd
%%APP_HOME%%/docs/schema/j2ee_web_services_1_1.xsd
%%APP_HOME%%/docs/schema/jbxb_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-pojo_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_2.xsd
%%APP_HOME%%/docs/schema/application_1_2.dtd
%%APP_HOME%%/docs/schema/jboss-app_4_0.dtd
%%APP_HOME%%/docs/schema/javaee_web_services_1_3.xsd
%%APP_HOME%%/docs/schema/application_6.xsd
%%APP_HOME%%/docs/schema/j2ee_web_services_client_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-xts.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-cli_1_1.xsd
%%APP_HOME%%/docs/schema/orm_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-app_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jca_1_0.xsd
%%APP_HOME%%/docs/schema/web-app_2_5.xsd
%%APP_HOME%%/docs/schema/jboss-as-jacorb_1_0.xsd
%%APP_HOME%%/docs/schema/persistence_2_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-security_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-jpa_1_0.xsd
%%APP_HOME%%/docs/schema/ejb-jar_2_1.xsd
%%APP_HOME%%/docs/schema/jboss-app_3_0.dtd
%%APP_HOME%%/docs/schema/jboss-as-webservices_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-cli_1_2.xsd
%%APP_HOME%%/docs/schema/java-properties_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jpa_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-cache_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jaxrs_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jsf_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-security-role_1_0.xsd
%%APP_HOME%%/docs/schema/application_5.xsd
%%APP_HOME%%/docs/schema/j2ee_1_4.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-client_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-deployment-structure-1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-jacorb_1_3.xsd
%%APP_HOME%%/docs/schema/web-facesconfig_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-web_7_1.xsd
%%APP_HOME%%/docs/schema/service-ref_5_0.dtd
%%APP_HOME%%/docs/schema/jboss-as-datasources_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-security_1_2.xsd
%%APP_HOME%%/docs/schema/application-client_6.xsd
%%APP_HOME%%/docs/schema/ejb-jar_1_1.dtd
%%APP_HOME%%/docs/schema/jboss_1_0.xsd
%%APP_HOME%%/docs/schema/web-fragment_3_0.xsd
%%APP_HOME%%/docs/schema/user-roles_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-messaging_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-iiop_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-container-interceptors_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-weld_1_0.xsd
%%APP_HOME%%/docs/schema/ejb-jar_3_1.xsd
%%APP_HOME%%/docs/schema/ejb-jar_2_0.dtd
%%APP_HOME%%/docs/schema/jboss-as-sar_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-logging_1_2.xsd
%%APP_HOME%%/docs/schema/jboss-as-osgi_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jaxr_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-web_1_3.xsd
%%APP_HOME%%/docs/schema/service-ref_4_0.dtd
%%APP_HOME%%/docs/schema/module-1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_0.xsd
%%APP_HOME%%/docs/schema/jndi-binding-service_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-web_1_4.xsd
%%APP_HOME%%/docs/schema/jsp_2_2.xsd
%%APP_HOME%%/docs/schema/jboss-deployment-dependencies-1_0.xsd
%%APP_HOME%%/docs/schema/jboss-web_7_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-datasources_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ee_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-ejb-client_1_1.xsd
%%APP_HOME%%/docs/schema/trans-timeout-1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jacorb_1_2.xsd
%%APP_HOME%%/docs/schema/javaee_6.xsd
%%APP_HOME%%/docs/schema/jboss-as-infinispan_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-app_4_2.dtd
%%APP_HOME%%/docs/schema/jboss-as-mod-cluster_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-naming_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jpa_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-client_6_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-web_1_2.xsd
%%APP_HOME%%/docs/schema/web-jsptaglibrary_1_2.dtd
%%APP_HOME%%/docs/schema/module-1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-ejb3_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-txn_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-jaxr_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-osgi_1_0.xsd
%%APP_HOME%%/docs/schema/web-app_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jmx_1_2.xsd
%%APP_HOME%%/docs/schema/web-common_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jgroups_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-ejb3-spec-2_0.xsd
%%APP_HOME%%/docs/schema/ejb-jar_3_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-jdr_1_0.xsd
%%APP_HOME%%/docs/schema/j2ee_jaxrpc_mapping_1_1.xsd
%%APP_HOME%%/docs/schema/jboss-as-messaging_1_0.xsd
%%APP_HOME%%/docs/schema/jboss-as-config_1_1.xsd
%%APP_HOME%%/docs/examples/configs/standalone-xts.xml
%%APP_HOME%%/docs/examples/configs/standalone-hornetq-colocated.xml
%%APP_HOME%%/docs/examples/configs/standalone-osgi-only.xml
%%APP_HOME%%/docs/examples/configs/standalone-minimalistic.xml
%%APP_HOME%%/docs/examples/configs/standalone-jts.xml
%%APP_HOME%%/bundles/system/layers/base/org/jboss/as/osgi/configadmin/main/jboss-as-osgi-configadmin-7.2.0.Final.jar
%%APP_HOME%%/bundles/system/layers/base/org/jboss/osgi/logging/main/jboss-osgi-logging-1.0.0.Final.jar
%%APP_HOME%%/bundles/system/layers/base/org/apache/felix/log/main/org.apache.felix.log-1.0.0.jar
%%APP_HOME%%/bundles/system/layers/base/org/apache/felix/configadmin/main/org.apache.felix.configadmin-1.2.8.jar
%%APP_HOME%%/bundles/system/layers/base/org/projectodd/stilts/main/stilts-stomplet-server-bundle-0.1.26.jar
%%APP_HOME%%/bundles/system/layers/base/javax/servlet/api/v25/jboss-servlet-api_2.5_spec-1.0.1.Final.jar
%%APP_HOME%%/jboss-modules.jar
%%APP_HOME%%/standalone/deployments/README.txt
%%APP_HOME%%/standalone/configuration/application-roles.properties
%%APP_HOME%%/standalone/configuration/application-users.properties
%%APP_HOME%%/standalone/configuration/standalone-full.xml
%%APP_HOME%%/standalone/configuration/standalone-full-ha.xml
%%APP_HOME%%/standalone/configuration/standalone-ha.xml
%%APP_HOME%%/standalone/configuration/logging.properties
%%APP_HOME%%/standalone/configuration/standalone.xml
%%APP_HOME%%/standalone/configuration/standalone-osgi.xml
%%APP_HOME%%/standalone/configuration/mgmt-users.properties
%%APP_HOME%%/README.txt
%%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api/main/jboss-jacc-api_1.4_spec-1.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api/main/jboss-jaspi-api_1.0_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main/jboss-ejb-api_3.1_spec-1.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/validation/api/main/validation-api-1.0.0.GA.jar
%%APP_HOME%%/modules/system/layers/base/javax/validation/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/activation/api/main/activation-1.1.1.jar
%%APP_HOME%%/modules/system/layers/base/javax/activation/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/jms/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/jms/api/main/jboss-jms-api_1.1_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/interceptor/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/interceptor/api/main/jboss-interceptors-api_1.1_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main/jboss-transaction-api_1.1_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/xml/jaxp-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api/main/jboss-jaxb-api_2.2_spec-1.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main/jboss-jaxws-api_2.2_spec-2.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/xml/registry/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/xml/registry/api/main/jboss-jaxr-api_1.0_spec-1.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/api/main/jboss-jaxrpc-api_1.1_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/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/soap/api/main/jboss-saaj-api_1.3_spec-1.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/enterprise/deploy/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/enterprise/deploy/api/main/jboss-jad-api_1.2_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main/cdi-api-1.0-SP4.jar
%%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main/jboss-jsp-api_2.2_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/servlet/api/main/jboss-servlet-api_3.0_spec-1.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/servlet/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/jboss-jstl-api_1.2_spec-1.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/el/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/el/api/main/jboss-el-api_2.2_spec-1.0.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main/jboss-annotations-api_1.1_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main/jboss-j2eemgmt-api_1.1_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api/main/wsdl4j-1.6.2.jar
%%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main/jboss-jaxrs-api_1.1_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/resource/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/resource/api/main/jboss-connector-api_1.6_spec-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/hibernate-jpa-2.0-api-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/jbosgi-xservice.properties
%%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/faces/api/1.2/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/faces/api/1.2/jsf-api-1.2_15-jbossorg-2.jar
%%APP_HOME%%/modules/system/layers/base/javax/faces/api/main/jboss-jsf-api_2.1_spec-2.1.18.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/faces/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/mail/api/main/mail-1.4.5.jar
%%APP_HOME%%/modules/system/layers/base/javax/mail/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/jws/api/main/jsr181-api-1.0-MR1.jar
%%APP_HOME%%/modules/system/layers/base/javax/jws/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/rmi/api/main/jboss-rmi-api_1.0_spec-1.0.4.Final.jar
%%APP_HOME%%/modules/system/layers/base/javax/rmi/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/inject/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/javax/inject/api/main/javax.inject-1.jar
%%APP_HOME%%/modules/system/layers/base/javaee/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n/main/cal10n-api-0.7.3.jar
%%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n/main/module.xml
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/asm-3.3.1.jar
%%APP_HOME%%/modules/system/layers/base/asm/asm/main/module.xml
%%APP_HOME%%/modules/system/layers/base/ibm/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/jdk/main/service-loader-resources/META-INF/services/javax.script.ScriptEngineFactory
%%APP_HOME%%/modules/system/layers/base/sun/jdk/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/github/relaxng/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/github/relaxng/main/relaxngDatatype-2011.1.jar
%%APP_HOME%%/modules/system/layers/base/com/google/guava/main/guava-13.0.1.jar
%%APP_HOME%%/modules/system/layers/base/com/google/guava/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main/h2-1.3.168.jar
%%APP_HOME%%/modules/system/layers/base/com/h2database/h2/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-1.3.16-jbossorg-1.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/jaxb-impl-2.2.5.jboss-1.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/jaxb-xjc-2.2.5.jboss-1.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2/main/txw2-20110809.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/istack-commons-tools-2.6.1.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/istack/main/istack-commons-runtime-2.6.1.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main/jsf-impl-2.1.18-jbossorg-1.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/1.2/jsf-impl-1.2_15-jbossorg-2.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/1.2/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/xsom/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/xsom/main/xsom-20110809.jar
%%APP_HOME%%/modules/system/layers/base/com/sun/codemodel/main/module.xml
%%APP_HOME%%/modules/system/layers/base/com/sun/codemodel/main/codemodel-2.6.jar
%%APP_HOME%%/modules/system/layers/base/net/jcip/main/module.xml
%%APP_HOME%%/modules/system/layers/base/net/jcip/main/jcip-annotations-1.0.jar
%%APP_HOME%%/modules/system/layers/base/gnu/getopt/main/module.xml
%%APP_HOME%%/modules/system/layers/base/gnu/getopt/main/getopt-1.0.13.jar
%%APP_HOME%%/modules/system/layers/base/nu/xom/main/xom-1.2.5.jar
%%APP_HOME%%/modules/system/layers/base/nu/xom/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/antlr/main/antlr-2.7.7.jar
%%APP_HOME%%/modules/system/layers/base/org/antlr/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/osgi/enterprise/main/org.osgi.enterprise-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/osgi/enterprise/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/osgi/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/osgi/core/main/org.osgi.core-4.2.0.jar
%%APP_HOME%%/modules/system/layers/base/org/dom4j/main/dom4j-1.6.1.jar
%%APP_HOME%%/modules/system/layers/base/org/dom4j/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/picketlink/main/picketlink-jbas7-2.1.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/picketlink/main/picketlink-core-2.1.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/picketlink/main/picketlink-core-2.1.6.Final-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/picketlink/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/picketlink/main/picketlink-core-2.1.6.Final-jandex-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/picketlink/main/picketlink-jbas7-2.1.6.Final-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/jaxen/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jaxen/main/jaxen-1.1.3.jar
%%APP_HOME%%/modules/system/layers/base/org/joda/time/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/joda/time/main/joda-time-1.6.2.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/main/infinispan-core-5.2.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main/infinispan-cachestore-remote-5.2.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc/main/infinispan-cachestore-jdbc-5.2.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main/infinispan-client-hotrod-5.2.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/stax2-api-3.1.1.jar
%%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/woodstox-core-asl-4.1.1.jar
%%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl/main/jackson-core-asl-1.9.9.jar
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl/main/jackson-mapper-asl-1.9.9.jar
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc/main/jackson-xc-1.9.9.jar
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs/main/jackson-jaxrs-1.9.9.jar
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison/main/jettison-1.3.1.jar
%%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jgroups/main/jgroups-3.2.7.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jgroups/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jdom/main/jdom-1.1.2.jar
%%APP_HOME%%/modules/system/layers/base/org/jdom/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/scannotation/scannotation/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/scannotation/scannotation/main/scannotation-1.0.2.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main/jboss-as-connector-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main/jboss-as-domain-http-error-context-7.2.0.Final.jar
%%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/jmx/main/jboss-as-jmx-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/jboss-as-jaxrs-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/jboss-as-remoting-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main/jboss-as-domain-http-interface-7.2.0.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/web/main/lib/win-x86_64/tcnative-1.dll
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-x86_64/libtcnative-1.jnilib
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-x86_64/libcrypto.jnilib
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-x86_64/libssl.jnilib
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-x86_64/libapr-1.jnilib
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-i686/libtcnative-1.jnilib
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-i686/libcrypto.jnilib
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-i686/libapr-1.jnilib
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-i686/libssl.jnilib
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/win-i686/tcnative-1.dll
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-x86_64/libssl.so
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-x86_64/libtcnative-1.so
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-x86_64/libapr-1.so
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-x86_64/libcrypto.so
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-i686/libcrypto.so
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-i686/libtcnative-1.so
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-i686/libssl.so
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-i686/libapr-1.so
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/jbossweb-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/jboss-as-web-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/ecj-3.7.2.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/jboss-as-appclient-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main/jboss-as-logging-7.2.0.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/jboss-as-jdr-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/resources/plugins.properties
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main/jboss-as-weld-7.2.0.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/ejb3/infinispan/main/jboss-as-clustering-ejb3-infinispan-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/spi/main/jboss-as-clustering-web-spi-7.2.0.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/clustering/web/infinispan/main/jboss-as-clustering-web-infinispan-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/singleton/main/jboss-as-clustering-singleton-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/singleton/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/jboss-as-clustering-infinispan-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/api/main/jboss-as-clustering-api-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main/jboss-as-clustering-common-7.2.0.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/impl/main/jboss-as-clustering-impl-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/impl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/registry/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/registry/main/jboss-as-clustering-registry-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/service/main/jboss-as-clustering-service-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/service/main/module.xml
%%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/jboss-as-clustering-jgroups-7.2.0.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/jboss-as-mail-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/jboss-as-jsf-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main/module.xml
%%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/jboss-as-management-client-content-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/jboss-as-sar-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/jboss-as-controller-client-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main/jboss-as-host-controller-7.2.0.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/standalone/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jmx/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jmx/main/jboss-as-osgi-jmx-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/web/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/web/main/jboss-as-osgi-web-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jta/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jta/main/jboss-as-osgi-jta-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/http/main/jboss-as-osgi-http-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/http/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/main/jboss-as-osgi-service-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jpa/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jpa/main/jboss-as-osgi-jpa-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/naming/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/naming/main/jboss-as-osgi-naming-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main/jboss-as-jaxr-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/aggregate/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/jboss-as-xts-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/vault-tool/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main/jboss-as-threads-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/jboss-as-network-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/jboss-as-jsr77-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/jboss-as-server-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main/jboss-as-jsf-injection-7.2.0.Final.jar
%%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/1.2/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/1.2/jboss-as-jsf-injection-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main/jboss-as-deployment-repository-7.2.0.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/controller/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main/jboss-as-controller-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin/main/jboss-as-configadmin-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/util/main/jboss-as-jpa-util-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/util/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/openjpa/main/jboss-as-jpa-openjpa-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/openjpa/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main/jboss-as-jpa-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/3/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/3/jboss-as-jpa-hibernate3-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/4/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/4/jboss-as-jpa-hibernate4-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main/jboss-as-jpa-spi-7.2.0.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/version/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main/jboss-as-version-7.2.0.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/jboss-as-security-7.2.0.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/jboss-as-deployment-scanner-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main/jboss-as-console-1.5.1.Final-resources.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main/jboss-as-platform-mbean-7.2.0.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/cmp/main/jboss-as-cmp-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main/mod_cluster-container-catalina-1.2.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main/mod_cluster-container-spi-1.2.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main/jboss-as-modcluster-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main/mod_cluster-container-jbossweb-1.2.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main/mod_cluster-core-1.2.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/embedded/main/jboss-as-embedded-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/embedded/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/jboss-as-ejb3-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/jboss-as-cli-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/jboss-as-transactions-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/jboss-as-naming-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main/jboss-as-messaging-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main/jboss-as-jacorb-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main/jboss-as-process-controller-7.2.0.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/system-jmx/main/jboss-as-system-jmx-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/jboss-as-pojo-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main/jboss-as-ee-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/deployment/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/deployment/main/jboss-as-ee-deployment-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/jboss-as-protocol-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main/jboss-as-domain-management-7.2.0.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/webservices/server/jaxrpc-integration/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/jbossws-cxf-resources-4.1.3.Final-jboss711.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main/jboss-as-webservices-server-integration-7.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main/jboss-dmr-1.1.6.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio/main/xnio-nio-3.0.7.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio/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.0.7.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/common-core/main/jboss-common-core-2.2.17.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/common-core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/modules/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main/jboss-common-beans-1.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main/bundled/jboss-seam-int.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/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/jbossjts-integration-4.17.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main/jbossjts-jacorb-4.17.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main/jboss-logmanager-1.4.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/aesh/main/aesh-0.27.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/aesh/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/netty/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/netty/main/netty-3.6.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client/main/jboss-iiop-client-1.0.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main/jboss-ejb3-ext-api-2.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming/main/jboss-remote-naming-1.0.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main/jboss-classfilewriter-1.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main/jbossws-common-2.1.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main/jbossws-spi-2.1.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-httpserver/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-httpserver/main/jbossws-cxf-transports-httpserver-4.1.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main/jbossws-cxf-factories-4.1.3.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-4.1.3.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-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main/jbossws-cxf-client-4.1.3.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-jboss-httpserver-httpspi/main/jaxws-jboss-httpserver-httpspi-1.0.1.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-jboss-httpserver-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/api/main/jbossws-api-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/native/jbossws-native-services/main/jbossws-native-services-4.1.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/native/jbossws-native-services/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/native/jbossws-native-core/main/jbossws-native-core-4.1.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/native/jbossws-native-core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common/main/jbossws-common-tools-1.1.0.Final.jar
%%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/ironjacamar/jdbcadapters/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main/ironjacamar-jdbc-1.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-api-1.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-core-api-1.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main/ironjacamar-common-spi-1.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-common-impl-1.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-deployers-common-1.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-validator-1.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main/ironjacamar-core-impl-1.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main/jboss-metadata-common-7.0.8.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main/jboss-metadata-appclient-7.0.8.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main/jboss-metadata-web-7.0.8.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main/jboss-metadata-ejb-7.0.8.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main/jboss-metadata-ear-7.0.8.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main/jboss-jaxb-intros-1.0.2.GA.jar
%%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-1.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core/main/shrinkwrap-api-1.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core/main/shrinkwrap-impl-base-1.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core/main/shrinkwrap-spi-1.0.0.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-common-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-extras-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-net-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-spnego-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main/jboss-negotiation-ntlm-2.2.2.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml/main/jbossxacml-2.0.8.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main/log4j-jboss-logmanager-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main/jbossxts-4.17.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main/jbosstxbridge-4.17.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/repository/main/jbosgi-repository-core-2.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/repository/main/jbosgi-repository-api-2.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/repository/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/spi/main/jbosgi-spi-3.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/metadata/main/jbosgi-metadata-2.2.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/metadata/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/resolver/main/jbosgi-resolver-felix-3.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/resolver/main/jbosgi-resolver-api-3.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/resolver/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/framework/main/jbosgi-framework-core-2.1.0.CR12.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/framework/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/vfs/main/jbosgi-vfs-1.2.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/vfs/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/vfs/main/jbosgi-vfs30-1.2.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/deployment/main/jbosgi-deployment-1.3.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/deployment/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun/httpserver/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun/httpserver/main/httpserver-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/remoting-jmx/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/main/jboss-remoting-3.2.14.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main/jboss-stdio-1.0.1.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/xb/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/xb/main/jbossxb-2.0.3.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main/jandex-1.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main/jboss-logging-3.1.2.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main/module.xml
%%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/jul-to-slf4j-stub/main/jul-to-slf4j-stub-1.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/weld-core-1.1.10.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main/weld-api-1.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main/weld-spi-1.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper/main/staxmapper-1.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main/jboss-msc-1.0.4.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/sasl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/sasl/main/jboss-sasl-1.0.3.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main/jboss-marshalling-river-1.3.16.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/jboss-marshalling-1.3.16.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main/resteasy-jaxrs-2.3.5.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-jaxrs/main/async-http-servlet-3.0-2.3.5.Final.jar
%%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-2.3.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main/resteasy-yaml-provider-2.3.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main/resteasy-jettison-provider-2.3.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main/resteasy-cdi-2.3.5.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-jaxb-provider/main/resteasy-jaxb-provider-2.3.5.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-multipart-provider/main/resteasy-multipart-provider-2.3.5.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-jackson-provider/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main/resteasy-jackson-provider-2.3.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-hibernatevalidator-provider/main/resteasy-hibernatevalidator-provider-2.3.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-hibernatevalidator-provider/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-2.3.5.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main/jboss-transaction-spi-7.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/ejb-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main/jboss-ejb-client-1.0.16.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main/jboss-threads-2.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main/jboss-vfs-3.1.0.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main/jboss-invocation-1.1.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/picketbox/main/picketbox-infinispan-4.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/picketbox/main/picketbox-commons-1.0.0.final.jar
%%APP_HOME%%/modules/system/layers/base/org/picketbox/main/picketbox-4.0.15.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/picketbox/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/jacorb/main/jacorb-2.3.2.jbossorg-4.jar
%%APP_HOME%%/modules/system/layers/base/org/jacorb/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/omg/api/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/envers/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/envers/main/hibernate-envers-4.2.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-infinispan-4.2.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-entitymanager-4.2.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/main/hibernate-core-4.2.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/hibernate-validator-4.3.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main/hibernate-commons-annotations-4.0.1.Final.jar
%%APP_HOME%%/modules/system/layers/base/org/slf4j/main/slf4j-api-1.7.2.jar
%%APP_HOME%%/modules/system/layers/base/org/slf4j/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/slf4j/ext/main/slf4j-ext-1.7.2.jar
%%APP_HOME%%/modules/system/layers/base/org/slf4j/ext/main/module.xml
%%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-1.0.2.GA.jar
%%APP_HOME%%/modules/system/layers/base/org/slf4j/jcl-over-slf4j/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/slf4j/jcl-over-slf4j/main/jcl-over-slf4j-1.7.2.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/ra/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hornetq/ra/main/hornetq-ra-2.3.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/main/hornetq-commons-2.3.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/main/hornetq-server-2.3.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/main/hornetq-jms-client-2.3.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib/linux-x86_64/libHornetQAIO64.so
%%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib/linux-i686/libHornetQAIO32.so
%%APP_HOME%%/modules/system/layers/base/org/hornetq/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/hornetq/main/hornetq-journal-2.3.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/main/hornetq-core-client-2.3.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/hornetq/main/hornetq-jms-server-2.3.0.CR1.jar
%%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main/jansi-1.8.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/xmltooling-1.3.2-1.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/opensaml-2.5.1-1.jar
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/opensaml/main/openws-1.4.2-1.jar
%%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml/main/snakeyaml-1.8.jar
%%APP_HOME%%/modules/system/layers/base/org/kohsuke/rngom/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/kohsuke/rngom/main/rngom-201103.jboss-1.jar
%%APP_HOME%%/modules/system/layers/base/org/javassist/main/javassist-3.15.0-GA.jar
%%APP_HOME%%/modules/system/layers/base/org/javassist/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/log4j/main/log4j-1.2.16.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/log4j/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/configuration/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/configuration/main/commons-configuration-1.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main/commons-cli-1.2.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/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main/commons-codec-1.4.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool/main/commons-pool-1.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main/commons-io-2.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang/main/commons-lang-2.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main/commons-collections-3.2.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main/commons-beanutils-1.8.3.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.0.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/wss4j-1.6.9.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main/apache-mime4j-0.6.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.9.1-jbossas-2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main/neethi-3.0.2.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-xml-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-services-sts-core-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-core-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-jaxb-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-java2ws-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-addr-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-local-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-mex-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-ts-2.6.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-coloc-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-object-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-management-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-jaxb-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-aegis-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-policy-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-simple-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-rm-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-boolean-2.6.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-core-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-security-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-databinding-aegis-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-rm-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-soap-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-security-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-jaxws-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-soap-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-coloc-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-object-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-management-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-http-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-jms-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-databinding-jaxb-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-jaxws-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-local-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-addr-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-bindings-xml-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-mex-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-transports-jms-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-ws-policy-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-xjc-dv-2.6.0.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-common-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-core-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-rt-frontend-simple-2.6.6-jandex.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-wsdlto-frontend-jaxws-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main/cxf-tools-validator-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main/cxf-api-2.6.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/cxf/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/apache/xml-resolver/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/juddi/uddi-ws/main/uddi-ws-3.1.3.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/juddi/uddi-ws/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/juddi/juddi-client/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/juddi/juddi-client/main/juddi-client-3.1.3.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/juddi/scout/main/scout-1.2.6.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/juddi/scout/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpcore-4.2.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpclient-4.2.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main/httpmime-4.2.1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/velocity-1.7.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/xalan-2.7.1.jbossorg-1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/serializer-2.7.1.jbossorg-1.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main/module.xml
%%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/xmlsec-1.5.3.jar
%%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main/module.xml
%%APP_HOME%%/appclient/configuration/appclient.xml
%%APP_HOME%%/appclient/configuration/logging.properties
%%APP_HOME%%/bin/domain.conf
%%APP_HOME%%/bin/wsconsume.bat
%%APP_HOME%%/bin/jboss-cli.xml
%%APP_HOME%%/bin/jboss-cli-logging.properties
%%APP_HOME%%/bin/init.d/jboss-as-standalone.sh
%%APP_HOME%%/bin/init.d/jboss-as-domain.sh
%%APP_HOME%%/bin/init.d/jboss-as.conf
%%APP_HOME%%/bin/wsconsume.sh
%%APP_HOME%%/bin/appclient.sh
%%APP_HOME%%/bin/jconsole.sh
%%APP_HOME%%/bin/vault.bat
%%APP_HOME%%/bin/domain.sh
%%APP_HOME%%/bin/standalone.conf
%%APP_HOME%%/bin/appclient.conf.bat
%%APP_HOME%%/bin/wsprovide.bat
%%APP_HOME%%/bin/client/jboss-client.jar
%%APP_HOME%%/bin/client/jboss-cli-client.jar
%%APP_HOME%%/bin/client/README-CLI-JCONSOLE.txt
%%APP_HOME%%/bin/client/README-EJB-JMS.txt
%%APP_HOME%%/bin/appclient.bat
%%APP_HOME%%/bin/appclient.conf
%%APP_HOME%%/bin/jboss-cli.sh
%%APP_HOME%%/bin/jboss-cli.bat
%%APP_HOME%%/bin/jconsole.bat
%%APP_HOME%%/bin/jdr.bat
%%APP_HOME%%/bin/add-user.sh
%%APP_HOME%%/bin/run.bat
%%APP_HOME%%/bin/run.sh
%%APP_HOME%%/bin/vault.sh
%%APP_HOME%%/bin/standalone.sh
%%APP_HOME%%/bin/domain.conf.bat
%%APP_HOME%%/bin/standalone.conf.bat
%%APP_HOME%%/bin/wsprovide.sh
%%APP_HOME%%/bin/add-user.bat
%%APP_HOME%%/bin/domain.bat
%%APP_HOME%%/bin/jdr.sh
%%APP_HOME%%/bin/standalone.bat
%%APP_HOME%%/welcome-content/jboss_community.png
%%APP_HOME%%/welcome-content/index_noconsole.html
%%APP_HOME%%/welcome-content/documentation.html
%%APP_HOME%%/welcome-content/bkg.gif
%%APP_HOME%%/welcome-content/as7_style.css
%%APP_HOME%%/welcome-content/as7_logo.png
%%APP_HOME%%/welcome-content/noredirect.html
%%APP_HOME%%/welcome-content/noconsole.html
%%APP_HOME%%/welcome-content/favicon.ico
%%APP_HOME%%/welcome-content/index.html
%%APP_HOME%%/LICENSE.txt
%%APP_HOME%%/copyright.txt
%%APP_HOME%%/domain/configuration/mgmt-users.properties
%%APP_HOME%%/domain/configuration/host-master.xml
%%APP_HOME%%/domain/configuration/domain.xml
%%APP_HOME%%/domain/configuration/host-slave.xml
%%APP_HOME%%/domain/configuration/host.xml
%%APP_HOME%%/domain/configuration/logging.properties
%%APP_HOME%%/domain/configuration/application-roles.properties
%%APP_HOME%%/domain/configuration/application-users.properties
@dir %%APP_HOME%%/domain/configuration
@dir %%APP_HOME%%/domain/tmp/auth
@dir %%APP_HOME%%/domain/tmp
@dir %%APP_HOME%%/domain/data/content
@dir %%APP_HOME%%/domain/data
@dir %%APP_HOME%%/domain
@dir %%APP_HOME%%/welcome-content
@dir %%APP_HOME%%/bin/client
@dir %%APP_HOME%%/bin/init.d
@dir %%APP_HOME%%/bin
@dir %%APP_HOME%%/appclient/configuration
@dir %%APP_HOME%%/appclient
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/santuario/xmlsec
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/santuario
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xalan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xalan
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/velocity/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/velocity
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/httpcomponents
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/juddi/scout/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/juddi/scout
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/juddi/juddi-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/juddi/juddi-client
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/juddi/uddi-ws/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/juddi/uddi-ws
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/juddi
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xml-resolver
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/cxf
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/neethi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/neethi
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xerces/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/xerces
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/james/mime4j
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/james
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/security/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/security
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws/xmlschema
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/ws
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/beanutils
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/collections
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/lang
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/io/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/io
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/pool
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/codec
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/cli
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/logging
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/configuration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons/configuration
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/commons
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/log4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/apache/log4j
@dir %%APP_HOME%%/modules/system/layers/base/org/apache
@dir %%APP_HOME%%/modules/system/layers/base/org/javassist/main
@dir %%APP_HOME%%/modules/system/layers/base/org/javassist
@dir %%APP_HOME%%/modules/system/layers/base/org/kohsuke/rngom/main
@dir %%APP_HOME%%/modules/system/layers/base/org/kohsuke/rngom
@dir %%APP_HOME%%/modules/system/layers/base/org/kohsuke
@dir %%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml/main
@dir %%APP_HOME%%/modules/system/layers/base/org/yaml/snakeyaml
@dir %%APP_HOME%%/modules/system/layers/base/org/yaml
@dir %%APP_HOME%%/modules/system/layers/base/org/opensaml/main
@dir %%APP_HOME%%/modules/system/layers/base/org/opensaml
@dir %%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/fusesource/jansi
@dir %%APP_HOME%%/modules/system/layers/base/org/fusesource
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib/linux-i686
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib/linux-x86_64
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main/lib
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/ra/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq/ra
@dir %%APP_HOME%%/modules/system/layers/base/org/hornetq
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/jcl-over-slf4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/jcl-over-slf4j
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/ext/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/ext
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/slf4j
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/commons-annotations
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/validator
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/envers/main
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate/envers
@dir %%APP_HOME%%/modules/system/layers/base/org/hibernate
@dir %%APP_HOME%%/modules/system/layers/base/org/omg/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/omg/api
@dir %%APP_HOME%%/modules/system/layers/base/org/omg
@dir %%APP_HOME%%/modules/system/layers/base/org/jacorb/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jacorb
@dir %%APP_HOME%%/modules/system/layers/base/org/picketbox/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketbox
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/invocation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/invocation
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/vfs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/vfs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/threads/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/threads
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jboss-transaction-spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-atom-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-hibernatevalidator-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-hibernatevalidator-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jackson-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-multipart-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxb-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-cdi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jettison-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-yaml-provider
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jsapi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy/resteasy-jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/resteasy
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling/river
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/marshalling
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/sasl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/sasl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/msc/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/msc
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/staxmapper
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld/core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/weld
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/jul-to-slf4j-stub
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logging
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jandex/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jandex
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xb/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xb
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/stdio/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/stdio
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/remoting-jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3/remoting-jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun/httpserver/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun/httpserver
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com/sun
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/com
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/deployment/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/deployment
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/vfs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/vfs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/framework/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/framework
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/resolver/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/resolver
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/metadata/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/metadata
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/repository/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi/repository
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/osgi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j/logmanager
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/log4j
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/xacml
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security/negotiation
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/security
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap/core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/shrinkwrap
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remoting-jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jaxbintros
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/metadata
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar/jdbcadapters
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ironjacamar
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsprovide/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsprovide
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsconsume/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/wsconsume
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools/common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/tools
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/native/jbossws-native-core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/native/jbossws-native-core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/native/jbossws-native-services/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/native/jbossws-native-services
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/native
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/saaj-impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/saaj-impl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-jboss-httpserver-httpspi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-jboss-httpserver-httpspi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/jaxws-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-server
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-factories
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-httpserver/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf/jbossws-cxf-transports-httpserver
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/cxf
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws/common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ws
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/classfilewriter
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/remote-naming
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/ejb3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/iiop-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/netty/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/netty
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/aesh/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/aesh
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/logmanager
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts/integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/jts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main/bundled
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration/ext-content
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-beans
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/modules/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/modules
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/common-core
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio/nio
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/xnio
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/dmr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/dmr
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/jaxrpc-integration/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server/jaxrpc-integration
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices/server
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/webservices
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-management
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/protocol
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/deployment/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/deployment
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ee
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-add-user
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/pojo
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/system-jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/process-controller
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jacorb
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/messaging
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/naming
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/transactions
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cli
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/ejb3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/embedded/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/embedded
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/modcluster
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/cmp
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/platform-mbean
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/console/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/console
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-scanner
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/security
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/version/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/version
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/4
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate/3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/hibernate
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/openjpa/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/openjpa
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/util/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa/util
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jpa
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/configadmin
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/deployment-repository
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/1.2
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf-injection
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/server/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/server
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsr77
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/network/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/network
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/threads
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/vault-tool/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/vault-tool
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/xts
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/aggregate/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/aggregate
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxr
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/naming/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/naming
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jpa/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jpa
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/http/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/http
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jta/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jta
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/web/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/web
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi/jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/osgi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/standalone/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/standalone
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/host-controller
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/controller-client
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/sar
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/management-client-content
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jsf
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/mail
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/jgroups
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/service/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/service
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/registry/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/registry
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/impl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/impl
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/common
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/api/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/api
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/singleton/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/singleton
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/spi/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web/spi
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/web
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering/ejb3
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/clustering
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/weld
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main/resources
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jdr
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/logging
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/appclient
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-i686
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/linux-x86_64
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/win-i686
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-i686
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/macosx-x86_64
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib/win-x86_64
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main/lib
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/web
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-interface
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/remoting
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/jmx
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/domain-http-error-context
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as/connector
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss/as
@dir %%APP_HOME%%/modules/system/layers/base/org/jboss
@dir %%APP_HOME%%/modules/system/layers/base/org/scannotation/scannotation/main
@dir %%APP_HOME%%/modules/system/layers/base/org/scannotation/scannotation
@dir %%APP_HOME%%/modules/system/layers/base/org/scannotation
@dir %%APP_HOME%%/modules/system/layers/base/org/jdom/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jdom
@dir %%APP_HOME%%/modules/system/layers/base/org/jgroups/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jgroups
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jettison
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-jaxrs
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-xc
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-mapper-asl
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson/jackson-core-asl
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/jackson
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox/main
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus/woodstox
@dir %%APP_HOME%%/modules/system/layers/base/org/codehaus
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/client/hotrod
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/client
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/jdbc
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore/remote
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/cachestore
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan/main
@dir %%APP_HOME%%/modules/system/layers/base/org/infinispan
@dir %%APP_HOME%%/modules/system/layers/base/org/joda/time/main
@dir %%APP_HOME%%/modules/system/layers/base/org/joda/time
@dir %%APP_HOME%%/modules/system/layers/base/org/joda
@dir %%APP_HOME%%/modules/system/layers/base/org/jaxen/main
@dir %%APP_HOME%%/modules/system/layers/base/org/jaxen
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink/main
@dir %%APP_HOME%%/modules/system/layers/base/org/picketlink
@dir %%APP_HOME%%/modules/system/layers/base/org/dom4j/main
@dir %%APP_HOME%%/modules/system/layers/base/org/dom4j
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi/core/main
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi/core
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi/enterprise/main
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi/enterprise
@dir %%APP_HOME%%/modules/system/layers/base/org/osgi
@dir %%APP_HOME%%/modules/system/layers/base/org/antlr/main
@dir %%APP_HOME%%/modules/system/layers/base/org/antlr
@dir %%APP_HOME%%/modules/system/layers/base/org
@dir %%APP_HOME%%/modules/system/layers/base/nu/xom/main
@dir %%APP_HOME%%/modules/system/layers/base/nu/xom
@dir %%APP_HOME%%/modules/system/layers/base/nu
@dir %%APP_HOME%%/modules/system/layers/base/gnu/getopt/main
@dir %%APP_HOME%%/modules/system/layers/base/gnu/getopt
@dir %%APP_HOME%%/modules/system/layers/base/gnu
@dir %%APP_HOME%%/modules/system/layers/base/net/jcip/main
@dir %%APP_HOME%%/modules/system/layers/base/net/jcip
@dir %%APP_HOME%%/modules/system/layers/base/net
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/codemodel/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/codemodel
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xsom/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xsom
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/1.2
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/jsf-impl
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/istack/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/istack
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/txw2
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/bind
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj/main
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging/saaj
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml/messaging
@dir %%APP_HOME%%/modules/system/layers/base/com/sun/xml
@dir %%APP_HOME%%/modules/system/layers/base/com/sun
@dir %%APP_HOME%%/modules/system/layers/base/com/h2database/h2/main
@dir %%APP_HOME%%/modules/system/layers/base/com/h2database/h2
@dir %%APP_HOME%%/modules/system/layers/base/com/h2database
@dir %%APP_HOME%%/modules/system/layers/base/com/google/guava/main
@dir %%APP_HOME%%/modules/system/layers/base/com/google/guava
@dir %%APP_HOME%%/modules/system/layers/base/com/google
@dir %%APP_HOME%%/modules/system/layers/base/com/github/relaxng/main
@dir %%APP_HOME%%/modules/system/layers/base/com/github/relaxng
@dir %%APP_HOME%%/modules/system/layers/base/com/github
@dir %%APP_HOME%%/modules/system/layers/base/com
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF/services
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources/META-INF
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main/service-loader-resources
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk/main
@dir %%APP_HOME%%/modules/system/layers/base/sun/jdk
@dir %%APP_HOME%%/modules/system/layers/base/sun
@dir %%APP_HOME%%/modules/system/layers/base/ibm/jdk/main
@dir %%APP_HOME%%/modules/system/layers/base/ibm/jdk
@dir %%APP_HOME%%/modules/system/layers/base/ibm
@dir %%APP_HOME%%/modules/system/layers/base/asm/asm/main
@dir %%APP_HOME%%/modules/system/layers/base/asm/asm
@dir %%APP_HOME%%/modules/system/layers/base/asm
@dir %%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n/main
@dir %%APP_HOME%%/modules/system/layers/base/ch/qos/cal10n
@dir %%APP_HOME%%/modules/system/layers/base/ch/qos
@dir %%APP_HOME%%/modules/system/layers/base/ch
@dir %%APP_HOME%%/modules/system/layers/base/javaee/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javaee/api
@dir %%APP_HOME%%/modules/system/layers/base/javaee
@dir %%APP_HOME%%/modules/system/layers/base/javax/inject/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/inject/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/inject
@dir %%APP_HOME%%/modules/system/layers/base/javax/rmi/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/rmi/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/rmi
@dir %%APP_HOME%%/modules/system/layers/base/javax/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/jws/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/jws/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/jws
@dir %%APP_HOME%%/modules/system/layers/base/javax/mail/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/mail/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/mail
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces/api/1.2
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/faces
@dir %%APP_HOME%%/modules/system/layers/base/javax/persistence/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/persistence/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/persistence
@dir %%APP_HOME%%/modules/system/layers/base/javax/resource/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/resource/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/resource
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws/rs/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws/rs
@dir %%APP_HOME%%/modules/system/layers/base/javax/ws
@dir %%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/wsdl4j/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/wsdl4j
@dir %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/management/j2ee
@dir %%APP_HOME%%/modules/system/layers/base/javax/management
@dir %%APP_HOME%%/modules/system/layers/base/javax/annotation/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/annotation/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/annotation
@dir %%APP_HOME%%/modules/system/layers/base/javax/el/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/el/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/el
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jstl
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet/jsp
@dir %%APP_HOME%%/modules/system/layers/base/javax/servlet
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/deploy/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/deploy/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise/deploy
@dir %%APP_HOME%%/modules/system/layers/base/javax/enterprise
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/stream/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/stream
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/soap/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/soap
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/rpc/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/rpc
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/registry/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/registry/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/registry
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/ws/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/ws
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/bind/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/bind
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/jaxp-provider/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml/jaxp-provider
@dir %%APP_HOME%%/modules/system/layers/base/javax/xml
@dir %%APP_HOME%%/modules/system/layers/base/javax/transaction/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/transaction/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/transaction
@dir %%APP_HOME%%/modules/system/layers/base/javax/interceptor/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/interceptor/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/interceptor
@dir %%APP_HOME%%/modules/system/layers/base/javax/jms/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/jms/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/jms
@dir %%APP_HOME%%/modules/system/layers/base/javax/activation/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/activation/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/activation
@dir %%APP_HOME%%/modules/system/layers/base/javax/validation/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/validation/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/validation
@dir %%APP_HOME%%/modules/system/layers/base/javax/ejb/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/ejb/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/ejb
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth/message/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth/message
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/auth
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api/main
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/jacc/api
@dir %%APP_HOME%%/modules/system/layers/base/javax/security/jacc
@dir %%APP_HOME%%/modules/system/layers/base/javax/security
@dir %%APP_HOME%%/modules/system/layers/base/javax
@dir %%APP_HOME%%/modules/system/layers/base
@dir %%APP_HOME%%/modules/system/layers
@dir %%APP_HOME%%/modules/system
@dir %%APP_HOME%%/modules
@dir %%APP_HOME%%/standalone/lib/ext
@dir %%APP_HOME%%/standalone/lib
@dir %%APP_HOME%%/standalone/configuration
@dir %%APP_HOME%%/standalone/deployments
@dir %%APP_HOME%%/standalone/tmp/auth
@dir %%APP_HOME%%/standalone/tmp
@dir %%APP_HOME%%/standalone
@dir %%APP_HOME%%/bundles/system/layers/base/javax/servlet/api/v25
@dir %%APP_HOME%%/bundles/system/layers/base/javax/servlet/api
@dir %%APP_HOME%%/bundles/system/layers/base/javax/servlet
@dir %%APP_HOME%%/bundles/system/layers/base/javax
@dir %%APP_HOME%%/bundles/system/layers/base/org/projectodd/stilts/main
@dir %%APP_HOME%%/bundles/system/layers/base/org/projectodd/stilts
@dir %%APP_HOME%%/bundles/system/layers/base/org/projectodd
@dir %%APP_HOME%%/bundles/system/layers/base/org/apache/felix/configadmin/main
@dir %%APP_HOME%%/bundles/system/layers/base/org/apache/felix/configadmin
@dir %%APP_HOME%%/bundles/system/layers/base/org/apache/felix/log/main
@dir %%APP_HOME%%/bundles/system/layers/base/org/apache/felix/log
@dir %%APP_HOME%%/bundles/system/layers/base/org/apache/felix
@dir %%APP_HOME%%/bundles/system/layers/base/org/apache
@dir %%APP_HOME%%/bundles/system/layers/base/org/jboss/osgi/logging/main
@dir %%APP_HOME%%/bundles/system/layers/base/org/jboss/osgi/logging
@dir %%APP_HOME%%/bundles/system/layers/base/org/jboss/osgi
@dir %%APP_HOME%%/bundles/system/layers/base/org/jboss/as/osgi/configadmin/main
@dir %%APP_HOME%%/bundles/system/layers/base/org/jboss/as/osgi/configadmin
@dir %%APP_HOME%%/bundles/system/layers/base/org/jboss/as/osgi
@dir %%APP_HOME%%/bundles/system/layers/base/org/jboss/as
@dir %%APP_HOME%%/bundles/system/layers/base/org/jboss
@dir %%APP_HOME%%/bundles/system/layers/base/org
@dir %%APP_HOME%%/bundles/system/layers/base
@dir %%APP_HOME%%/bundles/system/layers
@dir %%APP_HOME%%/bundles/system
@dir %%APP_HOME%%/bundles
@dir %%APP_HOME%%/docs/examples/configs
@dir %%APP_HOME%%/docs/examples
@dir %%APP_HOME%%/docs/schema
@dir %%APP_HOME%%/docs
@dir %%APP_HOME%%
@owner root
@group wheel