Skip to content

Commit 68b17ec

Browse files
committed
WTOOL-54 conga-aem-maven-plugin: Add two more bundles to "Bundle Status Whitelist Bundle Names" property.
1 parent 9087ff9 commit 68b17ec

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

changes.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
2424
<body>
2525

26+
<release version="1.9.2" date="not released">
27+
<action type="add" dev="sseifert" issue="WTOOL-54">
28+
conga-aem-maven-plugin: Add two more bundles to "Bundle Status Whitelist Bundle Names" property.
29+
</action>
30+
</release>
31+
2632
<release version="1.9.0" date="2019-08-20">
2733
<action type="add" dev="sseifert" issue="WTOOL-52">
2834
conga-aem-maven-plugin: Add "Bundle Status Whitelist Bundle Names" property to define list of bundles ignored by bundle status check.

tooling/conga-aem-maven-plugin/src/main/java/io/wcm/devops/conga/plugins/aem/maven/AbstractContentPackageMojo.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ abstract class AbstractContentPackageMojo extends AbstractMojo {
126126
@Parameter(property = "vault.bundleStatusWhitelistBundleNames",
127127
defaultValue = "^com\\.day\\.crx\\.crxde-support$,"
128128
+ "^com\\.adobe\\.granite\\.crx-explorer$,"
129-
+ "^com\\.adobe\\.granite\\.crxde-lite$")
129+
+ "^com\\.adobe\\.granite\\.crxde-lite$,"
130+
+ "^org\\.apache\\.sling\\.jcr\\.webdav$,"
131+
+ "^org\\.apache\\.sling\\.jcr\\.davex$")
130132
private String[] bundleStatusWhitelistBundleNames;
131133

132134
/**

0 commit comments

Comments
 (0)