Hello,
I have a Java web app that contains the following permission in the manifest file:
<permission type="java.util.PropertyPermission" name="jboss.i18n.generate-proxies" actions="write"/>
When I install the app in the target system, I am getting a warning message to say :
Certain Permissions in its manifest that will be blocked in the next release. The source code needs to be fixed : java.util.PropertyPermission: jboss.i18n.generate-proxies.
I have inherited this permission (from using a standard archetype) and wondering what it relates to and if I need to find a suitable replacement?
Thanks.