Is it possible to replace code like:
grant codeBase "file:${home.url}/installed/Engine/lib/runtime_3.jar" {
// permission for the Engine
permission java.util.PropertyPermission "*", "read";
permission java.util.PropertyPermission "*", "write";
};
With code like this:
grant codeBase "file:${home.url}/installed/Engine/lib/runtime_*.jar" {
// permission for the Engine
permission java.util.PropertyPermission "*", "read";
permission java.util.PropertyPermission "*", "write";
};
So as to avoid repeatedly changing the policy file with new versions of libraries?
I've not seen this documented anywhere (and am having a hard time verifying this).