
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1640879 13f79535-47bb-0310-9956-ffa450edef68
20 lines
No EOL
902 B
Text
20 lines
No EOL
902 B
Text
// If the URL substitution property fails, use a hard coded Tuscany home
|
|
// For example, replace "${{tuscany.home}}" with "/e:/tuscany/java/sca" .
|
|
grant codeBase "file:/e:/t/java/sca/-" {
|
|
permission java.security.AllPermission;
|
|
};
|
|
|
|
// If the URL substitution property fails, use a hard coded Maven repos home
|
|
// For example, replace "${{m2_repo.home}}" with "/e:/g/m2" .
|
|
grant codeBase "file:/e:/g/m2/-" {
|
|
permission java.security.AllPermission;
|
|
};
|
|
|
|
grant codeBase "file:/e:/temp/eclipse/eclipse/-" {
|
|
// permission java.security.AllPermission;
|
|
permission java.net.SocketPermission "127.0.0.1:*", "connect,resolve";
|
|
permission java.io.FilePermission "<<ALL FILES>>", "read";
|
|
permission java.lang.RuntimePermission "accessDeclaredMembers";
|
|
permission java.lang.RuntimePermission "getClassLoader";
|
|
permission java.lang.RuntimePermission "createClassLoader";
|
|
}; |