Index: src/main/java/org/jruby/webapp/RailsFactory.java
===================================================================
--- src/main/java/org/jruby/webapp/RailsFactory.java	(revision 804)
+++ src/main/java/org/jruby/webapp/RailsFactory.java	(working copy)
@@ -13,7 +13,7 @@
 import java.util.ArrayList;
 import javax.servlet.ServletException;
 import javax.servlet.ServletContext;
-import edu.emory.mathcs.backport.java.util.concurrent.atomic.AtomicInteger;
+import java.util.concurrent.atomic.AtomicInteger;
 /**
  * Creates instance of the JRuby runtime and loads Rails.
  *
Index: src/main/java/org/jruby/webapp/RailsTaskServlet.java
===================================================================
--- src/main/java/org/jruby/webapp/RailsTaskServlet.java	(revision 804)
+++ src/main/java/org/jruby/webapp/RailsTaskServlet.java	(working copy)
@@ -35,7 +35,7 @@
 						Ruby runtime = (Ruby) getRuntimePool().borrowObject();
 						servletConfig.getServletContext().log("Starting " + script);
 						try {
-							runtime.evalScript("load(File.join(RAILS_ROOT, '" + script + "'))");
+							runtime.evalScriptlet("load(File.join(RAILS_ROOT, '" + script + "'))");
 						} catch (Exception e) {
 							getRuntimePool().invalidateObject(runtime);
                             runtime = null;
Index: src/main/java/org/jruby/webapp/util/CustomObjectPool.java
===================================================================
--- src/main/java/org/jruby/webapp/util/CustomObjectPool.java	(revision 804)
+++ src/main/java/org/jruby/webapp/util/CustomObjectPool.java	(working copy)
@@ -1,11 +1,11 @@
 package org.jruby.webapp.util;
 import org.apache.commons.pool.ObjectPool;
 import org.apache.commons.pool.PoolableObjectFactory;
-import edu.emory.mathcs.backport.java.util.concurrent.BlockingQueue;
-import edu.emory.mathcs.backport.java.util.concurrent.ArrayBlockingQueue;
-import edu.emory.mathcs.backport.java.util.concurrent.TimeUnit;
-import edu.emory.mathcs.backport.java.util.concurrent.Semaphore;
-import edu.emory.mathcs.backport.java.util.concurrent.atomic.AtomicInteger;
+import java.util.concurrent.BlockingQueue;
+import java.util.concurrent.ArrayBlockingQueue;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.Semaphore;
+import java.util.concurrent.atomic.AtomicInteger;
 import java.util.NoSuchElementException;
 /**
  * An object pool which assumes that object creation is slow, and should be done in a separate thread.
Index: src/main/java/org/jruby/webapp/RailsPeriodicalTaskServlet.java
===================================================================
--- src/main/java/org/jruby/webapp/RailsPeriodicalTaskServlet.java	(revision 804)
+++ src/main/java/org/jruby/webapp/RailsPeriodicalTaskServlet.java	(working copy)
@@ -66,7 +66,7 @@
         Ruby runtime = null;
         try {
             runtime = (Ruby) getRuntimePool().borrowObject();
-            runtime.evalScript(command);
+            runtime.evalScriptlet(command);
             getRuntimePool().returnObject(runtime);
         } catch (Exception e) {
             getServletContext().log("Could not execute: " + command, e);
Index: pom.xml
===================================================================
--- pom.xml	(revision 804)
+++ pom.xml	(working copy)
@@ -45,7 +45,7 @@
     <dependency>
       <groupId>org.jruby</groupId>
       <artifactId>jruby-complete</artifactId>
-      <version>1.0.1</version>
+      <version>1.1-SNAPSHOT</version>
     </dependency>
 
     <dependency>
@@ -204,18 +204,18 @@
           </execution> 
         </executions>
       </plugin>
-      <plugin>
+      <!-- <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
           <source>1.4</source>
           <target>1.4</target>
         </configuration>
-      </plugin>
+      </plugin> -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.4-SNAPSHOT</version>
+        <!-- <version>2.4-SNAPSHOT</version> -->
         <configuration>
           <forkMode>pertest</forkMode>
           <enableAssertions>false</enableAssertions>
