Author: dashorst
Date: Thu Apr 12 15:40:46 2007
New Revision: 528266

URL: http://svn.apache.org/viewvc?view=rev&rev=528266
Log:
Fixes for bamboo and eclipse as they don't seem to like 'target' as the working 
directory for the servlet context

Modified:
    
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockServletContext.java

Modified: 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockServletContext.java
URL: 
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockServletContext.java?view=diff&rev=528266&r1=528265&r2=528266
==============================================================================
--- 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockServletContext.java
 (original)
+++ 
incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/MockServletContext.java
 Thu Apr 12 15:40:46 2007
@@ -102,7 +102,7 @@
                // so the sessions directory will be created inside the target 
directory,
                // and will be cleaned up with a mvn clean
 
-               attributes.put("javax.servlet.context.tempdir", new 
File("target"));
+               attributes.put("javax.servlet.context.tempdir", new 
File("target/work"));
 
                mimeTypes.put("html", "text/html");
                mimeTypes.put("htm", "text/html");


Reply via email to