commit | 2fef2c1d0c9151a53aad312af81b7baebfa012c5 | [log] [tgz] |
---|---|---|
author | Benson Margulies <bimargulies@apache.org> | Tue Dec 01 13:29:54 2015 +0000 |
committer | Benson Margulies <bimargulies@apache.org> | Tue Dec 01 13:29:54 2015 +0000 |
tree | 025368721c86780cf00b44ff2b3ecedb9201d14e | |
parent | 65c7a5350becdc9dc30612b8de41cd9c32003992 [diff] |
no jira: add remark about $ escaping for instructions. git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1717436 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/tools/maven-bundle-plugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java b/tools/maven-bundle-plugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java index f15a34a..724a074 100644 --- a/tools/maven-bundle-plugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java +++ b/tools/maven-bundle-plugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
@@ -280,6 +280,9 @@ /** * The BND instructions for the bundle. + * Maven will expand property macros in these values. If you want to use a BND macro, you must double the dollar sign + * for the plugin to pass it to BND correctly. For example: <br> + * {@code <_consumer-policy>$${range;[===,+)}<code>}<code>{@code </_consumer-policy> } */ @Parameter private Map<String, String> instructions = new LinkedHashMap<String, String>();