I added additional ACLs for / home / groups and / home / users, adding _rep_policy.xml files for each, but cannot force them to expand. I added the following lines to my filter.xml store
<filter root="/home/users/rep:policy" mode="replace"/> <filter root="/home/groups/rep:policy" mode="replace"/>
Both have the following contents:
<?xml version="1.0" encoding="UTF-8"?> <jcr:root xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:rep="internal" jcr:primaryType="rep:ACL"> <allow jcr:primaryType="rep:GrantACE" rep:principalName="everyone" rep:privileges="{Name}[jcr:read]"/> </jcr:root>
But when I start maven, I see that everything around them is expanding, but not these two. If I try to install a package directly through the package manager, it only works if I set the access control processing to "Replace". I do not know how to configure this in maven.
jiggy source share