374881 Set copyWebInf to false by default

This commit is contained in:
Jan Bartel 2012-04-12 23:01:33 +10:00
parent 7e5bff4640
commit 1fbe298bd6
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
private boolean _distributable=false; private boolean _distributable=false;
private boolean _extractWAR=true; private boolean _extractWAR=true;
private boolean _copyDir=false; private boolean _copyDir=false;
private boolean _copyWebInf=true; // TODO change to false? private boolean _copyWebInf=false; // TODO change to true?
private boolean _logUrlOnStart =false; private boolean _logUrlOnStart =false;
private boolean _parentLoaderPriority= Boolean.getBoolean("org.eclipse.jetty.server.webapp.parentLoaderPriority"); private boolean _parentLoaderPriority= Boolean.getBoolean("org.eclipse.jetty.server.webapp.parentLoaderPriority");
private PermissionCollection _permissions; private PermissionCollection _permissions;