I'm currently trying to create a policy file for the Nexus repository manager running on Tomcat.
Nexus tries to read the file WEB-INF/plexus.properties (for which I already granted permission), and seems to try to read all properties from there, which fails because it is missing the following permission:
java.security.PropertyPermission * read,write
How do I configure the SecurityManager to allow reading all properties from this specific file? If I add this to the policy-file:
permission java.security.PropertyPermision "*", "read,write"
I'll grant the permission to read and alter all Properties, even System properties, won't I?