Hi, Looking at Sling Launchpad docs [1] it mentions that one can set framework property via -D n=v pair. I tried passing multiple properties like
* -D a1=b1 -D a2=b2 * -Da1=b1 -Da2=b2 In both cases only the last property is set while the others are ignored. is there any other way it should be set? Also looking at the command line parsing logic it appears that it probably does not handle such multiple properties [2] that well. So wanted to confirm if anyone has been able to pass multiple framework property via command line Chetan Mehrotra [1] http://sling.apache.org/documentation/the-sling-engine/the-sling-launchpad.html [2] https://github.com/apache/sling/blob/trunk/launchpad/base/src/main/java/org/apache/sling/launchpad/app/Main.java#L121