jw项目windows环境软件安装
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
703 B

1 year ago
  1. grant {
  2. // required to configure the custom mailcap for watcher
  3. permission java.lang.RuntimePermission "setFactory";
  4. // needed when sending emails for javax.activation
  5. // otherwise a classnotfound exception is thrown due to trying
  6. // to load the class with the application class loader
  7. permission java.lang.RuntimePermission "setContextClassLoader";
  8. permission java.lang.RuntimePermission "getClassLoader";
  9. // TODO: remove use of this jar as soon as possible!!!!
  10. permission java.lang.RuntimePermission "accessClassInPackage.com.sun.activation.registries";
  11. // needed for multiple server implementations used in tests
  12. permission java.net.SocketPermission "*", "accept,connect";
  13. };