@@ -468,6 +468,10 @@ java:
468
468
" arm64" : " x64"
469
469
" aarch64" : " x64"
470
470
471
+ # Vault-Cli tool options
472
+ vault:
473
+ " download_url" : " https://repo1.maven.org/maven2/org/apache/jackrabbit/vault/vault-cli/3.7.2/vault-cli-3.7.2-bin.tar.gz"
474
+
471
475
base:
472
476
# Location of temporary files (downloaded AEM packages, etc)
473
477
tmp_dir: aem/home/tmp
@@ -490,6 +494,52 @@ output:
490
494
file: aem/home/var/log/aem.log
491
495
# Controls where outputs and logs should be written to when format is 'text' (console|file|both)
492
496
mode: console
497
+
498
+ # Content clean options
499
+ content:
500
+ clean:
501
+ # File patterns to be deleted
502
+ files_deleted:
503
+ - patterns:
504
+ - " **/.vlt"
505
+ - " **/.vlt*.tmp"
506
+ - " **/install/*.jar"
507
+ # File patterns to be flattened
508
+ files_flattened:
509
+ - " **/_cq_design_dialog/.content.xml"
510
+ - " **/_cq_dialog/.content.xml"
511
+ - " **/_cq_htmlTag/.content.xml"
512
+ - " **/_cq_template/.content.xml"
513
+ # Property patterns to be skipped, removed from cleaned file
514
+ properties_skipped:
515
+ - patterns: " jcr:uuid"
516
+ excluded_paths: [ " **/home/users/*" , " **/home/groups/*" ]
517
+ - patterns: " cq:lastModified*"
518
+ excluded_paths: [ " **/content/experience-fragments/*" ]
519
+ - patterns: [ " dam:sha1" , " dam:size" ]
520
+ included_paths: [ " **/content/dam/*.svg/*" ]
521
+ - patterns:
522
+ - " jcr:lastModified*"
523
+ - " jcr:created*"
524
+ - " jcr:isCheckedOut"
525
+ - " cq:lastReplicat*"
526
+ - " cq:lastRolledout*"
527
+ - " dam:extracted"
528
+ - " dam:assetState"
529
+ - " dc:modified"
530
+ - " *_x0040_*"
531
+ - " cq:name"
532
+ - " cq:parentPath"
533
+ - " dam:copiedAt"
534
+ - " dam:parentAssetID"
535
+ - " dam:relativePath"
536
+ # Mixin type patterns to be skipped, removed from cleaned file
537
+ mixin_types_skipped:
538
+ - patterns:
539
+ - " cq:ReplicationStatus"
540
+ - " mix:versionable"
541
+ # Unused namespaces to be skipped, removed from cleaned file
542
+ namespaces_skipped: true
493
543
```
494
544
495
545
Note that environment variables may be injected in any part of config file.
0 commit comments