changeset 7:2122c50278bd

add Global.java, ande models/*
author one
date Mon, 01 Oct 2012 18:51:30 +0900
parents d6afc58ce3f5
children 7b314898fddd
files app/Global.java app/controllers/Application.java app/controllers/User.java app/models/NodeModel.java app/models/TPGraph.java app/models/UserModel.java conf/routes logs/application.log project/project/target/config-classes/$00792d501506d84fddca$$anonfun$$sbtdef$1.class project/project/target/config-classes/$00792d501506d84fddca$.class project/project/target/config-classes/$00792d501506d84fddca.class project/project/target/config-classes/$a1e13ec9c9bc472d8e3a$.class project/project/target/config-classes/$a1e13ec9c9bc472d8e3a.class project/project/target/config-classes/$d6f4faa82d7938384930$$anonfun$$sbtdef$1.class project/project/target/config-classes/$d6f4faa82d7938384930$.class project/project/target/config-classes/$d6f4faa82d7938384930.class project/target/streams/$global/compilers/$global/out project/target/streams/$global/ivy-configuration/$global/out project/target/streams/$global/update/$global/out project/target/streams/compile/compile/$global/out target/.history target/scala-2.9.1/cache/compile/compile target/scala-2.9.1/cache/compile/copy-resources target/scala-2.9.1/cache/update/output target/scala-2.9.1/classes/Routes$.class target/scala-2.9.1/classes/controllers/Application.class target/scala-2.9.1/classes/routes target/scala-2.9.1/classes_managed/Routes$.class target/scala-2.9.1/src_managed/main/controllers/routes.java target/scala-2.9.1/src_managed/main/routes_reverseRouting.scala target/scala-2.9.1/src_managed/main/routes_routing.scala target/streams/compile/compile/$global/out
diffstat 32 files changed, 318 insertions(+), 12158 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/Global.java	Mon Oct 01 18:51:30 2012 +0900
@@ -0,0 +1,33 @@
+import models.TPGraph;
+
+import com.tinkerpop.blueprints.Graph;
+import com.tinkerpop.blueprints.Vertex;
+
+import play.Application;
+import play.GlobalSettings;
+import play.Logger;
+
+
+public class Global extends GlobalSettings {
+
+	@Override
+	public void onStart(Application app) {
+		TPGraph tpgraph = TPGraph.getInstance();
+		tpgraph.setPath(null);
+		Graph graph = tpgraph.newGraph();
+		Vertex claimV = graph.addVertex(null);
+		tpgraph.setClaimRootVertex(claimV);
+		Vertex userV = graph.addVertex(null);
+		tpgraph.setUserRootVertex(userV);
+	}
+	
+	  @Override
+	  public void onStop(Application app) {
+		  Logger.info("Application shutdown...");	    
+		  
+	  }  	
+	
+	  
+	
+	
+}
--- a/app/controllers/Application.java	Mon Oct 01 17:11:46 2012 +0900
+++ b/app/controllers/Application.java	Mon Oct 01 18:51:30 2012 +0900
@@ -37,7 +37,6 @@
 			result.put("status", "OK");
 			result.put("message", "Hello " + name);
 			return ok(result);
-
 		}
 	}
 
@@ -45,7 +44,6 @@
 		String name = "test";
 		System.out.println("name = "+name);
 		
-		
 		return ok(name);
 	}	
 	
--- a/app/controllers/User.java	Mon Oct 01 17:11:46 2012 +0900
+++ b/app/controllers/User.java	Mon Oct 01 18:51:30 2012 +0900
@@ -1,13 +1,36 @@
 package controllers;
 
+import com.tinkerpop.blueprints.Graph;
+import com.tinkerpop.blueprints.Vertex;
+
+import models.NodeModel;
+import models.TPGraph;
+import models.UserModel;
 import play.mvc.Controller;
 import play.mvc.Result;
 
 public class User extends Controller {
 
 	public static Result create(String name) {
-		System.out.println("name = "+name);
-		return ok(name);
+		
+		TPGraph tpGraph = TPGraph.getInstance();
+		Graph graph = tpGraph.getGraph();
+		UserModel newUser = null;
+		try {
+			Vertex v = graph.addVertex(name);
+			newUser = new UserModel(v);
+		} catch (IllegalArgumentException e) {
+			return status(CONFLICT, name+" is already exists");
+		}
+		newUser.setName(name);
+		return created("vertex Id = "+ newUser.getId());
+	}
+
+	private boolean checkUser(String name) {
+		
+		
+		
+		return true;
 	}
 	
 	
--- a/app/models/NodeModel.java	Mon Oct 01 17:11:46 2012 +0900
+++ b/app/models/NodeModel.java	Mon Oct 01 18:51:30 2012 +0900
@@ -7,40 +7,42 @@
 
 public class NodeModel {
 
-	private Vertex vertex;
-	private Object id;
+	protected Vertex vertex;
+	protected Object id;
 
-	final String ID = "id";
+	protected final String ID = "id";
 
-	final String TOULMIN = "toulmin";
-	final String TITLE = "title";
-	final String CONTENTS = "contents";
-	final String DATA = "d";
-	final String WARRANT = "w";
-	final String BACKING = "b";
-	final String REBUTTLE = "r";
-	final String AUTHOR = "author";
-	final String USERS = "users";
-	final String TYPE = "type";
-	final String MENTIONS = "mentions";
+	protected final String NAME = "name";
+	protected final String TOULMIN = "toulmin";
+	protected final String TITLE = "title";
+	protected final String CONTENTS = "contents";
+	protected final String DATA = "d";
+	protected final String WARRANT = "w";
+	protected final String BACKING = "b";
+	protected final String REBUTTLE = "r";
+	protected final String AUTHOR = "author";
+	protected final String USERS = "users";
+	protected final String TYPE = "type";
+	protected final String MENTIONS = "mentions";
 
-	final String STATUS = "status";
-	final String PASS = "pass";
-	final String FAIL = "fail";
-	final String AGREED = "agreed";
-	final String DENIED = "denied"; 
+	protected final String STATUS = "status";
+	protected final String PASS = "pass";
+	protected final String FAIL = "fail";
+	protected final String AGREED = "agreed";
+	protected final String DENIED = "denied"; 
 	
-	final String QUESTION = "question";
-	final String REFUTATION = "refutation";
+	protected final String QUESTION = "question";
+	protected final String REFUTATION = "refutation";
 
-	final String MAJORITY = "majority";
-	final String UNANIMOUSLY = "unanimously";
+	protected final String MAJORITY = "majority";
+	protected final String UNANIMOUSLY = "unanimously";
 	
 	
 	public NodeModel(Vertex vertex) {
 		this.vertex = vertex;
 		this.id = vertex.getId();
 	}
+	
 /*	
 	public JSONObject getProperties() throws JSONException {
 		for (String key: vertex.getPropertyKeys() ) {
@@ -48,7 +50,8 @@
 		}
 		return properties;
 	}
-	
+*/	
+
 	public void setId(Object id) {
 		this.id = id;
 	}
@@ -60,7 +63,8 @@
 	public Vertex getVertex() {
 		return this.vertex;
 	}
-	
+
+/*	
 	public void setJsonProperty(String key, Object value) throws JSONException {
 		properties.put(key, value);
 	}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/models/TPGraph.java	Mon Oct 01 18:51:30 2012 +0900
@@ -0,0 +1,64 @@
+package models;
+
+import com.tinkerpop.blueprints.Graph;
+import com.tinkerpop.blueprints.Vertex;
+import com.tinkerpop.blueprints.impls.tg.TinkerGraph;
+
+public class TPGraph {
+
+	private static TPGraph instance = new TPGraph();
+	private Object claimRootId;
+	private Object userRootId;
+	
+	private TPGraph() {
+		
+	}
+	
+	public static TPGraph getInstance() {
+		return instance;
+	}
+
+	private Graph graph; 
+	private String path = null;
+	
+	public void setPath(String path) {
+		this.path = path;
+	}
+
+	public Graph newGraph() {
+		if (path == null) {
+			graph = new TinkerGraph();
+		} else {
+			graph = new TinkerGraph(path);
+			
+		}
+		return graph;
+	}
+
+	public Graph getGraph() {
+		return graph;
+	}
+	
+	public void setClaimRootVertex(Vertex v) {
+		this.claimRootId = v.getId();
+	}
+	
+	public Object getClaimRootVertex() {
+		return this.claimRootId;
+	}
+	
+	public void setUserRootVertex(Vertex v) {
+		this.userRootId = v.getId();
+	}
+	
+	public Object getUserRootVertex() {
+		return userRootId;
+	}
+	
+	public void shutdownGraph() {
+		graph.shutdown();
+	}
+	
+
+	
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/models/UserModel.java	Mon Oct 01 18:51:30 2012 +0900
@@ -0,0 +1,21 @@
+package models;
+
+import com.tinkerpop.blueprints.Vertex;
+
+public class UserModel extends NodeModel {
+
+
+	
+	public UserModel(Vertex vertex) {
+		super(vertex);
+	}
+	
+	public Vertex setName(String name) {
+		this.vertex.setProperty(NAME, name);
+		return vertex;
+	}
+
+	
+	
+	
+}
--- a/conf/routes	Mon Oct 01 17:11:46 2012 +0900
+++ b/conf/routes	Mon Oct 01 18:51:30 2012 +0900
@@ -5,7 +5,7 @@
 # Home page
 GET		/							controllers.Application.index()
 POST	/db/data/node				controllers.Application.hello()
-GET		/users/create/:name			controllers.User.create(name: String)
+PUT		/users/create/:name			controllers.User.create(name: String)
 
 
 # Map static resources from the /public folder to the /assets URL path
--- a/logs/application.log	Mon Oct 01 17:11:46 2012 +0900
+++ b/logs/application.log	Mon Oct 01 18:51:30 2012 +0900
@@ -1,9 +1,135 @@
-2012-10-01 17:09:42,789 - [INFO] - from play in main 
+2012-10-01 18:38:34,223 - [INFO] - from play in main 
 Listening for HTTP on port 9000...
 
-2012-10-01 17:09:47,261 - [INFO] - from play in play-akka.actor.default-dispatcher-3 
+2012-10-01 18:38:56,931 - [INFO] - from play in play-akka.actor.default-dispatcher-1 
+Application started (Dev)
+
+2012-10-01 18:38:57,185 - [ERROR] - from application in play-akka.actor.actions-dispatcher-7 
+
+
+! @6bp43cigh - Internal server error, for request [PUT /users/create/taro] ->
+
+play.core.ActionInvoker$$anonfun$receive$1$$anon$1: Execution exception [[IllegalArgumentException: Vertex id can not be null]]
+	at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:134) [play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:115) [play_2.9.1.jar:2.0.3]
+	at akka.actor.Actor$class.apply(Actor.scala:318) [akka-actor.jar:2.0.2]
+	at play.core.ActionInvoker.apply(Invoker.scala:113) [play_2.9.1.jar:2.0.3]
+	at akka.actor.ActorCell.invoke(ActorCell.scala:626) [akka-actor.jar:2.0.2]
+	at akka.dispatch.Mailbox.processMailbox(Mailbox.scala:197) [akka-actor.jar:2.0.2]
+	at akka.dispatch.Mailbox.run(Mailbox.scala:179) [akka-actor.jar:2.0.2]
+	at akka.dispatch.ForkJoinExecutorConfigurator$MailboxExecutionTask.exec(AbstractDispatcher.scala:516) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinTask.doExec(ForkJoinTask.java:259) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:975) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinPool.runWorker(ForkJoinPool.java:1479) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:104) [akka-actor.jar:2.0.2]
+Caused by: java.lang.IllegalArgumentException: Vertex id can not be null
+	at com.tinkerpop.blueprints.util.ExceptionFactory.vertexIdCanNotBeNull(ExceptionFactory.java:14) ~[blueprints-core-2.2.0-SNAPSHOT.jar:na]
+	at com.tinkerpop.blueprints.impls.tg.TinkerGraph.getVertex(TinkerGraph.java:225) ~[blueprints-core-2.2.0-SNAPSHOT.jar:na]
+	at controllers.User.create(User.java:18) ~[classes/:na]
+	at Routes$$anonfun$routes$1$$anonfun$apply$5$$anonfun$apply$6.apply(routes_routing.scala:56) ~[classes/:na]
+	at Routes$$anonfun$routes$1$$anonfun$apply$5$$anonfun$apply$6.apply(routes_routing.scala:56) ~[classes/:na]
+	at play.core.Router$HandlerInvoker$$anon$4$$anon$1.invocation(Router.scala:1086) ~[play_2.9.1.jar:2.0.3]
+	at play.core.j.JavaAction$$anon$1.call(JavaAction.scala:33) ~[play_2.9.1.jar:2.0.3]
+	at play.GlobalSettings$1.call(GlobalSettings.java:57) ~[play_2.9.1.jar:2.0.3]
+	at play.core.j.JavaAction$class.apply(JavaAction.scala:74) ~[play_2.9.1.jar:2.0.3]
+	at play.core.Router$HandlerInvoker$$anon$4$$anon$1.apply(Router.scala:1085) ~[play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1$$anonfun$6.apply(Invoker.scala:126) ~[play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1$$anonfun$6.apply(Invoker.scala:126) ~[play_2.9.1.jar:2.0.3]
+	at play.utils.Threads$.withContextClassLoader(Threads.scala:17) ~[play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:125) [play_2.9.1.jar:2.0.3]
+	... 11 common frames omitted
+
+2012-10-01 18:39:58,288 - [INFO] - from application in play-akka.actor.default-dispatcher-1 
+Application shutdown...
+
+2012-10-01 18:39:58,304 - [INFO] - from play in play-akka.actor.default-dispatcher-1 
 Application started (Dev)
 
-2012-10-01 17:10:04,700 - [INFO] - from play in play-akka.actor.default-dispatcher-2 
+2012-10-01 18:39:58,318 - [ERROR] - from application in play-akka.actor.actions-dispatcher-8 
+
+
+! @6bp43cigi - Internal server error, for request [PUT /users/create/taro] ->
+
+play.core.ActionInvoker$$anonfun$receive$1$$anon$1: Execution exception [[IllegalArgumentException: Vertex id can not be null]]
+	at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:134) [play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:115) [play_2.9.1.jar:2.0.3]
+	at akka.actor.Actor$class.apply(Actor.scala:318) [akka-actor.jar:2.0.2]
+	at play.core.ActionInvoker.apply(Invoker.scala:113) [play_2.9.1.jar:2.0.3]
+	at akka.actor.ActorCell.invoke(ActorCell.scala:626) [akka-actor.jar:2.0.2]
+	at akka.dispatch.Mailbox.processMailbox(Mailbox.scala:197) [akka-actor.jar:2.0.2]
+	at akka.dispatch.Mailbox.run(Mailbox.scala:179) [akka-actor.jar:2.0.2]
+	at akka.dispatch.ForkJoinExecutorConfigurator$MailboxExecutionTask.exec(AbstractDispatcher.scala:516) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinTask.doExec(ForkJoinTask.java:259) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:975) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinPool.runWorker(ForkJoinPool.java:1479) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:104) [akka-actor.jar:2.0.2]
+Caused by: java.lang.IllegalArgumentException: Vertex id can not be null
+	at com.tinkerpop.blueprints.util.ExceptionFactory.vertexIdCanNotBeNull(ExceptionFactory.java:14) ~[blueprints-core-2.2.0-SNAPSHOT.jar:na]
+	at com.tinkerpop.blueprints.impls.tg.TinkerGraph.getVertex(TinkerGraph.java:225) ~[blueprints-core-2.2.0-SNAPSHOT.jar:na]
+	at controllers.User.create(User.java:18) ~[classes/:na]
+	at Routes$$anonfun$routes$1$$anonfun$apply$5$$anonfun$apply$6.apply(routes_routing.scala:56) ~[classes/:na]
+	at Routes$$anonfun$routes$1$$anonfun$apply$5$$anonfun$apply$6.apply(routes_routing.scala:56) ~[classes/:na]
+	at play.core.Router$HandlerInvoker$$anon$4$$anon$1.invocation(Router.scala:1086) ~[play_2.9.1.jar:2.0.3]
+	at play.core.j.JavaAction$$anon$1.call(JavaAction.scala:33) ~[play_2.9.1.jar:2.0.3]
+	at play.GlobalSettings$1.call(GlobalSettings.java:57) ~[play_2.9.1.jar:2.0.3]
+	at play.core.j.JavaAction$class.apply(JavaAction.scala:74) ~[play_2.9.1.jar:2.0.3]
+	at play.core.Router$HandlerInvoker$$anon$4$$anon$1.apply(Router.scala:1085) ~[play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1$$anonfun$6.apply(Invoker.scala:126) ~[play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1$$anonfun$6.apply(Invoker.scala:126) ~[play_2.9.1.jar:2.0.3]
+	at play.utils.Threads$.withContextClassLoader(Threads.scala:17) ~[play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:125) [play_2.9.1.jar:2.0.3]
+	... 11 common frames omitted
+
+2012-10-01 18:40:59,516 - [INFO] - from application in play-akka.actor.default-dispatcher-1 
+Application shutdown...
+
+2012-10-01 18:40:59,531 - [INFO] - from play in play-akka.actor.default-dispatcher-1 
 Application started (Dev)
 
+2012-10-01 18:42:53,782 - [INFO] - from application in play-akka.actor.default-dispatcher-1 
+Application shutdown...
+
+2012-10-01 18:42:53,796 - [INFO] - from play in play-akka.actor.default-dispatcher-1 
+Application started (Dev)
+
+2012-10-01 18:43:06,560 - [ERROR] - from application in play-akka.actor.actions-dispatcher-8 
+
+
+! @6bp43cigj - Internal server error, for request [PUT /users/create/taro] ->
+
+play.core.ActionInvoker$$anonfun$receive$1$$anon$1: Execution exception [[IllegalArgumentException: Vertex with id already exists: taro]]
+	at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:134) [play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:115) [play_2.9.1.jar:2.0.3]
+	at akka.actor.Actor$class.apply(Actor.scala:318) [akka-actor.jar:2.0.2]
+	at play.core.ActionInvoker.apply(Invoker.scala:113) [play_2.9.1.jar:2.0.3]
+	at akka.actor.ActorCell.invoke(ActorCell.scala:626) [akka-actor.jar:2.0.2]
+	at akka.dispatch.Mailbox.processMailbox(Mailbox.scala:197) [akka-actor.jar:2.0.2]
+	at akka.dispatch.Mailbox.run(Mailbox.scala:179) [akka-actor.jar:2.0.2]
+	at akka.dispatch.ForkJoinExecutorConfigurator$MailboxExecutionTask.exec(AbstractDispatcher.scala:516) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinTask.doExec(ForkJoinTask.java:259) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:975) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinPool.runWorker(ForkJoinPool.java:1479) [akka-actor.jar:2.0.2]
+	at akka.jsr166y.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:104) [akka-actor.jar:2.0.2]
+Caused by: java.lang.IllegalArgumentException: Vertex with id already exists: taro
+	at com.tinkerpop.blueprints.util.ExceptionFactory.vertexWithIdAlreadyExists(ExceptionFactory.java:22) ~[blueprints-core-2.2.0-SNAPSHOT.jar:na]
+	at com.tinkerpop.blueprints.impls.tg.TinkerGraph.addVertex(TinkerGraph.java:205) ~[blueprints-core-2.2.0-SNAPSHOT.jar:na]
+	at controllers.User.create(User.java:18) ~[classes/:na]
+	at Routes$$anonfun$routes$1$$anonfun$apply$5$$anonfun$apply$6.apply(routes_routing.scala:56) ~[classes/:na]
+	at Routes$$anonfun$routes$1$$anonfun$apply$5$$anonfun$apply$6.apply(routes_routing.scala:56) ~[classes/:na]
+	at play.core.Router$HandlerInvoker$$anon$4$$anon$1.invocation(Router.scala:1086) ~[play_2.9.1.jar:2.0.3]
+	at play.core.j.JavaAction$$anon$1.call(JavaAction.scala:33) ~[play_2.9.1.jar:2.0.3]
+	at play.GlobalSettings$1.call(GlobalSettings.java:57) ~[play_2.9.1.jar:2.0.3]
+	at play.core.j.JavaAction$class.apply(JavaAction.scala:74) ~[play_2.9.1.jar:2.0.3]
+	at play.core.Router$HandlerInvoker$$anon$4$$anon$1.apply(Router.scala:1085) ~[play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1$$anonfun$6.apply(Invoker.scala:126) ~[play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1$$anonfun$6.apply(Invoker.scala:126) ~[play_2.9.1.jar:2.0.3]
+	at play.utils.Threads$.withContextClassLoader(Threads.scala:17) ~[play_2.9.1.jar:2.0.3]
+	at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:125) [play_2.9.1.jar:2.0.3]
+	... 11 common frames omitted
+
+2012-10-01 18:50:33,208 - [INFO] - from application in play-akka.actor.default-dispatcher-1 
+Application shutdown...
+
+2012-10-01 18:50:33,222 - [INFO] - from play in play-akka.actor.default-dispatcher-1 
+Application started (Dev)
+
Binary file project/project/target/config-classes/$00792d501506d84fddca$$anonfun$$sbtdef$1.class has changed
Binary file project/project/target/config-classes/$00792d501506d84fddca$.class has changed
Binary file project/project/target/config-classes/$00792d501506d84fddca.class has changed
Binary file project/project/target/config-classes/$a1e13ec9c9bc472d8e3a$.class has changed
Binary file project/project/target/config-classes/$a1e13ec9c9bc472d8e3a.class has changed
Binary file project/project/target/config-classes/$d6f4faa82d7938384930$$anonfun$$sbtdef$1.class has changed
Binary file project/project/target/config-classes/$d6f4faa82d7938384930$.class has changed
Binary file project/project/target/config-classes/$d6f4faa82d7938384930.class has changed
--- a/project/target/streams/$global/compilers/$global/out	Mon Oct 01 17:11:46 2012 +0900
+++ b/project/target/streams/$global/compilers/$global/out	Mon Oct 01 18:51:30 2012 +0900
@@ -1,1 +0,0 @@
-[debug] Getting compiler-interface from component compiler for Scala 2.9.1
--- a/project/target/streams/$global/ivy-configuration/$global/out	Mon Oct 01 17:11:46 2012 +0900
+++ b/project/target/streams/$global/ivy-configuration/$global/out	Mon Oct 01 18:51:30 2012 +0900
@@ -1,105 +0,0 @@
-[debug] Other repositories:
-[debug] Default repositories:
-[debug] 	Raw(ProjectResolver(inter-project, mapped: ))
-[debug] 	URLRepository(typesafe-ivy-releases,sbt.Patterns@7972d19e)
-[debug] 	FileRepository(local,FileConfiguration(true,None),sbt.Patterns@6c317dc9)
-[debug] 	Typesafe repository: http://repo.typesafe.com/typesafe/releases/
-[debug] 	public: http://repo1.maven.org/maven2/
-[debug] Using inline dependencies specified in Scala.
-[info] Resolving play#sbt-plugin;2.0.3 ...
-[info] Resolving play#play_2.9.1;2.0.3 ...
-[info] Resolving play#templates_2.9.1;2.0.3 ...
-[info] Resolving com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 ...
-[info] Resolving com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 ...
-[info] Resolving org.scala-lang#scala-library;2.9.1 ...
-[info] Resolving com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 ...
-[info] Resolving play#anorm_2.9.1;2.0.3 ...
-[info] Resolving io.netty#netty;3.5.0.Final ...
-[info] Resolving org.slf4j#slf4j-api;1.6.4 ...
-[info] Resolving org.slf4j#jul-to-slf4j;1.6.4 ...
-[info] Resolving org.slf4j#jcl-over-slf4j;1.6.4 ...
-[info] Resolving ch.qos.logback#logback-core;1.0.0 ...
-[info] Resolving ch.qos.logback#logback-classic;1.0.0 ...
-[info] Resolving com.typesafe.akka#akka-actor;2.0.2 ...
-[info] Resolving com.typesafe.akka#akka-slf4j;2.0.2 ...
-[info] Resolving com.google.guava#guava;10.0.1 ...
-[info] Resolving com.google.code.findbugs#jsr305;1.3.9 ...
-[info] Resolving org.avaje#ebean;2.7.3 ...
-[info] Resolving org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final ...
-[info] Resolving com.h2database#h2;1.3.158 ...
-[info] Resolving org.scala-tools#scala-stm_2.9.1;0.5 ...
-[info] Resolving com.jolbox#bonecp;0.7.1.RELEASE ...
-[info] Resolving org.yaml#snakeyaml;1.9 ...
-[info] Resolving org.hibernate#hibernate-validator;4.2.0.Final ...
-[info] Resolving javax.validation#validation-api;1.0.0.GA ...
-[info] Resolving org.springframework#spring-context;3.0.7.RELEASE ...
-[info] Resolving org.springframework#spring-core;3.0.7.RELEASE ...
-[info] Resolving org.springframework#spring-beans;3.0.7.RELEASE ...
-[info] Resolving joda-time#joda-time;2.0 ...
-[info] Resolving org.joda#joda-convert;1.1 ...
-[info] Resolving javassist#javassist;3.12.1.GA ...
-[info] Resolving commons-lang#commons-lang;2.6 ...
-[info] Resolving com.ning#async-http-client;1.7.0 ...
-[info] Resolving oauth.signpost#signpost-core;1.2.1.1 ...
-[info] Resolving commons-codec#commons-codec;1.3 ...
-[info] Resolving com.codahale#jerkson_2.9.1;0.5.0 ...
-[info] Resolving org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) ...
-[info] Resolving org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) ...
-[info] Resolving org.reflections#reflections;0.9.6 ...
-[info] Resolving javax.servlet#javax.servlet-api;3.0.1 ...
-[info] Resolving javax.transaction#jta;1.1 ...
-[info] Resolving tyrex#tyrex;1.0.1 ...
-[info] Resolving jaxen#jaxen;1.1.3 ...
-[info] Resolving net.sf.ehcache#ehcache-core;2.5.0 ...
-[info] Resolving play#console_2.9.1;2.0.3 ...
-[info] Resolving com.typesafe.config#config;0.2.1 ...
-[info] Resolving rhino#js;1.7R2 ...
-[info] Resolving com.google.javascript#closure-compiler;r2079 ...
-[info] Resolving org.pegdown#pegdown;1.1.0 ...
-[info] Resolving org.parboiled#parboiled-core;1.0.2 ...
-[info] Resolving org.parboiled#parboiled-java;1.0.2 ...
-[info] Resolving asm#asm;3.3.1 ...
-[info] Resolving asm#asm-util;3.3.1 ...
-[info] Resolving asm#asm-tree;3.3.1 ...
-[info] Resolving asm#asm-analysis;3.3.1 ...
-[info] Resolving com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 ...
-[info] Resolving org.scalaz#scalaz-core_2.9.1;6.0.3 ...
-[info] Resolving com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE ...
-[info] Resolving commons-io#commons-io;2.0.1 ...
-[info] Resolving org.scala-sbt#sbt_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#main_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#actions_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#classfile_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#io_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#control_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#interface;0.11.3 ...
-[info] Resolving org.scala-sbt#logging_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#process_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#classpath_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#launcher-interface_2.9.1;0.11.3 ...
-[info] Resolving org.scala-lang#scala-compiler;2.9.1 ...
-[info] Resolving org.scala-sbt#incremental-compiler_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#collections_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#api_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#persist_2.9.1;0.11.3 ...
-[info] Resolving org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 ...
-[info] Resolving org.scala-sbt#compile_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#ivy_2.9.1;0.11.3 ...
-[info] Resolving org.apache.ivy#ivy;2.2.0 ...
-[info] Resolving com.jcraft#jsch;0.1.46 ...
-[info] Resolving commons-httpclient#commons-httpclient;3.1 ...
-[info] Resolving commons-logging#commons-logging;1.0.4 ...
-[info] Resolving commons-codec#commons-codec;1.2 ...
-[info] Resolving org.scala-sbt#completion_2.9.1;0.11.3 ...
-[info] Resolving jline#jline;0.9.94 ...
-[info] Resolving org.scala-sbt#run_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#task-system_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#tasks_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#tracking_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#cache_2.9.1;0.11.3 ...
-[info] Resolving org.scala-sbt#testing_2.9.1;0.11.3 ...
-[info] Resolving org.scala-tools.testing#test-interface;0.5 ...
-[info] Resolving org.scala-sbt#compiler-interface;0.11.3 ...
-[info] Resolving org.scala-sbt#precompiled-2_8_2;0.11.3 ...
-[info] Resolving org.scala-sbt#precompiled-2_8_1;0.11.3 ...
-[info] Resolving org.scala-sbt#precompiled-2_9_2;0.11.3 ...
--- a/project/target/streams/$global/update/$global/out	Mon Oct 01 17:11:46 2012 +0900
+++ b/project/target/streams/$global/update/$global/out	Mon Oct 01 18:51:30 2012 +0900
@@ -1,11992 +0,0 @@
-[info] Updating {file:/Users/aotokage/workspace/Consensus/project/}default-d02bd6...
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] :: resolving dependencies :: default#default-d02bd6;0.1-SNAPSHOT
-[debug] 	confs: [compile, runtime, test, provided, optional, compile-internal, runtime-internal, test-internal, plugin, sources, docs, pom]
-[debug] 	validate = true
-[debug] 	refresh = false
-[debug] resolving dependencies for configuration 'compile'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [compile]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=compile
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->play#sbt-plugin;2.0.3 [compile->default(compile)]
-[debug] loadData of play#sbt-plugin;2.0.3 of rootConf=compile
-[debug] 	using sbt-chain to resolve play#sbt-plugin;2.0.3
-[debug] sbt-chain: Checking cache for: dependency: play#sbt-plugin;2.0.3 {compile=[default(compile)]}
-[debug] sbt-chain: no namespace defined: using system
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/play/sbt-plugin/ivy-2.0.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for play#sbt-plugin;2.0.3 (resolved by typesafe-ivy-releases): /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/play/sbt-plugin/ivy-2.0.3.xml
-[debug] sbt-chain: module revision found in cache: play#sbt-plugin;2.0.3
-[debug] sbt-chain: no latest strategy defined: using default
-[debug] typesafe-ivy-releases: no namespace defined: using system
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/play/sbt-plugin/ivy-2.0.3.xml
-[debug] 	found ivy file in cache for play#sbt-plugin;2.0.3 (resolved by typesafe-ivy-releases): /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/play/sbt-plugin/ivy-2.0.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: play#sbt-plugin;2.0.3
-[debug] 	checking play#sbt-plugin;2.0.3 from typesafe-ivy-releases against [none]
-[debug] 	module revision kept as first found: play#sbt-plugin;2.0.3 from typesafe-ivy-releases
-[debug] 	found play#sbt-plugin;2.0.3 in typesafe-ivy-releases
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#play_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#play_2.9.1;2.0.3 of rootConf=compile
-[debug] 	using sbt-chain to resolve play#play_2.9.1;2.0.3
-[debug] sbt-chain: Checking cache for: dependency: play#play_2.9.1;2.0.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/play/play_2.9.1/ivy-2.0.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for play#play_2.9.1;2.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/play/play_2.9.1/ivy-2.0.3.xml
-[debug] sbt-chain: module revision found in cache: play#play_2.9.1;2.0.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/play/play_2.9.1/ivy-2.0.3.xml
-[debug] 	found ivy file in cache for play#play_2.9.1;2.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/play/play_2.9.1/ivy-2.0.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: play#play_2.9.1;2.0.3
-[debug] 	checking play#play_2.9.1;2.0.3 from local against [none]
-[debug] 	module revision kept as first found: play#play_2.9.1;2.0.3 from local
-[debug] 	found play#play_2.9.1;2.0.3 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=compile
-[debug] 	using sbt-chain to resolve play#templates_2.9.1;2.0.3
-[debug] sbt-chain: Checking cache for: dependency: play#templates_2.9.1;2.0.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/play/templates_2.9.1/ivy-2.0.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for play#templates_2.9.1;2.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/play/templates_2.9.1/ivy-2.0.3.xml
-[debug] sbt-chain: module revision found in cache: play#templates_2.9.1;2.0.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/play/templates_2.9.1/ivy-2.0.3.xml
-[debug] 	found ivy file in cache for play#templates_2.9.1;2.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/play/templates_2.9.1/ivy-2.0.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: play#templates_2.9.1;2.0.3
-[debug] 	checking play#templates_2.9.1;2.0.3 from local against [none]
-[debug] 	module revision kept as first found: play#templates_2.9.1;2.0.3 from local
-[debug] 	found play#templates_2.9.1;2.0.3 in local
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] sbt-chain: Checking cache for: dependency: com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.github.scala-incubator.io/scala-io-file_2.9.1/ivy-0.4.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.github.scala-incubator.io/scala-io-file_2.9.1/ivy-0.4.0.xml
-[debug] sbt-chain: module revision found in cache: com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.github.scala-incubator.io/scala-io-file_2.9.1/ivy-0.4.0.xml
-[debug] 	found ivy file in cache for com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.github.scala-incubator.io/scala-io-file_2.9.1/ivy-0.4.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] 	checking com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 from local against [none]
-[debug] 	module revision kept as first found: com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 from local
-[debug] 	found com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 in local
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->master(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] sbt-chain: Checking cache for: dependency: com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.github.scala-incubator.io/scala-io-core_2.9.1/ivy-0.4.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.github.scala-incubator.io/scala-io-core_2.9.1/ivy-0.4.0.xml
-[debug] sbt-chain: module revision found in cache: com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.github.scala-incubator.io/scala-io-core_2.9.1/ivy-0.4.0.xml
-[debug] 	found ivy file in cache for com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.github.scala-incubator.io/scala-io-core_2.9.1/ivy-0.4.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] 	checking com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 from local against [none]
-[debug] 	module revision kept as first found: com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 from local
-[debug] 	found com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 in local
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->compile(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.scala-lang#scala-library;2.9.1
-[debug] sbt-chain: Checking cache for: dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-lang/scala-library/ivy-2.9.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-lang#scala-library;2.9.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-lang/scala-library/ivy-2.9.1.xml
-[debug] sbt-chain: module revision found in cache: org.scala-lang#scala-library;2.9.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-lang/scala-library/ivy-2.9.1.xml
-[debug] 	found ivy file in cache for org.scala-lang#scala-library;2.9.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-lang/scala-library/ivy-2.9.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-lang#scala-library;2.9.1
-[debug] 	checking org.scala-lang#scala-library;2.9.1 from local against [none]
-[debug] 	module revision kept as first found: org.scala-lang#scala-library;2.9.1 from local
-[debug] 	found org.scala-lang#scala-library;2.9.1 in local
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->master(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] sbt-chain: Checking cache for: dependency: com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.github.jsuereth.scala-arm/scala-arm_2.9.1/ivy-1.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.github.jsuereth.scala-arm/scala-arm_2.9.1/ivy-1.1.xml
-[debug] sbt-chain: module revision found in cache: com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.github.jsuereth.scala-arm/scala-arm_2.9.1/ivy-1.1.xml
-[debug] 	found ivy file in cache for com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.github.jsuereth.scala-arm/scala-arm_2.9.1/ivy-1.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] 	checking com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 from local against [none]
-[debug] 	module revision kept as first found: com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 from local
-[debug] 	found com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 in local
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->compile(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=compile
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=compile
-[debug] compile is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=compile
-[debug] compile is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->runtime(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->runtime(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=compile
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->compile]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=compile
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=compile
-[debug] compile is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->runtime(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#anorm_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#anorm_2.9.1;2.0.3 of rootConf=compile
-[debug] 	using sbt-chain to resolve play#anorm_2.9.1;2.0.3
-[debug] sbt-chain: Checking cache for: dependency: play#anorm_2.9.1;2.0.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/play/anorm_2.9.1/ivy-2.0.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for play#anorm_2.9.1;2.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/play/anorm_2.9.1/ivy-2.0.3.xml
-[debug] sbt-chain: module revision found in cache: play#anorm_2.9.1;2.0.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/play/anorm_2.9.1/ivy-2.0.3.xml
-[debug] 	found ivy file in cache for play#anorm_2.9.1;2.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/play/anorm_2.9.1/ivy-2.0.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: play#anorm_2.9.1;2.0.3
-[debug] 	checking play#anorm_2.9.1;2.0.3 from local against [none]
-[debug] 	module revision kept as first found: play#anorm_2.9.1;2.0.3 from local
-[debug] 	found play#anorm_2.9.1;2.0.3 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->default(compile)]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=compile
-[debug] 	using sbt-chain to resolve io.netty#netty;3.5.0.Final
-[debug] sbt-chain: Checking cache for: dependency: io.netty#netty;3.5.0.Final {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/io.netty/netty/ivy-3.5.0.Final.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for io.netty#netty;3.5.0.Final (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/io.netty/netty/ivy-3.5.0.Final.xml
-[debug] sbt-chain: module revision found in cache: io.netty#netty;3.5.0.Final
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/io.netty/netty/ivy-3.5.0.Final.xml
-[debug] 	found ivy file in cache for io.netty#netty;3.5.0.Final (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/io.netty/netty/ivy-3.5.0.Final.xml
-[debug] 	typesafe-ivy-releases: revision in cache: io.netty#netty;3.5.0.Final
-[debug] 	checking io.netty#netty;3.5.0.Final from local against [none]
-[debug] 	module revision kept as first found: io.netty#netty;3.5.0.Final from local
-[debug] 	found io.netty#netty;3.5.0.Final in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->runtime]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->compile]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->master]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.slf4j#slf4j-api;1.6.4
-[debug] sbt-chain: Checking cache for: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/slf4j-api/ivy-1.6.4.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.slf4j#slf4j-api;1.6.4 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/slf4j-api/ivy-1.6.4.xml
-[debug] sbt-chain: module revision found in cache: org.slf4j#slf4j-api;1.6.4
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/slf4j-api/ivy-1.6.4.xml
-[debug] 	found ivy file in cache for org.slf4j#slf4j-api;1.6.4 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/slf4j-api/ivy-1.6.4.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.slf4j#slf4j-api;1.6.4
-[debug] 	checking org.slf4j#slf4j-api;1.6.4 from local against [none]
-[debug] 	module revision kept as first found: org.slf4j#slf4j-api;1.6.4 from local
-[debug] 	found org.slf4j#slf4j-api;1.6.4 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.slf4j#jul-to-slf4j;1.6.4
-[debug] sbt-chain: Checking cache for: dependency: org.slf4j#jul-to-slf4j;1.6.4 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/jul-to-slf4j/ivy-1.6.4.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.slf4j#jul-to-slf4j;1.6.4 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/jul-to-slf4j/ivy-1.6.4.xml
-[debug] sbt-chain: module revision found in cache: org.slf4j#jul-to-slf4j;1.6.4
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/jul-to-slf4j/ivy-1.6.4.xml
-[debug] 	found ivy file in cache for org.slf4j#jul-to-slf4j;1.6.4 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/jul-to-slf4j/ivy-1.6.4.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.slf4j#jul-to-slf4j;1.6.4
-[debug] 	checking org.slf4j#jul-to-slf4j;1.6.4 from local against [none]
-[debug] 	module revision kept as first found: org.slf4j#jul-to-slf4j;1.6.4 from local
-[debug] 	found org.slf4j#jul-to-slf4j;1.6.4 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=compile
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.slf4j#jcl-over-slf4j;1.6.4
-[debug] sbt-chain: Checking cache for: dependency: org.slf4j#jcl-over-slf4j;1.6.4 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/jcl-over-slf4j/ivy-1.6.4.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.slf4j#jcl-over-slf4j;1.6.4 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/jcl-over-slf4j/ivy-1.6.4.xml
-[debug] sbt-chain: module revision found in cache: org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/jcl-over-slf4j/ivy-1.6.4.xml
-[debug] 	found ivy file in cache for org.slf4j#jcl-over-slf4j;1.6.4 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.slf4j/jcl-over-slf4j/ivy-1.6.4.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.slf4j#jcl-over-slf4j;1.6.4
-[debug] 	checking org.slf4j#jcl-over-slf4j;1.6.4 from local against [none]
-[debug] 	module revision kept as first found: org.slf4j#jcl-over-slf4j;1.6.4 from local
-[debug] 	found org.slf4j#jcl-over-slf4j;1.6.4 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=compile
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile
-[debug] 	using sbt-chain to resolve ch.qos.logback#logback-core;1.0.0
-[debug] sbt-chain: Checking cache for: dependency: ch.qos.logback#logback-core;1.0.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/ch.qos.logback/logback-core/ivy-1.0.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for ch.qos.logback#logback-core;1.0.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/ch.qos.logback/logback-core/ivy-1.0.0.xml
-[debug] sbt-chain: module revision found in cache: ch.qos.logback#logback-core;1.0.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/ch.qos.logback/logback-core/ivy-1.0.0.xml
-[debug] 	found ivy file in cache for ch.qos.logback#logback-core;1.0.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/ch.qos.logback/logback-core/ivy-1.0.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: ch.qos.logback#logback-core;1.0.0
-[debug] 	checking ch.qos.logback#logback-core;1.0.0 from local against [none]
-[debug] 	module revision kept as first found: ch.qos.logback#logback-core;1.0.0 from local
-[debug] 	found ch.qos.logback#logback-core;1.0.0 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=compile
-[debug] 	using sbt-chain to resolve ch.qos.logback#logback-classic;1.0.0
-[debug] sbt-chain: Checking cache for: dependency: ch.qos.logback#logback-classic;1.0.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/ch.qos.logback/logback-classic/ivy-1.0.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for ch.qos.logback#logback-classic;1.0.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/ch.qos.logback/logback-classic/ivy-1.0.0.xml
-[debug] sbt-chain: module revision found in cache: ch.qos.logback#logback-classic;1.0.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/ch.qos.logback/logback-classic/ivy-1.0.0.xml
-[debug] 	found ivy file in cache for ch.qos.logback#logback-classic;1.0.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/ch.qos.logback/logback-classic/ivy-1.0.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: ch.qos.logback#logback-classic;1.0.0
-[debug] 	checking ch.qos.logback#logback-classic;1.0.0 from local against [none]
-[debug] 	module revision kept as first found: ch.qos.logback#logback-classic;1.0.0 from local
-[debug] 	found ch.qos.logback#logback-classic;1.0.0 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=compile
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->master(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->compile(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->runtime(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.typesafe.akka#akka-actor;2.0.2
-[debug] sbt-chain: Checking cache for: dependency: com.typesafe.akka#akka-actor;2.0.2 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.akka/akka-actor/ivy-2.0.2.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.typesafe.akka#akka-actor;2.0.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.akka/akka-actor/ivy-2.0.2.xml
-[debug] sbt-chain: module revision found in cache: com.typesafe.akka#akka-actor;2.0.2
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.akka/akka-actor/ivy-2.0.2.xml
-[debug] 	found ivy file in cache for com.typesafe.akka#akka-actor;2.0.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.akka/akka-actor/ivy-2.0.2.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.typesafe.akka#akka-actor;2.0.2
-[debug] 	checking com.typesafe.akka#akka-actor;2.0.2 from local against [none]
-[debug] 	module revision kept as first found: com.typesafe.akka#akka-actor;2.0.2 from local
-[debug] 	found com.typesafe.akka#akka-actor;2.0.2 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.typesafe.akka#akka-slf4j;2.0.2
-[debug] sbt-chain: Checking cache for: dependency: com.typesafe.akka#akka-slf4j;2.0.2 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.akka/akka-slf4j/ivy-2.0.2.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.typesafe.akka#akka-slf4j;2.0.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.akka/akka-slf4j/ivy-2.0.2.xml
-[debug] sbt-chain: module revision found in cache: com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.akka/akka-slf4j/ivy-2.0.2.xml
-[debug] 	found ivy file in cache for com.typesafe.akka#akka-slf4j;2.0.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.akka/akka-slf4j/ivy-2.0.2.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.typesafe.akka#akka-slf4j;2.0.2
-[debug] 	checking com.typesafe.akka#akka-slf4j;2.0.2 from local against [none]
-[debug] 	module revision kept as first found: com.typesafe.akka#akka-slf4j;2.0.2 from local
-[debug] 	found com.typesafe.akka#akka-slf4j;2.0.2 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=compile
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=compile
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->default(compile)]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.google.guava#guava;10.0.1
-[debug] sbt-chain: Checking cache for: dependency: com.google.guava#guava;10.0.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.google.guava/guava/ivy-10.0.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.google.guava#guava;10.0.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.google.guava/guava/ivy-10.0.1.xml
-[debug] sbt-chain: module revision found in cache: com.google.guava#guava;10.0.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.google.guava/guava/ivy-10.0.1.xml
-[debug] 	found ivy file in cache for com.google.guava#guava;10.0.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.google.guava/guava/ivy-10.0.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.google.guava#guava;10.0.1
-[debug] 	checking com.google.guava#guava;10.0.1 from local against [none]
-[debug] 	module revision kept as first found: com.google.guava#guava;10.0.1 from local
-[debug] 	found com.google.guava#guava;10.0.1 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->runtime]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->compile]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=compile
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->master(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.google.code.findbugs#jsr305;1.3.9
-[debug] sbt-chain: Checking cache for: dependency: com.google.code.findbugs#jsr305;1.3.9 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.google.code.findbugs/jsr305/ivy-1.3.9.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.google.code.findbugs#jsr305;1.3.9 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.google.code.findbugs/jsr305/ivy-1.3.9.xml
-[debug] sbt-chain: module revision found in cache: com.google.code.findbugs#jsr305;1.3.9
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.google.code.findbugs/jsr305/ivy-1.3.9.xml
-[debug] 	found ivy file in cache for com.google.code.findbugs#jsr305;1.3.9 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.google.code.findbugs/jsr305/ivy-1.3.9.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.google.code.findbugs#jsr305;1.3.9
-[debug] 	checking com.google.code.findbugs#jsr305;1.3.9 from local against [none]
-[debug] 	module revision kept as first found: com.google.code.findbugs#jsr305;1.3.9 from local
-[debug] 	found com.google.code.findbugs#jsr305;1.3.9 in local
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->compile(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=compile
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->runtime(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=compile
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->compile]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->master]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.avaje#ebean;2.7.3
-[debug] sbt-chain: Checking cache for: dependency: org.avaje#ebean;2.7.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.avaje/ebean/ivy-2.7.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.avaje#ebean;2.7.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.avaje/ebean/ivy-2.7.3.xml
-[debug] sbt-chain: module revision found in cache: org.avaje#ebean;2.7.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.avaje/ebean/ivy-2.7.3.xml
-[debug] 	found ivy file in cache for org.avaje#ebean;2.7.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.avaje/ebean/ivy-2.7.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.avaje#ebean;2.7.3
-[debug] 	checking org.avaje#ebean;2.7.3 from local against [none]
-[debug] 	module revision kept as first found: org.avaje#ebean;2.7.3 from local
-[debug] 	found org.avaje#ebean;2.7.3 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->default(compile)]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=compile
-[debug] 	using sbt-chain to resolve org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] sbt-chain: Checking cache for: dependency: org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.hibernate.javax.persistence/hibernate-jpa-2.0-api/ivy-1.0.1.Final.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.hibernate.javax.persistence/hibernate-jpa-2.0-api/ivy-1.0.1.Final.xml
-[debug] sbt-chain: module revision found in cache: org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.hibernate.javax.persistence/hibernate-jpa-2.0-api/ivy-1.0.1.Final.xml
-[debug] 	found ivy file in cache for org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.hibernate.javax.persistence/hibernate-jpa-2.0-api/ivy-1.0.1.Final.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] 	checking org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final from local against [none]
-[debug] 	module revision kept as first found: org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final from local
-[debug] 	found org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->runtime]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->compile]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->master]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.h2database#h2;1.3.158
-[debug] sbt-chain: Checking cache for: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.h2database/h2/ivy-1.3.158.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.h2database#h2;1.3.158 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.h2database/h2/ivy-1.3.158.xml
-[debug] sbt-chain: module revision found in cache: com.h2database#h2;1.3.158
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.h2database/h2/ivy-1.3.158.xml
-[debug] 	found ivy file in cache for com.h2database#h2;1.3.158 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.h2database/h2/ivy-1.3.158.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.h2database#h2;1.3.158
-[debug] 	checking com.h2database#h2;1.3.158 from local against [none]
-[debug] 	module revision kept as first found: com.h2database#h2;1.3.158 from local
-[debug] 	found com.h2database#h2;1.3.158 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->default(compile)]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.scala-tools#scala-stm_2.9.1;0.5
-[debug] sbt-chain: Checking cache for: dependency: org.scala-tools#scala-stm_2.9.1;0.5 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools/scala-stm_2.9.1/ivy-0.5.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-tools#scala-stm_2.9.1;0.5 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools/scala-stm_2.9.1/ivy-0.5.xml
-[debug] sbt-chain: module revision found in cache: org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools/scala-stm_2.9.1/ivy-0.5.xml
-[debug] 	found ivy file in cache for org.scala-tools#scala-stm_2.9.1;0.5 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools/scala-stm_2.9.1/ivy-0.5.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-tools#scala-stm_2.9.1;0.5
-[debug] 	checking org.scala-tools#scala-stm_2.9.1;0.5 from local against [none]
-[debug] 	module revision kept as first found: org.scala-tools#scala-stm_2.9.1;0.5 from local
-[debug] 	found org.scala-tools#scala-stm_2.9.1;0.5 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->runtime]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->compile]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=compile
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->master]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->default(compile)]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=compile
-[debug] 	using sbt-chain to resolve com.jolbox#bonecp;0.7.1.RELEASE
-[debug] sbt-chain: Checking cache for: dependency: com.jolbox#bonecp;0.7.1.RELEASE {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.jolbox/bonecp/ivy-0.7.1.RELEASE.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.jolbox#bonecp;0.7.1.RELEASE (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.jolbox/bonecp/ivy-0.7.1.RELEASE.xml
-[debug] sbt-chain: module revision found in cache: com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.jolbox/bonecp/ivy-0.7.1.RELEASE.xml
-[debug] 	found ivy file in cache for com.jolbox#bonecp;0.7.1.RELEASE (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.jolbox/bonecp/ivy-0.7.1.RELEASE.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.jolbox#bonecp;0.7.1.RELEASE
-[debug] 	checking com.jolbox#bonecp;0.7.1.RELEASE from local against [none]
-[debug] 	module revision kept as first found: com.jolbox#bonecp;0.7.1.RELEASE from local
-[debug] 	found com.jolbox#bonecp;0.7.1.RELEASE in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->runtime]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->compile]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->master]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->default(compile)]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.yaml#snakeyaml;1.9
-[debug] sbt-chain: Checking cache for: dependency: org.yaml#snakeyaml;1.9 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.yaml/snakeyaml/ivy-1.9.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.yaml#snakeyaml;1.9 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.yaml/snakeyaml/ivy-1.9.xml
-[debug] sbt-chain: module revision found in cache: org.yaml#snakeyaml;1.9
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.yaml/snakeyaml/ivy-1.9.xml
-[debug] 	found ivy file in cache for org.yaml#snakeyaml;1.9 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.yaml/snakeyaml/ivy-1.9.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.yaml#snakeyaml;1.9
-[debug] 	checking org.yaml#snakeyaml;1.9 from local against [none]
-[debug] 	module revision kept as first found: org.yaml#snakeyaml;1.9 from local
-[debug] 	found org.yaml#snakeyaml;1.9 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->runtime]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->compile]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->master]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->default(compile)]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=compile
-[debug] 	using sbt-chain to resolve org.hibernate#hibernate-validator;4.2.0.Final
-[debug] sbt-chain: Checking cache for: dependency: org.hibernate#hibernate-validator;4.2.0.Final {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.hibernate/hibernate-validator/ivy-4.2.0.Final.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.hibernate#hibernate-validator;4.2.0.Final (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.hibernate/hibernate-validator/ivy-4.2.0.Final.xml
-[debug] sbt-chain: module revision found in cache: org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.hibernate/hibernate-validator/ivy-4.2.0.Final.xml
-[debug] 	found ivy file in cache for org.hibernate#hibernate-validator;4.2.0.Final (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.hibernate/hibernate-validator/ivy-4.2.0.Final.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.hibernate#hibernate-validator;4.2.0.Final
-[debug] 	checking org.hibernate#hibernate-validator;4.2.0.Final from local against [none]
-[debug] 	module revision kept as first found: org.hibernate#hibernate-validator;4.2.0.Final from local
-[debug] 	found org.hibernate#hibernate-validator;4.2.0.Final in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->runtime]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->compile]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=compile
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=compile
-[debug] 	using sbt-chain to resolve javax.validation#validation-api;1.0.0.GA
-[debug] sbt-chain: Checking cache for: dependency: javax.validation#validation-api;1.0.0.GA {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/javax.validation/validation-api/ivy-1.0.0.GA.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for javax.validation#validation-api;1.0.0.GA (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/javax.validation/validation-api/ivy-1.0.0.GA.xml
-[debug] sbt-chain: module revision found in cache: javax.validation#validation-api;1.0.0.GA
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/javax.validation/validation-api/ivy-1.0.0.GA.xml
-[debug] 	found ivy file in cache for javax.validation#validation-api;1.0.0.GA (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/javax.validation/validation-api/ivy-1.0.0.GA.xml
-[debug] 	typesafe-ivy-releases: revision in cache: javax.validation#validation-api;1.0.0.GA
-[debug] 	checking javax.validation#validation-api;1.0.0.GA from local against [none]
-[debug] 	module revision kept as first found: javax.validation#validation-api;1.0.0.GA from local
-[debug] 	found javax.validation#validation-api;1.0.0.GA in local
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->compile(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=compile
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile
-[debug] compile is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile
-[debug] compile is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->runtime(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=compile
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->compile]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=compile
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile
-[debug] compile is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->master]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=compile
-[debug] 	using sbt-chain to resolve org.springframework#spring-context;3.0.7.RELEASE
-[debug] sbt-chain: Checking cache for: dependency: org.springframework#spring-context;3.0.7.RELEASE {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-context/ivy-3.0.7.RELEASE.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.springframework#spring-context;3.0.7.RELEASE (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-context/ivy-3.0.7.RELEASE.xml
-[debug] sbt-chain: module revision found in cache: org.springframework#spring-context;3.0.7.RELEASE
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-context/ivy-3.0.7.RELEASE.xml
-[debug] 	found ivy file in cache for org.springframework#spring-context;3.0.7.RELEASE (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-context/ivy-3.0.7.RELEASE.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.springframework#spring-context;3.0.7.RELEASE
-[debug] 	checking org.springframework#spring-context;3.0.7.RELEASE from local against [none]
-[debug] 	module revision kept as first found: org.springframework#spring-context;3.0.7.RELEASE from local
-[debug] 	found org.springframework#spring-context;3.0.7.RELEASE in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=compile
-[debug] 	using sbt-chain to resolve org.springframework#spring-core;3.0.7.RELEASE
-[debug] sbt-chain: Checking cache for: dependency: org.springframework#spring-core;3.0.7.RELEASE {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-core/ivy-3.0.7.RELEASE.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.springframework#spring-core;3.0.7.RELEASE (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-core/ivy-3.0.7.RELEASE.xml
-[debug] sbt-chain: module revision found in cache: org.springframework#spring-core;3.0.7.RELEASE
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-core/ivy-3.0.7.RELEASE.xml
-[debug] 	found ivy file in cache for org.springframework#spring-core;3.0.7.RELEASE (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-core/ivy-3.0.7.RELEASE.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.springframework#spring-core;3.0.7.RELEASE
-[debug] 	checking org.springframework#spring-core;3.0.7.RELEASE from local against [none]
-[debug] 	module revision kept as first found: org.springframework#spring-core;3.0.7.RELEASE from local
-[debug] 	found org.springframework#spring-core;3.0.7.RELEASE in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=compile
-[debug] 	using sbt-chain to resolve org.springframework#spring-beans;3.0.7.RELEASE
-[debug] sbt-chain: Checking cache for: dependency: org.springframework#spring-beans;3.0.7.RELEASE {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-beans/ivy-3.0.7.RELEASE.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.springframework#spring-beans;3.0.7.RELEASE (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-beans/ivy-3.0.7.RELEASE.xml
-[debug] sbt-chain: module revision found in cache: org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-beans/ivy-3.0.7.RELEASE.xml
-[debug] 	found ivy file in cache for org.springframework#spring-beans;3.0.7.RELEASE (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.springframework/spring-beans/ivy-3.0.7.RELEASE.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.springframework#spring-beans;3.0.7.RELEASE
-[debug] 	checking org.springframework#spring-beans;3.0.7.RELEASE from local against [none]
-[debug] 	module revision kept as first found: org.springframework#spring-beans;3.0.7.RELEASE from local
-[debug] 	found org.springframework#spring-beans;3.0.7.RELEASE in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->default(compile)]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=compile
-[debug] 	using sbt-chain to resolve joda-time#joda-time;2.0
-[debug] sbt-chain: Checking cache for: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/joda-time/joda-time/ivy-2.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for joda-time#joda-time;2.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/joda-time/joda-time/ivy-2.0.xml
-[debug] sbt-chain: module revision found in cache: joda-time#joda-time;2.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/joda-time/joda-time/ivy-2.0.xml
-[debug] 	found ivy file in cache for joda-time#joda-time;2.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/joda-time/joda-time/ivy-2.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: joda-time#joda-time;2.0
-[debug] 	checking joda-time#joda-time;2.0 from local against [none]
-[debug] 	module revision kept as first found: joda-time#joda-time;2.0 from local
-[debug] 	found joda-time#joda-time;2.0 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->runtime]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->compile]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->master]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->default(compile)]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.joda#joda-convert;1.1
-[debug] sbt-chain: Checking cache for: dependency: org.joda#joda-convert;1.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.joda/joda-convert/ivy-1.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.joda#joda-convert;1.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.joda/joda-convert/ivy-1.1.xml
-[debug] sbt-chain: module revision found in cache: org.joda#joda-convert;1.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.joda/joda-convert/ivy-1.1.xml
-[debug] 	found ivy file in cache for org.joda#joda-convert;1.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.joda/joda-convert/ivy-1.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.joda#joda-convert;1.1
-[debug] 	checking org.joda#joda-convert;1.1 from local against [none]
-[debug] 	module revision kept as first found: org.joda#joda-convert;1.1 from local
-[debug] 	found org.joda#joda-convert;1.1 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->runtime]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->compile]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->master]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile
-[debug] 	using sbt-chain to resolve javassist#javassist;3.12.1.GA
-[debug] sbt-chain: Checking cache for: dependency: javassist#javassist;3.12.1.GA {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/javassist/javassist/ivy-3.12.1.GA.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for javassist#javassist;3.12.1.GA (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/javassist/javassist/ivy-3.12.1.GA.xml
-[debug] sbt-chain: module revision found in cache: javassist#javassist;3.12.1.GA
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/javassist/javassist/ivy-3.12.1.GA.xml
-[debug] 	found ivy file in cache for javassist#javassist;3.12.1.GA (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/javassist/javassist/ivy-3.12.1.GA.xml
-[debug] 	typesafe-ivy-releases: revision in cache: javassist#javassist;3.12.1.GA
-[debug] 	checking javassist#javassist;3.12.1.GA from local against [none]
-[debug] 	module revision kept as first found: javassist#javassist;3.12.1.GA from local
-[debug] 	found javassist#javassist;3.12.1.GA in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->default(compile)]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=compile
-[debug] 	using sbt-chain to resolve commons-lang#commons-lang;2.6
-[debug] sbt-chain: Checking cache for: dependency: commons-lang#commons-lang;2.6 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-lang/commons-lang/ivy-2.6.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for commons-lang#commons-lang;2.6 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-lang/commons-lang/ivy-2.6.xml
-[debug] sbt-chain: module revision found in cache: commons-lang#commons-lang;2.6
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-lang/commons-lang/ivy-2.6.xml
-[debug] 	found ivy file in cache for commons-lang#commons-lang;2.6 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-lang/commons-lang/ivy-2.6.xml
-[debug] 	typesafe-ivy-releases: revision in cache: commons-lang#commons-lang;2.6
-[debug] 	checking commons-lang#commons-lang;2.6 from local against [none]
-[debug] 	module revision kept as first found: commons-lang#commons-lang;2.6 from local
-[debug] 	found commons-lang#commons-lang;2.6 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->runtime]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->compile]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->master]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->default(compile)]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.ning#async-http-client;1.7.0
-[debug] sbt-chain: Checking cache for: dependency: com.ning#async-http-client;1.7.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.ning/async-http-client/ivy-1.7.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.ning#async-http-client;1.7.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.ning/async-http-client/ivy-1.7.0.xml
-[debug] sbt-chain: module revision found in cache: com.ning#async-http-client;1.7.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.ning/async-http-client/ivy-1.7.0.xml
-[debug] 	found ivy file in cache for com.ning#async-http-client;1.7.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.ning/async-http-client/ivy-1.7.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.ning#async-http-client;1.7.0
-[debug] 	checking com.ning#async-http-client;1.7.0 from local against [none]
-[debug] 	module revision kept as first found: com.ning#async-http-client;1.7.0 from local
-[debug] 	found com.ning#async-http-client;1.7.0 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->runtime]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->compile]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->master]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->default(compile)]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve oauth.signpost#signpost-core;1.2.1.1
-[debug] sbt-chain: Checking cache for: dependency: oauth.signpost#signpost-core;1.2.1.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/oauth.signpost/signpost-core/ivy-1.2.1.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for oauth.signpost#signpost-core;1.2.1.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/oauth.signpost/signpost-core/ivy-1.2.1.1.xml
-[debug] sbt-chain: module revision found in cache: oauth.signpost#signpost-core;1.2.1.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/oauth.signpost/signpost-core/ivy-1.2.1.1.xml
-[debug] 	found ivy file in cache for oauth.signpost#signpost-core;1.2.1.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/oauth.signpost/signpost-core/ivy-1.2.1.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: oauth.signpost#signpost-core;1.2.1.1
-[debug] 	checking oauth.signpost#signpost-core;1.2.1.1 from local against [none]
-[debug] 	module revision kept as first found: oauth.signpost#signpost-core;1.2.1.1 from local
-[debug] 	found oauth.signpost#signpost-core;1.2.1.1 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->runtime]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->compile]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=compile
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile
-[debug] 	using sbt-chain to resolve commons-codec#commons-codec;1.3
-[debug] sbt-chain: Checking cache for: dependency: commons-codec#commons-codec;1.3 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-codec/commons-codec/ivy-1.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for commons-codec#commons-codec;1.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-codec/commons-codec/ivy-1.3.xml
-[debug] sbt-chain: module revision found in cache: commons-codec#commons-codec;1.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-codec/commons-codec/ivy-1.3.xml
-[debug] 	found ivy file in cache for commons-codec#commons-codec;1.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-codec/commons-codec/ivy-1.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: commons-codec#commons-codec;1.3
-[debug] 	checking commons-codec#commons-codec;1.3 from local against [none]
-[debug] 	module revision kept as first found: commons-codec#commons-codec;1.3 from local
-[debug] 	found commons-codec#commons-codec;1.3 in local
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->compile]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->master]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->default(compile)]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.codahale#jerkson_2.9.1;0.5.0
-[debug] sbt-chain: Checking cache for: dependency: com.codahale#jerkson_2.9.1;0.5.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.codahale/jerkson_2.9.1/ivy-0.5.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.codahale#jerkson_2.9.1;0.5.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.codahale/jerkson_2.9.1/ivy-0.5.0.xml
-[debug] sbt-chain: module revision found in cache: com.codahale#jerkson_2.9.1;0.5.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.codahale/jerkson_2.9.1/ivy-0.5.0.xml
-[debug] 	found ivy file in cache for com.codahale#jerkson_2.9.1;0.5.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.codahale/jerkson_2.9.1/ivy-0.5.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.codahale#jerkson_2.9.1;0.5.0
-[debug] 	checking com.codahale#jerkson_2.9.1;0.5.0 from local against [none]
-[debug] 	module revision kept as first found: com.codahale#jerkson_2.9.1;0.5.0 from local
-[debug] 	found com.codahale#jerkson_2.9.1;0.5.0 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->runtime]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->compile]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=compile
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) of rootConf=compile
-[debug] 	using sbt-chain to resolve org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0)
-[debug] sbt-chain: Checking cache for: dependency: org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] default-cache: cached resolved revision expired for org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0)
-[debug] default-cache: cached resolved revision expired for org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0)
-[debug] 		tried http://repo.typesafe.com/typesafe/ivy-releases/org.codehaus.jackson/jackson-core-asl/[revision]/ivys/ivy.xml
-[debug] 	listing all in http://repo.typesafe.com/typesafe/ivy-releases/org.codehaus.jackson/jackson-core-asl/[revision]/ivys/ivy.xml
-[debug] 	using typesafe-ivy-releases to list all in http://repo.typesafe.com/typesafe/ivy-releases/org.codehaus.jackson/jackson-core-asl/
-[debug] 		found 0 resources
-[debug] 	found revs: []
-[debug] typesafe-ivy-releases: no latest strategy defined: using default
-[debug] 	typesafe-ivy-releases: no resource found for org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0): pattern=http://repo.typesafe.com/typesafe/ivy-releases/[organisation]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext]
-[debug] 	typesafe-ivy-releases: no ivy file found for org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0)
-[debug] local: no namespace defined: using system
-[debug] default-cache: cached resolved revision expired for org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0)
-[debug] 		tried /Users/aotokage/opt/play/framework/../repository/local/org.codehaus.jackson/jackson-core-asl/[revision]/ivys/ivy.xml
-[debug] 	listing all in /Users/aotokage/opt/play/framework/../repository/local/org.codehaus.jackson/jackson-core-asl/[revision]/ivys/ivy.xml
-[debug] 	using local to list all in /Users/aotokage/opt/play/framework/../repository/local/org.codehaus.jackson/jackson-core-asl/
-[debug] 		found 1 resources
-[debug] 	found revs: [1.9.9]
-[debug] local: no latest strategy defined: using default
-[debug] local do not support transaction. ivy pattern does not use revision as a directory
-[debug] 	local: found md file for org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0)
-[debug] 		=> /Users/aotokage/opt/play/framework/../repository/local/org.codehaus.jackson/jackson-core-asl/1.9.9/ivys/ivy.xml (1.9.9)
-[debug] 	parser = ivy parser
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.codehaus.jackson/jackson-core-asl/ivy-1.9.9.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.codehaus.jackson#jackson-core-asl;1.9.9 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.codehaus.jackson/jackson-core-asl/ivy-1.9.9.xml
-[debug] 	default-cache: revision in cache: org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] 	checking org.codehaus.jackson#jackson-core-asl;1.9.9 from local against [none]
-[debug] 	module revision kept as first found: org.codehaus.jackson#jackson-core-asl;1.9.9 from local
-[debug] 	found org.codehaus.jackson#jackson-core-asl;1.9.9 in local
-[debug] 	[1.9.9] org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0)
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) of rootConf=compile
-[debug] 	using sbt-chain to resolve org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)
-[debug] sbt-chain: Checking cache for: dependency: org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] default-cache: cached resolved revision expired for org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)
-[debug] default-cache: cached resolved revision expired for org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)
-[debug] 		tried http://repo.typesafe.com/typesafe/ivy-releases/org.codehaus.jackson/jackson-mapper-asl/[revision]/ivys/ivy.xml
-[debug] 	listing all in http://repo.typesafe.com/typesafe/ivy-releases/org.codehaus.jackson/jackson-mapper-asl/[revision]/ivys/ivy.xml
-[debug] 	using typesafe-ivy-releases to list all in http://repo.typesafe.com/typesafe/ivy-releases/org.codehaus.jackson/jackson-mapper-asl/
-[debug] 		found 0 resources
-[debug] 	found revs: []
-[debug] 	typesafe-ivy-releases: no resource found for org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0): pattern=http://repo.typesafe.com/typesafe/ivy-releases/[organisation]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext]
-[debug] 	typesafe-ivy-releases: no ivy file found for org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)
-[debug] default-cache: cached resolved revision expired for org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)
-[debug] 		tried /Users/aotokage/opt/play/framework/../repository/local/org.codehaus.jackson/jackson-mapper-asl/[revision]/ivys/ivy.xml
-[debug] 	listing all in /Users/aotokage/opt/play/framework/../repository/local/org.codehaus.jackson/jackson-mapper-asl/[revision]/ivys/ivy.xml
-[debug] 	using local to list all in /Users/aotokage/opt/play/framework/../repository/local/org.codehaus.jackson/jackson-mapper-asl/
-[debug] 		found 1 resources
-[debug] 	found revs: [1.9.9]
-[debug] 	local: found md file for org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)
-[debug] 		=> /Users/aotokage/opt/play/framework/../repository/local/org.codehaus.jackson/jackson-mapper-asl/1.9.9/ivys/ivy.xml (1.9.9)
-[debug] 	parser = ivy parser
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.codehaus.jackson/jackson-mapper-asl/ivy-1.9.9.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.codehaus.jackson#jackson-mapper-asl;1.9.9 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.codehaus.jackson/jackson-mapper-asl/ivy-1.9.9.xml
-[debug] 	default-cache: revision in cache: org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] 	checking org.codehaus.jackson#jackson-mapper-asl;1.9.9 from local against [none]
-[debug] 	module revision kept as first found: org.codehaus.jackson#jackson-mapper-asl;1.9.9 from local
-[debug] 	found org.codehaus.jackson#jackson-mapper-asl;1.9.9 in local
-[debug] 	[1.9.9] org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=compile
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=compile
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=compile
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->master]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->default(compile)]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.reflections#reflections;0.9.6
-[debug] sbt-chain: Checking cache for: dependency: org.reflections#reflections;0.9.6 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.reflections/reflections/ivy-0.9.6.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.reflections#reflections;0.9.6 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.reflections/reflections/ivy-0.9.6.xml
-[debug] sbt-chain: module revision found in cache: org.reflections#reflections;0.9.6
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.reflections/reflections/ivy-0.9.6.xml
-[debug] 	found ivy file in cache for org.reflections#reflections;0.9.6 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.reflections/reflections/ivy-0.9.6.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.reflections#reflections;0.9.6
-[debug] 	checking org.reflections#reflections;0.9.6 from local against [none]
-[debug] 	module revision kept as first found: org.reflections#reflections;0.9.6 from local
-[debug] 	found org.reflections#reflections;0.9.6 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->runtime]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->compile]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->master]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->default(compile)]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve javax.servlet#javax.servlet-api;3.0.1
-[debug] sbt-chain: Checking cache for: dependency: javax.servlet#javax.servlet-api;3.0.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/javax.servlet/javax.servlet-api/ivy-3.0.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for javax.servlet#javax.servlet-api;3.0.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/javax.servlet/javax.servlet-api/ivy-3.0.1.xml
-[debug] sbt-chain: module revision found in cache: javax.servlet#javax.servlet-api;3.0.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/javax.servlet/javax.servlet-api/ivy-3.0.1.xml
-[debug] 	found ivy file in cache for javax.servlet#javax.servlet-api;3.0.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/javax.servlet/javax.servlet-api/ivy-3.0.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: javax.servlet#javax.servlet-api;3.0.1
-[debug] 	checking javax.servlet#javax.servlet-api;3.0.1 from local against [none]
-[debug] 	module revision kept as first found: javax.servlet#javax.servlet-api;3.0.1 from local
-[debug] 	found javax.servlet#javax.servlet-api;3.0.1 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->runtime]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->compile]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->master]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->default(compile)]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve javax.transaction#jta;1.1
-[debug] sbt-chain: Checking cache for: dependency: javax.transaction#jta;1.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/javax.transaction/jta/ivy-1.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for javax.transaction#jta;1.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/javax.transaction/jta/ivy-1.1.xml
-[debug] sbt-chain: module revision found in cache: javax.transaction#jta;1.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/javax.transaction/jta/ivy-1.1.xml
-[debug] 	found ivy file in cache for javax.transaction#jta;1.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/javax.transaction/jta/ivy-1.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: javax.transaction#jta;1.1
-[debug] 	checking javax.transaction#jta;1.1 from local against [none]
-[debug] 	module revision kept as first found: javax.transaction#jta;1.1 from local
-[debug] 	found javax.transaction#jta;1.1 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->runtime]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->compile]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->master]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->default(compile)]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve tyrex#tyrex;1.0.1
-[debug] sbt-chain: Checking cache for: dependency: tyrex#tyrex;1.0.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/tyrex/tyrex/ivy-1.0.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for tyrex#tyrex;1.0.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/tyrex/tyrex/ivy-1.0.1.xml
-[debug] sbt-chain: module revision found in cache: tyrex#tyrex;1.0.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/tyrex/tyrex/ivy-1.0.1.xml
-[debug] 	found ivy file in cache for tyrex#tyrex;1.0.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/tyrex/tyrex/ivy-1.0.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: tyrex#tyrex;1.0.1
-[debug] 	checking tyrex#tyrex;1.0.1 from local against [none]
-[debug] 	module revision kept as first found: tyrex#tyrex;1.0.1 from local
-[debug] 	found tyrex#tyrex;1.0.1 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->runtime]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->compile]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->master]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->default(compile)]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=compile
-[debug] 	using sbt-chain to resolve jaxen#jaxen;1.1.3
-[debug] sbt-chain: Checking cache for: dependency: jaxen#jaxen;1.1.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/jaxen/jaxen/ivy-1.1.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for jaxen#jaxen;1.1.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/jaxen/jaxen/ivy-1.1.3.xml
-[debug] sbt-chain: module revision found in cache: jaxen#jaxen;1.1.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/jaxen/jaxen/ivy-1.1.3.xml
-[debug] 	found ivy file in cache for jaxen#jaxen;1.1.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/jaxen/jaxen/ivy-1.1.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: jaxen#jaxen;1.1.3
-[debug] 	checking jaxen#jaxen;1.1.3 from local against [none]
-[debug] 	module revision kept as first found: jaxen#jaxen;1.1.3 from local
-[debug] 	found jaxen#jaxen;1.1.3 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->runtime]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->compile]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->master]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->default(compile)]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=compile
-[debug] 	using sbt-chain to resolve net.sf.ehcache#ehcache-core;2.5.0
-[debug] sbt-chain: Checking cache for: dependency: net.sf.ehcache#ehcache-core;2.5.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/net.sf.ehcache/ehcache-core/ivy-2.5.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for net.sf.ehcache#ehcache-core;2.5.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/net.sf.ehcache/ehcache-core/ivy-2.5.0.xml
-[debug] sbt-chain: module revision found in cache: net.sf.ehcache#ehcache-core;2.5.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/net.sf.ehcache/ehcache-core/ivy-2.5.0.xml
-[debug] 	found ivy file in cache for net.sf.ehcache#ehcache-core;2.5.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/net.sf.ehcache/ehcache-core/ivy-2.5.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: net.sf.ehcache#ehcache-core;2.5.0
-[debug] 	checking net.sf.ehcache#ehcache-core;2.5.0 from local against [none]
-[debug] 	module revision kept as first found: net.sf.ehcache#ehcache-core;2.5.0 from local
-[debug] 	found net.sf.ehcache#ehcache-core;2.5.0 in local
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->runtime]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=compile
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->compile]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=compile
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.hibernate#hibernate-core;3.5.1-Final {provided=[compile(*), provided(*), runtime(*), master(*)]} => dependency: org.hibernate#hibernate-core;3.3.2.GA {provided=[compile(*), provided(*), runtime(*), master(*)]}
-[debug] dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.1.1 {test=[runtime(*), master(*)]} => dependency: commons-logging#commons-logging;1.0.4 {test=[runtime(*), master(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile
-[debug] compile is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile
-[debug] compile is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile
-[debug] compile is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->master]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#console_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#console_2.9.1;2.0.3 of rootConf=compile
-[debug] 	using sbt-chain to resolve play#console_2.9.1;2.0.3
-[debug] sbt-chain: Checking cache for: dependency: play#console_2.9.1;2.0.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/play/console_2.9.1/ivy-2.0.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for play#console_2.9.1;2.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/play/console_2.9.1/ivy-2.0.3.xml
-[debug] sbt-chain: module revision found in cache: play#console_2.9.1;2.0.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/play/console_2.9.1/ivy-2.0.3.xml
-[debug] 	found ivy file in cache for play#console_2.9.1;2.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/play/console_2.9.1/ivy-2.0.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: play#console_2.9.1;2.0.3
-[debug] 	checking play#console_2.9.1;2.0.3 from local against [none]
-[debug] 	module revision kept as first found: play#console_2.9.1;2.0.3 from local
-[debug] 	found play#console_2.9.1;2.0.3 in local
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->default(compile)]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.typesafe.config#config;0.2.1
-[debug] sbt-chain: Checking cache for: dependency: com.typesafe.config#config;0.2.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.config/config/ivy-0.2.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.typesafe.config#config;0.2.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.config/config/ivy-0.2.1.xml
-[debug] sbt-chain: module revision found in cache: com.typesafe.config#config;0.2.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.config/config/ivy-0.2.1.xml
-[debug] 	found ivy file in cache for com.typesafe.config#config;0.2.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.typesafe.config/config/ivy-0.2.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.typesafe.config#config;0.2.1
-[debug] 	checking com.typesafe.config#config;0.2.1 from local against [none]
-[debug] 	module revision kept as first found: com.typesafe.config#config;0.2.1 from local
-[debug] 	found com.typesafe.config#config;0.2.1 in local
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->runtime]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->compile]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->master]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->default(compile)]
-[debug] loadData of rhino#js;1.7R2 of rootConf=compile
-[debug] 	using sbt-chain to resolve rhino#js;1.7R2
-[debug] sbt-chain: Checking cache for: dependency: rhino#js;1.7R2 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/rhino/js/ivy-1.7R2.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for rhino#js;1.7R2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/rhino/js/ivy-1.7R2.xml
-[debug] sbt-chain: module revision found in cache: rhino#js;1.7R2
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/rhino/js/ivy-1.7R2.xml
-[debug] 	found ivy file in cache for rhino#js;1.7R2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/rhino/js/ivy-1.7R2.xml
-[debug] 	typesafe-ivy-releases: revision in cache: rhino#js;1.7R2
-[debug] 	checking rhino#js;1.7R2 from local against [none]
-[debug] 	module revision kept as first found: rhino#js;1.7R2 from local
-[debug] 	found rhino#js;1.7R2 in local
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->runtime]
-[debug] loadData of rhino#js;1.7R2 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->compile]
-[debug] loadData of rhino#js;1.7R2 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->master]
-[debug] loadData of rhino#js;1.7R2 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->default(compile)]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.google.javascript#closure-compiler;r2079
-[debug] sbt-chain: Checking cache for: dependency: com.google.javascript#closure-compiler;r2079 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.google.javascript/closure-compiler/ivy-r2079.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.google.javascript#closure-compiler;r2079 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.google.javascript/closure-compiler/ivy-r2079.xml
-[debug] sbt-chain: module revision found in cache: com.google.javascript#closure-compiler;r2079
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.google.javascript/closure-compiler/ivy-r2079.xml
-[debug] 	found ivy file in cache for com.google.javascript#closure-compiler;r2079 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.google.javascript/closure-compiler/ivy-r2079.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.google.javascript#closure-compiler;r2079
-[debug] 	checking com.google.javascript#closure-compiler;r2079 from local against [none]
-[debug] 	module revision kept as first found: com.google.javascript#closure-compiler;r2079 from local
-[debug] 	found com.google.javascript#closure-compiler;r2079 in local
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->runtime]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->compile]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->master]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->default(compile)]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.pegdown#pegdown;1.1.0
-[debug] sbt-chain: Checking cache for: dependency: org.pegdown#pegdown;1.1.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.pegdown/pegdown/ivy-1.1.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.pegdown#pegdown;1.1.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.pegdown/pegdown/ivy-1.1.0.xml
-[debug] sbt-chain: module revision found in cache: org.pegdown#pegdown;1.1.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.pegdown/pegdown/ivy-1.1.0.xml
-[debug] 	found ivy file in cache for org.pegdown#pegdown;1.1.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.pegdown/pegdown/ivy-1.1.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.pegdown#pegdown;1.1.0
-[debug] 	checking org.pegdown#pegdown;1.1.0 from local against [none]
-[debug] 	module revision kept as first found: org.pegdown#pegdown;1.1.0 from local
-[debug] 	found org.pegdown#pegdown;1.1.0 in local
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->runtime]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->compile]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=compile
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.parboiled#parboiled-core;1.0.2
-[debug] sbt-chain: Checking cache for: dependency: org.parboiled#parboiled-core;1.0.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.parboiled/parboiled-core/ivy-1.0.2.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.parboiled#parboiled-core;1.0.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.parboiled/parboiled-core/ivy-1.0.2.xml
-[debug] sbt-chain: module revision found in cache: org.parboiled#parboiled-core;1.0.2
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.parboiled/parboiled-core/ivy-1.0.2.xml
-[debug] 	found ivy file in cache for org.parboiled#parboiled-core;1.0.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.parboiled/parboiled-core/ivy-1.0.2.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.parboiled#parboiled-core;1.0.2
-[debug] 	checking org.parboiled#parboiled-core;1.0.2 from local against [none]
-[debug] 	module revision kept as first found: org.parboiled#parboiled-core;1.0.2 from local
-[debug] 	found org.parboiled#parboiled-core;1.0.2 in local
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.parboiled#parboiled-java;1.0.2
-[debug] sbt-chain: Checking cache for: dependency: org.parboiled#parboiled-java;1.0.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.parboiled/parboiled-java/ivy-1.0.2.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.parboiled#parboiled-java;1.0.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.parboiled/parboiled-java/ivy-1.0.2.xml
-[debug] sbt-chain: module revision found in cache: org.parboiled#parboiled-java;1.0.2
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.parboiled/parboiled-java/ivy-1.0.2.xml
-[debug] 	found ivy file in cache for org.parboiled#parboiled-java;1.0.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.parboiled/parboiled-java/ivy-1.0.2.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.parboiled#parboiled-java;1.0.2
-[debug] 	checking org.parboiled#parboiled-java;1.0.2 from local against [none]
-[debug] 	module revision kept as first found: org.parboiled#parboiled-java;1.0.2 from local
-[debug] 	found org.parboiled#parboiled-java;1.0.2 in local
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve asm#asm;3.3.1
-[debug] sbt-chain: Checking cache for: dependency: asm#asm;3.3.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/asm/asm/ivy-3.3.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for asm#asm;3.3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/asm/asm/ivy-3.3.1.xml
-[debug] sbt-chain: module revision found in cache: asm#asm;3.3.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/asm/asm/ivy-3.3.1.xml
-[debug] 	found ivy file in cache for asm#asm;3.3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/asm/asm/ivy-3.3.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: asm#asm;3.3.1
-[debug] 	checking asm#asm;3.3.1 from local against [none]
-[debug] 	module revision kept as first found: asm#asm;3.3.1 from local
-[debug] 	found asm#asm;3.3.1 in local
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve asm#asm-util;3.3.1
-[debug] sbt-chain: Checking cache for: dependency: asm#asm-util;3.3.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-util/ivy-3.3.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for asm#asm-util;3.3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-util/ivy-3.3.1.xml
-[debug] sbt-chain: module revision found in cache: asm#asm-util;3.3.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-util/ivy-3.3.1.xml
-[debug] 	found ivy file in cache for asm#asm-util;3.3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-util/ivy-3.3.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: asm#asm-util;3.3.1
-[debug] 	checking asm#asm-util;3.3.1 from local against [none]
-[debug] 	module revision kept as first found: asm#asm-util;3.3.1 from local
-[debug] 	found asm#asm-util;3.3.1 in local
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=compile
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve asm#asm-tree;3.3.1
-[debug] sbt-chain: Checking cache for: dependency: asm#asm-tree;3.3.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-tree/ivy-3.3.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for asm#asm-tree;3.3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-tree/ivy-3.3.1.xml
-[debug] sbt-chain: module revision found in cache: asm#asm-tree;3.3.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-tree/ivy-3.3.1.xml
-[debug] 	found ivy file in cache for asm#asm-tree;3.3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-tree/ivy-3.3.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: asm#asm-tree;3.3.1
-[debug] 	checking asm#asm-tree;3.3.1 from local against [none]
-[debug] 	module revision kept as first found: asm#asm-tree;3.3.1 from local
-[debug] 	found asm#asm-tree;3.3.1 in local
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve asm#asm-analysis;3.3.1
-[debug] sbt-chain: Checking cache for: dependency: asm#asm-analysis;3.3.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-analysis/ivy-3.3.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for asm#asm-analysis;3.3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-analysis/ivy-3.3.1.xml
-[debug] sbt-chain: module revision found in cache: asm#asm-analysis;3.3.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-analysis/ivy-3.3.1.xml
-[debug] 	found ivy file in cache for asm#asm-analysis;3.3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/asm/asm-analysis/ivy-3.3.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: asm#asm-analysis;3.3.1
-[debug] 	checking asm#asm-analysis;3.3.1 from local against [none]
-[debug] 	module revision kept as first found: asm#asm-analysis;3.3.1 from local
-[debug] 	found asm#asm-analysis;3.3.1 in local
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=compile
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->compile]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=compile
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=compile
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=compile
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->master]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 [compile->default(compile)]
-[debug] loadData of com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 of rootConf=compile
-[debug] 	using sbt-chain to resolve com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] sbt-chain: Checking cache for: dependency: com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/com.typesafe.sbteclipse/sbteclipse-core/ivy-2.1.0-M2.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 (resolved by typesafe-ivy-releases): /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/com.typesafe.sbteclipse/sbteclipse-core/ivy-2.1.0-M2.xml
-[debug] sbt-chain: module revision found in cache: com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/com.typesafe.sbteclipse/sbteclipse-core/ivy-2.1.0-M2.xml
-[debug] 	found ivy file in cache for com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 (resolved by typesafe-ivy-releases): /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/com.typesafe.sbteclipse/sbteclipse-core/ivy-2.1.0-M2.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] 	checking com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 from typesafe-ivy-releases against [none]
-[debug] 	module revision kept as first found: com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 from typesafe-ivy-releases
-[debug] 	found com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 in typesafe-ivy-releases
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->default(compile)]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=compile
-[debug] 	using sbt-chain to resolve org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] sbt-chain: Checking cache for: dependency: org.scalaz#scalaz-core_2.9.1;6.0.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scalaz/scalaz-core_2.9.1/ivy-6.0.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scalaz#scalaz-core_2.9.1;6.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scalaz/scalaz-core_2.9.1/ivy-6.0.3.xml
-[debug] sbt-chain: module revision found in cache: org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scalaz/scalaz-core_2.9.1/ivy-6.0.3.xml
-[debug] 	found ivy file in cache for org.scalaz#scalaz-core_2.9.1;6.0.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scalaz/scalaz-core_2.9.1/ivy-6.0.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] 	checking org.scalaz#scalaz-core_2.9.1;6.0.3 from local against [none]
-[debug] 	module revision kept as first found: org.scalaz#scalaz-core_2.9.1;6.0.3 from local
-[debug] 	found org.scalaz#scalaz-core_2.9.1;6.0.3 in local
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->runtime]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=compile
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->compile]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=compile
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile
-[debug] compile is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->master]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=compile
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE [compile->default(compile)]
-[debug] loadData of com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE of rootConf=compile
-[debug] 	using sbt-chain to resolve com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] sbt-chain: Checking cache for: dependency: com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/com.github.mpeltonen/sbt-idea/ivy-1.1.0-M2-TYPESAFE.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE (resolved by typesafe-ivy-releases): /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/com.github.mpeltonen/sbt-idea/ivy-1.1.0-M2-TYPESAFE.xml
-[debug] sbt-chain: module revision found in cache: com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/com.github.mpeltonen/sbt-idea/ivy-1.1.0-M2-TYPESAFE.xml
-[debug] 	found ivy file in cache for com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE (resolved by typesafe-ivy-releases): /Users/aotokage/opt/play/framework/../repository/cache/scala_2.9.1/sbt_0.11.3/com.github.mpeltonen/sbt-idea/ivy-1.1.0-M2-TYPESAFE.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] 	checking com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE from typesafe-ivy-releases against [none]
-[debug] 	module revision kept as first found: com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE from typesafe-ivy-releases
-[debug] 	found com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE in typesafe-ivy-releases
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->default(compile)]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=compile
-[debug] 	using sbt-chain to resolve commons-io#commons-io;2.0.1
-[debug] sbt-chain: Checking cache for: dependency: commons-io#commons-io;2.0.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-io/commons-io/ivy-2.0.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for commons-io#commons-io;2.0.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-io/commons-io/ivy-2.0.1.xml
-[debug] sbt-chain: module revision found in cache: commons-io#commons-io;2.0.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-io/commons-io/ivy-2.0.1.xml
-[debug] 	found ivy file in cache for commons-io#commons-io;2.0.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-io/commons-io/ivy-2.0.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: commons-io#commons-io;2.0.1
-[debug] 	checking commons-io#commons-io;2.0.1 from local against [none]
-[debug] 	module revision kept as first found: commons-io#commons-io;2.0.1 from local
-[debug] 	found commons-io#commons-io;2.0.1 in local
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->runtime]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=compile
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->compile]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=compile
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->master]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=compile
-[debug] resolving dependencies for configuration 'runtime'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [runtime]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=runtime
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [compile]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->play#sbt-plugin;2.0.3 [compile->default(compile)]
-[debug] loadData of play#sbt-plugin;2.0.3 of rootConf=runtime
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#play_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#play_2.9.1;2.0.3 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=runtime
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->master(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=runtime
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->compile(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->master(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=runtime
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->compile(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=runtime
-[debug] runtime is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=runtime
-[debug] runtime is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->runtime(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->runtime(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->compile]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=runtime
-[debug] runtime is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#anorm_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#anorm_2.9.1;2.0.3 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->default(compile)]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->runtime]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->compile]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->master]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->master(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->compile(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->runtime(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->default(compile)]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->runtime]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->compile]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->master(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=runtime
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->compile(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->runtime(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->compile]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->master]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->default(compile)]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->runtime]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->compile]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->master]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->default(compile)]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->runtime]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->compile]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->master]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->default(compile)]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->runtime]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->compile]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->master]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->default(compile)]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->runtime]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->compile]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->master]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->default(compile)]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->runtime]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->compile]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=runtime
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->compile(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime
-[debug] runtime is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime
-[debug] runtime is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->runtime(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->compile]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime
-[debug] runtime is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->master]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->default(compile)]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->runtime]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->compile]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->master]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->default(compile)]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->runtime]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->compile]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->master]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->default(compile)]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->runtime]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->compile]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->master]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->default(compile)]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->runtime]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->compile]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->master]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->default(compile)]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->runtime]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->compile]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=runtime
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->compile]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->master]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->default(compile)]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->runtime]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->compile]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=runtime
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->master]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->default(compile)]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->runtime]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->compile]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->master]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->default(compile)]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->runtime]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->compile]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->master]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->default(compile)]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->runtime]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->compile]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->master]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->default(compile)]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->runtime]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->compile]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->master]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->default(compile)]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->runtime]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->compile]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->master]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->default(compile)]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=runtime
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->runtime]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->compile]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.hibernate#hibernate-core;3.5.1-Final {provided=[compile(*), provided(*), runtime(*), master(*)]} => dependency: org.hibernate#hibernate-core;3.3.2.GA {provided=[compile(*), provided(*), runtime(*), master(*)]}
-[debug] dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.1.1 {test=[runtime(*), master(*)]} => dependency: commons-logging#commons-logging;1.0.4 {test=[runtime(*), master(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime
-[debug] runtime is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime
-[debug] runtime is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime
-[debug] runtime is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->master]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#console_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#console_2.9.1;2.0.3 of rootConf=runtime
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->default(compile)]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=runtime
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->runtime]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->compile]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->master]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->default(compile)]
-[debug] loadData of rhino#js;1.7R2 of rootConf=runtime
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->runtime]
-[debug] loadData of rhino#js;1.7R2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->compile]
-[debug] loadData of rhino#js;1.7R2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->master]
-[debug] loadData of rhino#js;1.7R2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->default(compile)]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=runtime
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->runtime]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->compile]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->master]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->default(compile)]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=runtime
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->runtime]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->compile]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=runtime
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=runtime
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=runtime
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->master]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 [compile->default(compile)]
-[debug] loadData of com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 of rootConf=runtime
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->default(compile)]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=runtime
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->runtime]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->compile]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->master]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE [compile->default(compile)]
-[debug] loadData of com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE of rootConf=runtime
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->default(compile)]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=runtime
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->runtime]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->compile]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->master]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=runtime
-[debug] runtime is loaded and no conf to load.  Skip loading
-[debug] resolving dependencies for configuration 'test'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [test]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=test
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [runtime]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [compile]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->play#sbt-plugin;2.0.3 [compile->default(compile)]
-[debug] loadData of play#sbt-plugin;2.0.3 of rootConf=test
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#play_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#play_2.9.1;2.0.3 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=test
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->master(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=test
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->compile(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->master(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=test
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->compile(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=test
-[debug] test is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=test
-[debug] test is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->runtime(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->runtime(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->compile]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=test
-[debug] test is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#anorm_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#anorm_2.9.1;2.0.3 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->default(compile)]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->runtime]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->compile]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->master]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->master(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->compile(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->runtime(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->default(compile)]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->runtime]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->compile]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->master(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=test
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->compile(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->runtime(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->compile]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->master]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->default(compile)]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->runtime]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->compile]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->master]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->default(compile)]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->runtime]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->compile]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->master]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->default(compile)]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->runtime]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->compile]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->master]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->default(compile)]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->runtime]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->compile]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->master]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->default(compile)]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->runtime]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->compile]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=test
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->compile(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test
-[debug] test is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test
-[debug] test is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->runtime(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->compile]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test
-[debug] test is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->master]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->default(compile)]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->runtime]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->compile]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->master]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->default(compile)]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->runtime]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->compile]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->master]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->default(compile)]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->runtime]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->compile]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->master]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->default(compile)]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->runtime]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->compile]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->master]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->default(compile)]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->runtime]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->compile]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->compile]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->master]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->default(compile)]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->runtime]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->compile]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=test
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->master]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->default(compile)]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->runtime]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->compile]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->master]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->default(compile)]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->runtime]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->compile]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->master]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->default(compile)]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->runtime]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->compile]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->master]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->default(compile)]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->runtime]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->compile]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->master]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->default(compile)]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->runtime]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->compile]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->master]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->default(compile)]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=test
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->runtime]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->compile]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.hibernate#hibernate-core;3.5.1-Final {provided=[compile(*), provided(*), runtime(*), master(*)]} => dependency: org.hibernate#hibernate-core;3.3.2.GA {provided=[compile(*), provided(*), runtime(*), master(*)]}
-[debug] dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.1.1 {test=[runtime(*), master(*)]} => dependency: commons-logging#commons-logging;1.0.4 {test=[runtime(*), master(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test
-[debug] test is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test
-[debug] test is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test
-[debug] test is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->master]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#console_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#console_2.9.1;2.0.3 of rootConf=test
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->default(compile)]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=test
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->runtime]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->compile]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->master]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->default(compile)]
-[debug] loadData of rhino#js;1.7R2 of rootConf=test
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->runtime]
-[debug] loadData of rhino#js;1.7R2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->compile]
-[debug] loadData of rhino#js;1.7R2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->master]
-[debug] loadData of rhino#js;1.7R2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->default(compile)]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=test
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->runtime]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->compile]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->master]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->default(compile)]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=test
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->runtime]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->compile]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=test
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=test
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=test
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->master]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 [compile->default(compile)]
-[debug] loadData of com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 of rootConf=test
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->default(compile)]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=test
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->runtime]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->compile]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->master]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE [compile->default(compile)]
-[debug] loadData of com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE of rootConf=test
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->default(compile)]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=test
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->runtime]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->compile]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->master]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=test
-[debug] test is loaded and no conf to load.  Skip loading
-[debug] resolving dependencies for configuration 'provided'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [provided]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=provided
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-sbt#sbt_2.9.1;0.11.3 [provided->default(compile)]
-[debug] loadData of org.scala-sbt#sbt_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#sbt_2.9.1;0.11.3 {provided=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/sbt_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#sbt_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/sbt_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/sbt_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#sbt_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/sbt_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#sbt_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#sbt_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#sbt_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#main_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#main_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#main_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#main_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/main_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#main_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/main_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#main_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/main_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#main_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/main_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#main_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#main_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#main_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#main_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#actions_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#actions_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#actions_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#actions_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/actions_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#actions_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/actions_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#actions_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/actions_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#actions_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/actions_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#actions_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#actions_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#actions_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#actions_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#classfile_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classfile_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#classfile_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/classfile_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#classfile_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/classfile_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/classfile_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#classfile_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/classfile_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#classfile_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#classfile_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#classfile_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#io_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#io_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/io_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#io_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/io_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#io_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/io_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#io_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/io_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#io_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#io_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#io_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#io_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-sbt#control_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#control_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#control_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#control_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/control_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#control_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/control_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#control_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/control_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#control_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/control_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#control_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#control_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#control_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#control_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#interface;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#interface;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/interface/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#interface;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/interface/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#interface;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/interface/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#interface;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/interface/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#interface;0.11.3
-[debug] 	checking org.scala-sbt#interface;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#interface;0.11.3 from local
-[debug] 	found org.scala-sbt#interface;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#logging_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#logging_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/logging_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#logging_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/logging_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/logging_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#logging_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/logging_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#logging_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#logging_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#logging_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#logging_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#process_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#process_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/process_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#process_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/process_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#process_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/process_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#process_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/process_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#process_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#process_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#process_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#process_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#classpath_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/classpath_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#classpath_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/classpath_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/classpath_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#classpath_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/classpath_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#classpath_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#classpath_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#classpath_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#launcher-interface_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/launcher-interface_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#launcher-interface_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/launcher-interface_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/launcher-interface_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#launcher-interface_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/launcher-interface_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#launcher-interface_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#launcher-interface_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#launcher-interface_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-lang#scala-compiler;2.9.1
-[debug] sbt-chain: Checking cache for: dependency: org.scala-lang#scala-compiler;2.9.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-lang/scala-compiler/ivy-2.9.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-lang#scala-compiler;2.9.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-lang/scala-compiler/ivy-2.9.1.xml
-[debug] sbt-chain: module revision found in cache: org.scala-lang#scala-compiler;2.9.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-lang/scala-compiler/ivy-2.9.1.xml
-[debug] 	found ivy file in cache for org.scala-lang#scala-compiler;2.9.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-lang/scala-compiler/ivy-2.9.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-lang#scala-compiler;2.9.1
-[debug] 	checking org.scala-lang#scala-compiler;2.9.1 from local against [none]
-[debug] 	module revision kept as first found: org.scala-lang#scala-compiler;2.9.1 from local
-[debug] 	found org.scala-lang#scala-compiler;2.9.1 in local
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=provided
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#incremental-compiler_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#incremental-compiler_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#incremental-compiler_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/incremental-compiler_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#incremental-compiler_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/incremental-compiler_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/incremental-compiler_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#incremental-compiler_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/incremental-compiler_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#incremental-compiler_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#incremental-compiler_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#incremental-compiler_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#collections_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#collections_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/collections_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#collections_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/collections_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/collections_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#collections_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/collections_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#collections_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#collections_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#collections_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#collections_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#api_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#api_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#api_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#api_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/api_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#api_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/api_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#api_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/api_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#api_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/api_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#api_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#api_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#api_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#api_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#persist_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#persist_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#persist_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#persist_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/persist_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#persist_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/persist_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#persist_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/persist_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#persist_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/persist_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#persist_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#persist_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#persist_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#persist_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-sbt#incremental-compiler_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#incremental-compiler_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-sbt#api_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#api_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->default(compile)]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] sbt-chain: Checking cache for: dependency: org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools.sbinary/sbinary_2.9.0/ivy-0.4.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools.sbinary/sbinary_2.9.0/ivy-0.4.0.xml
-[debug] sbt-chain: module revision found in cache: org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools.sbinary/sbinary_2.9.0/ivy-0.4.0.xml
-[debug] 	found ivy file in cache for org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools.sbinary/sbinary_2.9.0/ivy-0.4.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] 	checking org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 from local against [none]
-[debug] 	module revision kept as first found: org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 from local
-[debug] 	found org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 in local
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->runtime]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->compile]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->master]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#compile_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#compile_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#compile_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#compile_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/compile_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#compile_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/compile_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#compile_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/compile_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#compile_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/compile_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#compile_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#compile_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#compile_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#compile_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#ivy_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#ivy_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#ivy_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/ivy_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#ivy_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/ivy_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/ivy_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#ivy_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/ivy_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#ivy_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#ivy_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#ivy_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->default(compile)]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.apache.ivy#ivy;2.2.0
-[debug] sbt-chain: Checking cache for: dependency: org.apache.ivy#ivy;2.2.0 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.apache.ivy/ivy/ivy-2.2.0.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.apache.ivy#ivy;2.2.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.apache.ivy/ivy/ivy-2.2.0.xml
-[debug] sbt-chain: module revision found in cache: org.apache.ivy#ivy;2.2.0
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.apache.ivy/ivy/ivy-2.2.0.xml
-[debug] 	found ivy file in cache for org.apache.ivy#ivy;2.2.0 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.apache.ivy/ivy/ivy-2.2.0.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.apache.ivy#ivy;2.2.0
-[debug] 	checking org.apache.ivy#ivy;2.2.0 from local against [none]
-[debug] 	module revision kept as first found: org.apache.ivy#ivy;2.2.0 from local
-[debug] 	found org.apache.ivy#ivy;2.2.0 in local
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->runtime]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->compile]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->master]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->default(compile)]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=provided
-[debug] 	using sbt-chain to resolve com.jcraft#jsch;0.1.46
-[debug] sbt-chain: Checking cache for: dependency: com.jcraft#jsch;0.1.46 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.jcraft/jsch/ivy-0.1.46.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for com.jcraft#jsch;0.1.46 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.jcraft/jsch/ivy-0.1.46.xml
-[debug] sbt-chain: module revision found in cache: com.jcraft#jsch;0.1.46
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/com.jcraft/jsch/ivy-0.1.46.xml
-[debug] 	found ivy file in cache for com.jcraft#jsch;0.1.46 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/com.jcraft/jsch/ivy-0.1.46.xml
-[debug] 	typesafe-ivy-releases: revision in cache: com.jcraft#jsch;0.1.46
-[debug] 	checking com.jcraft#jsch;0.1.46 from local against [none]
-[debug] 	module revision kept as first found: com.jcraft#jsch;0.1.46 from local
-[debug] 	found com.jcraft#jsch;0.1.46 in local
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->runtime]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->compile]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->master]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->default(compile)]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=provided
-[debug] 	using sbt-chain to resolve commons-httpclient#commons-httpclient;3.1
-[debug] sbt-chain: Checking cache for: dependency: commons-httpclient#commons-httpclient;3.1 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-httpclient/commons-httpclient/ivy-3.1.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for commons-httpclient#commons-httpclient;3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-httpclient/commons-httpclient/ivy-3.1.xml
-[debug] sbt-chain: module revision found in cache: commons-httpclient#commons-httpclient;3.1
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-httpclient/commons-httpclient/ivy-3.1.xml
-[debug] 	found ivy file in cache for commons-httpclient#commons-httpclient;3.1 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-httpclient/commons-httpclient/ivy-3.1.xml
-[debug] 	typesafe-ivy-releases: revision in cache: commons-httpclient#commons-httpclient;3.1
-[debug] 	checking commons-httpclient#commons-httpclient;3.1 from local against [none]
-[debug] 	module revision kept as first found: commons-httpclient#commons-httpclient;3.1 from local
-[debug] 	found commons-httpclient#commons-httpclient;3.1 in local
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->runtime]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->compile]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=provided
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [compile->master(*)]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=provided
-[debug] 	using sbt-chain to resolve commons-logging#commons-logging;1.0.4
-[debug] sbt-chain: Checking cache for: dependency: commons-logging#commons-logging;1.0.4 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-logging/commons-logging/ivy-1.0.4.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for commons-logging#commons-logging;1.0.4 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-logging/commons-logging/ivy-1.0.4.xml
-[debug] sbt-chain: module revision found in cache: commons-logging#commons-logging;1.0.4
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-logging/commons-logging/ivy-1.0.4.xml
-[debug] 	found ivy file in cache for commons-logging#commons-logging;1.0.4 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-logging/commons-logging/ivy-1.0.4.xml
-[debug] 	typesafe-ivy-releases: revision in cache: commons-logging#commons-logging;1.0.4
-[debug] 	checking commons-logging#commons-logging;1.0.4 from local against [none]
-[debug] 	module revision kept as first found: commons-logging#commons-logging;1.0.4 from local
-[debug] 	found commons-logging#commons-logging;1.0.4 in local
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [compile->compile(*)]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=provided
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=provided
-[debug] 	using sbt-chain to resolve commons-codec#commons-codec;1.2
-[debug] sbt-chain: Checking cache for: dependency: commons-codec#commons-codec;1.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-codec/commons-codec/ivy-1.2.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for commons-codec#commons-codec;1.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-codec/commons-codec/ivy-1.2.xml
-[debug] sbt-chain: module revision found in cache: commons-codec#commons-codec;1.2
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/commons-codec/commons-codec/ivy-1.2.xml
-[debug] 	found ivy file in cache for commons-codec#commons-codec;1.2 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/commons-codec/commons-codec/ivy-1.2.xml
-[debug] 	typesafe-ivy-releases: revision in cache: commons-codec#commons-codec;1.2
-[debug] 	checking commons-codec#commons-codec;1.2 from local against [none]
-[debug] 	module revision kept as first found: commons-codec#commons-codec;1.2 from local
-[debug] 	found commons-codec#commons-codec;1.2 in local
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=provided
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [runtime->runtime(*)]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=provided
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [runtime->compile]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=provided
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=provided
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [runtime->compile]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->master]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#completion_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#completion_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#completion_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#completion_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/completion_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#completion_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/completion_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#completion_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/completion_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#completion_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/completion_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#completion_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#completion_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#completion_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#completion_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-sbt#control_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#control_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] 	using sbt-chain to resolve jline#jline;0.9.94
-[debug] sbt-chain: Checking cache for: dependency: jline#jline;0.9.94 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/jline/jline/ivy-0.9.94.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for jline#jline;0.9.94 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/jline/jline/ivy-0.9.94.xml
-[debug] sbt-chain: module revision found in cache: jline#jline;0.9.94
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/jline/jline/ivy-0.9.94.xml
-[debug] 	found ivy file in cache for jline#jline;0.9.94 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/jline/jline/ivy-0.9.94.xml
-[debug] 	typesafe-ivy-releases: revision in cache: jline#jline;0.9.94
-[debug] 	checking jline#jline;0.9.94 from local against [none]
-[debug] 	module revision kept as first found: jline#jline;0.9.94 from local
-[debug] 	found jline#jline;0.9.94 in local
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#api_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#api_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#ivy_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#ivy_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#run_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#run_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#run_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#run_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/run_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#run_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/run_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#run_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/run_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#run_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/run_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#run_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#run_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#run_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#run_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#task-system_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#task-system_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#task-system_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/task-system_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#task-system_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/task-system_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/task-system_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#task-system_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/task-system_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#task-system_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#task-system_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#task-system_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#tasks_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#tasks_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#tasks_2.9.1;0.11.3 {compile=[default(compile)], test=[test]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/tasks_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#tasks_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/tasks_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/tasks_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#tasks_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/tasks_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#tasks_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#tasks_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#tasks_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-sbt#control_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#control_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#tasks_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#tasks_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#tracking_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#tracking_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#tracking_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/tracking_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#tracking_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/tracking_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/tracking_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#tracking_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/tracking_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#tracking_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#tracking_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#tracking_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-sbt#cache_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#cache_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#cache_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#cache_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/cache_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#cache_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/cache_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#cache_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/cache_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#cache_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/cache_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#cache_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#cache_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#cache_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#cache_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->default(compile)]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->runtime]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->compile]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->master]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#testing_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#testing_2.9.1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#testing_2.9.1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#testing_2.9.1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/testing_2.9.1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#testing_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/testing_2.9.1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#testing_2.9.1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/testing_2.9.1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#testing_2.9.1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/testing_2.9.1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#testing_2.9.1;0.11.3
-[debug] 	checking org.scala-sbt#testing_2.9.1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#testing_2.9.1;0.11.3 from local
-[debug] 	found org.scala-sbt#testing_2.9.1;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->default(compile)]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-tools.testing#test-interface;0.5
-[debug] sbt-chain: Checking cache for: dependency: org.scala-tools.testing#test-interface;0.5 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools.testing/test-interface/ivy-0.5.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-tools.testing#test-interface;0.5 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools.testing/test-interface/ivy-0.5.xml
-[debug] sbt-chain: module revision found in cache: org.scala-tools.testing#test-interface;0.5
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools.testing/test-interface/ivy-0.5.xml
-[debug] 	found ivy file in cache for org.scala-tools.testing#test-interface;0.5 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-tools.testing/test-interface/ivy-0.5.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-tools.testing#test-interface;0.5
-[debug] 	checking org.scala-tools.testing#test-interface;0.5 from local against [none]
-[debug] 	module revision kept as first found: org.scala-tools.testing#test-interface;0.5 from local
-[debug] 	found org.scala-tools.testing#test-interface;0.5 in local
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->runtime]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->compile]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->master]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=provided
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#ivy_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#ivy_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#run_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#run_2.9.1;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#compiler-interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#compiler-interface;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#compiler-interface;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#compiler-interface;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/compiler-interface/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#compiler-interface;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/compiler-interface/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#compiler-interface;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/compiler-interface/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#compiler-interface;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/compiler-interface/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#compiler-interface;0.11.3
-[debug] 	checking org.scala-sbt#compiler-interface;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#compiler-interface;0.11.3 from local
-[debug] 	found org.scala-sbt#compiler-interface;0.11.3 in local
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#precompiled-2_8_2;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#precompiled-2_8_2;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#precompiled-2_8_2;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_8_2/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#precompiled-2_8_2;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_8_2/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_8_2/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#precompiled-2_8_2;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_8_2/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] 	checking org.scala-sbt#precompiled-2_8_2;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#precompiled-2_8_2;0.11.3 from local
-[debug] 	found org.scala-sbt#precompiled-2_8_2;0.11.3 in local
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#precompiled-2_8_1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#precompiled-2_8_1;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#precompiled-2_8_1;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_8_1/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#precompiled-2_8_1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_8_1/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_8_1/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#precompiled-2_8_1;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_8_1/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] 	checking org.scala-sbt#precompiled-2_8_1;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#precompiled-2_8_1;0.11.3 from local
-[debug] 	found org.scala-sbt#precompiled-2_8_1;0.11.3 in local
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#precompiled-2_9_2;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#precompiled-2_9_2;0.11.3 of rootConf=provided
-[debug] 	using sbt-chain to resolve org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] sbt-chain: Checking cache for: dependency: org.scala-sbt#precompiled-2_9_2;0.11.3 {compile=[default(compile)]}
-[debug] No entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_9_2/ivy-0.11.3.xml
-[debug] post 1.3 ivy file: using exact as default matcher
-[debug] 	found ivy file in cache for org.scala-sbt#precompiled-2_9_2;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_9_2/ivy-0.11.3.xml
-[debug] sbt-chain: module revision found in cache: org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] Entry is found in the ModuleDescriptorCache : /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_9_2/ivy-0.11.3.xml
-[debug] 	found ivy file in cache for org.scala-sbt#precompiled-2_9_2;0.11.3 (resolved by local): /Users/aotokage/opt/play/framework/../repository/cache/org.scala-sbt/precompiled-2_9_2/ivy-0.11.3.xml
-[debug] 	typesafe-ivy-releases: revision in cache: org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] 	checking org.scala-sbt#precompiled-2_9_2;0.11.3 from local against [none]
-[debug] 	module revision kept as first found: org.scala-sbt#precompiled-2_9_2;0.11.3 from local
-[debug] 	found org.scala-sbt#precompiled-2_9_2;0.11.3 in local
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=provided
-[debug] provided is loaded and no conf to load.  Skip loading
-[debug] resolving dependencies for configuration 'optional'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [optional]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=optional
-[debug] resolving dependencies for configuration 'compile-internal'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [compile-internal]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=compile-internal
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [compile]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->play#sbt-plugin;2.0.3 [compile->default(compile)]
-[debug] loadData of play#sbt-plugin;2.0.3 of rootConf=compile-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#play_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#play_2.9.1;2.0.3 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=compile-internal
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->master(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->compile(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->master(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=compile-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->compile(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->runtime(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->runtime(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->compile]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#anorm_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#anorm_2.9.1;2.0.3 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->default(compile)]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->runtime]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->compile]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->master]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->master(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->compile(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->runtime(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->default(compile)]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->runtime]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->compile]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->master(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=compile-internal
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->compile(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->runtime(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->compile]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->master]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->default(compile)]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->runtime]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->compile]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->master]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->default(compile)]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->runtime]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->compile]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->master]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->default(compile)]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->runtime]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->compile]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->master]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->default(compile)]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->runtime]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->compile]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->master]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->default(compile)]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->runtime]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->compile]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=compile-internal
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->compile(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->runtime(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->compile]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->master]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->default(compile)]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->runtime]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->compile]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->master]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->default(compile)]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->runtime]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->compile]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->master]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->default(compile)]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->runtime]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->compile]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->master]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->default(compile)]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->runtime]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->compile]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->master]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->default(compile)]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->runtime]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->compile]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile-internal
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->compile]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->master]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->default(compile)]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->runtime]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->compile]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile-internal
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=compile-internal
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->master]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->default(compile)]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->runtime]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->compile]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->master]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->default(compile)]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->runtime]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->compile]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->master]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->default(compile)]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->runtime]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->compile]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->master]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->default(compile)]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->runtime]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->compile]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->master]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->default(compile)]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->runtime]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->compile]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->master]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->default(compile)]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=compile-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->runtime]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->compile]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.hibernate#hibernate-core;3.5.1-Final {provided=[compile(*), provided(*), runtime(*), master(*)]} => dependency: org.hibernate#hibernate-core;3.3.2.GA {provided=[compile(*), provided(*), runtime(*), master(*)]}
-[debug] dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.1.1 {test=[runtime(*), master(*)]} => dependency: commons-logging#commons-logging;1.0.4 {test=[runtime(*), master(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->master]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#console_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#console_2.9.1;2.0.3 of rootConf=compile-internal
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->default(compile)]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=compile-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->runtime]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->compile]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->master]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->default(compile)]
-[debug] loadData of rhino#js;1.7R2 of rootConf=compile-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->runtime]
-[debug] loadData of rhino#js;1.7R2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->compile]
-[debug] loadData of rhino#js;1.7R2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->master]
-[debug] loadData of rhino#js;1.7R2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->default(compile)]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=compile-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->runtime]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->compile]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->master]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->default(compile)]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=compile-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->runtime]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->compile]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile-internal
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile-internal
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile-internal
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=compile-internal
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=compile-internal
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->master]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 [compile->default(compile)]
-[debug] loadData of com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 of rootConf=compile-internal
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->default(compile)]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=compile-internal
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->runtime]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->compile]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->master]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE [compile->default(compile)]
-[debug] loadData of com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE of rootConf=compile-internal
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->default(compile)]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=compile-internal
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->runtime]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->compile]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->master]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [optional]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [provided]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-sbt#sbt_2.9.1;0.11.3 [provided->default(compile)]
-[debug] loadData of org.scala-sbt#sbt_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#main_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#main_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#actions_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#actions_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#classfile_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classfile_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-sbt#control_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#control_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#incremental-compiler_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#incremental-compiler_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#api_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#api_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#persist_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#persist_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-sbt#incremental-compiler_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#incremental-compiler_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-sbt#api_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#api_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->default(compile)]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->runtime]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->compile]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->master]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#compile_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#compile_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#ivy_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#ivy_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->default(compile)]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->runtime]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->compile]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->master]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->default(compile)]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->runtime]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->compile]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->master]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->default(compile)]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->runtime]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->compile]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [compile->master(*)]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=compile-internal
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [compile->compile(*)]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.3 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.3 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [runtime->runtime(*)]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [runtime->compile]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=compile-internal
-[debug] compile-internal is evicted.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.3 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.3 [runtime->compile]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->master]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#completion_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#completion_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-sbt#control_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#control_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#api_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#api_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#ivy_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#ivy_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#run_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#run_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#task-system_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#task-system_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#tasks_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#tasks_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-sbt#control_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#control_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#tasks_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#tasks_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#tracking_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#tracking_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-sbt#cache_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#cache_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->default(compile)]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->runtime]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->compile]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->master]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#testing_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#testing_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->default(compile)]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->runtime]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->compile]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->master]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#ivy_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#ivy_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#run_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#run_2.9.1;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#compiler-interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#compiler-interface;0.11.3 of rootConf=compile-internal
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#precompiled-2_8_2;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#precompiled-2_8_2;0.11.3 of rootConf=compile-internal
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#precompiled-2_8_1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#precompiled-2_8_1;0.11.3 of rootConf=compile-internal
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#precompiled-2_9_2;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#precompiled-2_9_2;0.11.3 of rootConf=compile-internal
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=compile-internal
-[debug] compile-internal is loaded and no conf to load.  Skip loading
-[debug] resolving dependencies for configuration 'runtime-internal'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [runtime-internal]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=runtime-internal
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [runtime]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [compile]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->play#sbt-plugin;2.0.3 [compile->default(compile)]
-[debug] loadData of play#sbt-plugin;2.0.3 of rootConf=runtime-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#play_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#play_2.9.1;2.0.3 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=runtime-internal
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->master(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->compile(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->master(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=runtime-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->compile(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=runtime-internal
-[debug] runtime-internal is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=runtime-internal
-[debug] runtime-internal is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->runtime(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->runtime(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->compile]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=runtime-internal
-[debug] runtime-internal is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#anorm_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#anorm_2.9.1;2.0.3 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->default(compile)]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->runtime]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->compile]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->master]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->master(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->compile(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->runtime(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->default(compile)]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->runtime]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->compile]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->master(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=runtime-internal
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->compile(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->runtime(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->compile]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->master]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->default(compile)]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->runtime]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->compile]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->master]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->default(compile)]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->runtime]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->compile]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->master]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->default(compile)]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->runtime]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->compile]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->master]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->default(compile)]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->runtime]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->compile]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->master]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->default(compile)]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->runtime]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->compile]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=runtime-internal
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->compile(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime-internal
-[debug] runtime-internal is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime-internal
-[debug] runtime-internal is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->runtime(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->compile]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime-internal
-[debug] runtime-internal is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->master]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->default(compile)]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->runtime]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->compile]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->master]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->default(compile)]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->runtime]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->compile]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->master]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->default(compile)]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->runtime]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->compile]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->master]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->default(compile)]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->runtime]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->compile]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->master]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->default(compile)]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->runtime]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->compile]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=runtime-internal
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->compile]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->master]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->default(compile)]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->runtime]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->compile]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime-internal
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=runtime-internal
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->master]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->default(compile)]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->runtime]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->compile]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->master]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->default(compile)]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->runtime]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->compile]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->master]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->default(compile)]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->runtime]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->compile]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->master]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->default(compile)]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->runtime]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->compile]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->master]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->default(compile)]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->runtime]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->compile]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->master]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->default(compile)]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=runtime-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->runtime]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->compile]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.hibernate#hibernate-core;3.5.1-Final {provided=[compile(*), provided(*), runtime(*), master(*)]} => dependency: org.hibernate#hibernate-core;3.3.2.GA {provided=[compile(*), provided(*), runtime(*), master(*)]}
-[debug] dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.1.1 {test=[runtime(*), master(*)]} => dependency: commons-logging#commons-logging;1.0.4 {test=[runtime(*), master(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime-internal
-[debug] runtime-internal is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime-internal
-[debug] runtime-internal is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=runtime-internal
-[debug] runtime-internal is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->master]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#console_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#console_2.9.1;2.0.3 of rootConf=runtime-internal
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->default(compile)]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=runtime-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->runtime]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->compile]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->master]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->default(compile)]
-[debug] loadData of rhino#js;1.7R2 of rootConf=runtime-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->runtime]
-[debug] loadData of rhino#js;1.7R2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->compile]
-[debug] loadData of rhino#js;1.7R2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->master]
-[debug] loadData of rhino#js;1.7R2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->default(compile)]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=runtime-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->runtime]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->compile]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->master]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->default(compile)]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=runtime-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->runtime]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->compile]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime-internal
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=runtime-internal
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime-internal
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=runtime-internal
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=runtime-internal
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->master]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 [compile->default(compile)]
-[debug] loadData of com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 of rootConf=runtime-internal
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->default(compile)]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=runtime-internal
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->runtime]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->compile]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->master]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE [compile->default(compile)]
-[debug] loadData of com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE of rootConf=runtime-internal
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->default(compile)]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=runtime-internal
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->runtime]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->compile]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->master]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [optional]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=runtime-internal
-[debug] runtime-internal is loaded and no conf to load.  Skip loading
-[debug] resolving dependencies for configuration 'test-internal'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [test-internal]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=test-internal
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [test]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [runtime]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [compile]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->play#sbt-plugin;2.0.3 [compile->default(compile)]
-[debug] loadData of play#sbt-plugin;2.0.3 of rootConf=test-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#play_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#play_2.9.1;2.0.3 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=test-internal
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->master(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=test-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [compile->compile(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->master(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=test-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [compile->compile(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->runtime(*)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 [runtime->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->runtime(*)]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 [runtime->compile]
-[debug] loadData of com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-actor;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#templates_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->play#anorm_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#anorm_2.9.1;2.0.3 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->default(compile)]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->runtime]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->compile]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->io.netty#netty;3.5.0.Final [compile->master]
-[debug] loadData of io.netty#netty;3.5.0.Final of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#slf4j-api;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jul-to-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jul-to-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jul-to-slf4j;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->default(compile)]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->runtime]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->compile]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.slf4j#jcl-over-slf4j;1.6.4->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.slf4j#jcl-over-slf4j;1.6.4 [compile->master]
-[debug] loadData of org.slf4j#jcl-over-slf4j;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-core;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->default(compile)]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->runtime]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->compile]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->master(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [compile->compile(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->runtime(*)]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->ch.qos.logback#logback-core;1.0.0 [runtime->compile]
-[debug] loadData of ch.qos.logback#logback-core;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies ch.qos.logback#logback-classic;1.0.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->ch.qos.logback#logback-classic;1.0.0 [compile->master]
-[debug] loadData of ch.qos.logback#logback-classic;1.0.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-actor;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->default(compile)]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->runtime]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->compile]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [compile->compile(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->runtime(*)]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->com.typesafe.akka#akka-actor;2.0.2 [runtime->compile]
-[debug] loadData of com.typesafe.akka#akka-actor;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.akka#akka-slf4j;2.0.2->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.typesafe.akka#akka-slf4j;2.0.2 [compile->master]
-[debug] loadData of com.typesafe.akka#akka-slf4j;2.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[compile(*), master(*)], runtime=[runtime(*)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[compile(*), master(*)], runtime=[runtime(*)]}
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->default(compile)]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->runtime]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->compile]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->master(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=test-internal
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [compile->compile(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->runtime(*)]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.google.guava#guava;10.0.1->com.google.code.findbugs#jsr305;1.3.9 [runtime->compile]
-[debug] loadData of com.google.code.findbugs#jsr305;1.3.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.google.guava#guava;10.0.1 [compile->master]
-[debug] loadData of com.google.guava#guava;10.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->default(compile)]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->runtime]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->compile]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final [compile->master]
-[debug] loadData of org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->default(compile)]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->runtime]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->compile]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-tools#scala-stm_2.9.1;0.5->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.scala-tools#scala-stm_2.9.1;0.5 [compile->master]
-[debug] loadData of org.scala-tools#scala-stm_2.9.1;0.5 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->default(compile)]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->runtime]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->compile]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.jolbox#bonecp;0.7.1.RELEASE [compile->master]
-[debug] loadData of com.jolbox#bonecp;0.7.1.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->default(compile)]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->runtime]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->compile]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.yaml#snakeyaml;1.9 [compile->master]
-[debug] loadData of org.yaml#snakeyaml;1.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->default(compile)]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->runtime]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->compile]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.slf4j#slf4j-api;1.6.4 {compile=[default(compile)]} => dependency: org.slf4j#slf4j-api;1.6.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: joda-time#joda-time;2.0 {compile=[default(compile)]} => dependency: joda-time#joda-time;1.6 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: com.h2database#h2;1.3.158 {compile=[default(compile)]} => dependency: com.h2database#h2;1.2.124 {compile=[default(compile)]}
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=test-internal
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [compile->compile(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->runtime(*)]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->javax.validation#validation-api;1.0.0.GA [runtime->compile]
-[debug] loadData of javax.validation#validation-api;1.0.0.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.hibernate#hibernate-validator;4.2.0.Final->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.hibernate#hibernate-validator;4.2.0.Final [compile->master]
-[debug] loadData of org.hibernate#hibernate-validator;4.2.0.Final of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-context;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-context;3.0.7.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-core;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-core;3.0.7.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->default(compile)]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->runtime]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->compile]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.springframework#spring-beans;3.0.7.RELEASE [compile->master]
-[debug] loadData of org.springframework#spring-beans;3.0.7.RELEASE of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->default(compile)]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->runtime]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->compile]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->joda-time#joda-time;2.0 [compile->master]
-[debug] loadData of joda-time#joda-time;2.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->default(compile)]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->runtime]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->compile]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.joda#joda-convert;1.1 [compile->master]
-[debug] loadData of org.joda#joda-convert;1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->default(compile)]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->runtime]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->compile]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->commons-lang#commons-lang;2.6 [compile->master]
-[debug] loadData of commons-lang#commons-lang;2.6 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->default(compile)]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->runtime]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->compile]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.ning#async-http-client;1.7.0 [compile->master]
-[debug] loadData of com.ning#async-http-client;1.7.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->default(compile)]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->runtime]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->compile]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test-internal
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies oauth.signpost#signpost-core;1.2.1.1->commons-codec#commons-codec;1.3 [runtime->compile]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->oauth.signpost#signpost-core;1.2.1.1 [compile->master]
-[debug] loadData of oauth.signpost#signpost-core;1.2.1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->default(compile)]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->runtime]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->compile]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test-internal
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=test-internal
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->master(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [compile->compile(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.codahale#jerkson_2.9.1;0.5.0->org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-mapper-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->runtime(*)]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.codehaus.jackson#jackson-mapper-asl;[1.9.0,2.0.0)->org.codehaus.jackson#jackson-core-asl;[1.9.0,2.0.0) [runtime->compile]
-[debug] loadData of org.codehaus.jackson#jackson-core-asl;1.9.9 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->com.codahale#jerkson_2.9.1;0.5.0 [compile->master]
-[debug] loadData of com.codahale#jerkson_2.9.1;0.5.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->default(compile)]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->runtime]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->compile]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->org.reflections#reflections;0.9.6 [compile->master]
-[debug] loadData of org.reflections#reflections;0.9.6 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->default(compile)]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->runtime]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->compile]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.servlet#javax.servlet-api;3.0.1 [compile->master]
-[debug] loadData of javax.servlet#javax.servlet-api;3.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->default(compile)]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->runtime]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->compile]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->javax.transaction#jta;1.1 [compile->master]
-[debug] loadData of javax.transaction#jta;1.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->default(compile)]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->runtime]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->compile]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->tyrex#tyrex;1.0.1 [compile->master]
-[debug] loadData of tyrex#tyrex;1.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->default(compile)]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->runtime]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->compile]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->jaxen#jaxen;1.1.3 [compile->master]
-[debug] loadData of jaxen#jaxen;1.1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->default(compile)]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=test-internal
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->runtime]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->compile]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->master(*)]
-[debug] dependency descriptor has been mediated: dependency: org.hibernate#hibernate-core;3.5.1-Final {provided=[compile(*), provided(*), runtime(*), master(*)]} => dependency: org.hibernate#hibernate-core;3.3.2.GA {provided=[compile(*), provided(*), runtime(*), master(*)]}
-[debug] dependency descriptor has been mediated: dependency: commons-logging#commons-logging;1.1.1 {test=[runtime(*), master(*)]} => dependency: commons-logging#commons-logging;1.0.4 {test=[runtime(*), master(*)]}
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->master(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [compile->compile(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.1 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.1 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->runtime(*)]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies net.sf.ehcache#ehcache-core;2.5.0->org.slf4j#slf4j-api;1.6.4 [runtime->compile]
-[debug] loadData of org.slf4j#slf4j-api;1.6.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#play_2.9.1;2.0.3->net.sf.ehcache#ehcache-core;2.5.0 [compile->master]
-[debug] loadData of net.sf.ehcache#ehcache-core;2.5.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#templates_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#templates_2.9.1;2.0.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->play#console_2.9.1;2.0.3 [compile->default(compile)]
-[debug] loadData of play#console_2.9.1;2.0.3 of rootConf=test-internal
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#console_2.9.1;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->default(compile)]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=test-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->runtime]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->compile]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.config#config;0.2.1 [compile->master]
-[debug] loadData of com.typesafe.config#config;0.2.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->default(compile)]
-[debug] loadData of rhino#js;1.7R2 of rootConf=test-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->runtime]
-[debug] loadData of rhino#js;1.7R2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->compile]
-[debug] loadData of rhino#js;1.7R2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->rhino#js;1.7R2 [compile->master]
-[debug] loadData of rhino#js;1.7R2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->default(compile)]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=test-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->runtime]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->compile]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.google.javascript#closure-compiler;r2079 [compile->master]
-[debug] loadData of com.google.javascript#closure-compiler;r2079 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->default(compile)]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->runtime]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->compile]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 [compile->master]
-[debug] loadData of com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->default(compile)]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->runtime]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->compile]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.avaje#ebean;2.7.3 [compile->master]
-[debug] loadData of org.avaje#ebean;2.7.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->default(compile)]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->runtime]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->compile]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.h2database#h2;1.3.158 [compile->master]
-[debug] loadData of com.h2database#h2;1.3.158 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->default(compile)]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->runtime]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->compile]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->javassist#javassist;3.12.1.GA [compile->master]
-[debug] loadData of javassist#javassist;3.12.1.GA of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->default(compile)]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=test-internal
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->runtime]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->compile]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test-internal
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=test-internal
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test-internal
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=test-internal
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=test-internal
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->master(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [compile->compile(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->master(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [compile->compile(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.pegdown#pegdown;1.1.0->org.parboiled#parboiled-java;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-java;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-util;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-util;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-util;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-tree;3.3.1->asm#asm;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->asm#asm-analysis;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-analysis;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->runtime(*)]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies asm#asm-analysis;3.3.1->asm#asm-tree;3.3.1 [runtime->compile]
-[debug] loadData of asm#asm-tree;3.3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->runtime(*)]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.parboiled#parboiled-java;1.0.2->org.parboiled#parboiled-core;1.0.2 [runtime->compile]
-[debug] loadData of org.parboiled#parboiled-core;1.0.2 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->org.pegdown#pegdown;1.1.0 [compile->master]
-[debug] loadData of org.pegdown#pegdown;1.1.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 [compile->default(compile)]
-[debug] loadData of com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 of rootConf=test-internal
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->default(compile)]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=test-internal
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->runtime]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->compile]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scalaz#scalaz-core_2.9.1;6.0.3->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2->org.scalaz#scalaz-core_2.9.1;6.0.3 [compile->master]
-[debug] loadData of org.scalaz#scalaz-core_2.9.1;6.0.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies play#sbt-plugin;2.0.3->com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE [compile->default(compile)]
-[debug] loadData of com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE of rootConf=test-internal
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->default(compile)]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=test-internal
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->runtime]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->compile]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE->commons-io#commons-io;2.0.1 [compile->master]
-[debug] loadData of commons-io#commons-io;2.0.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [optional]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [provided]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-sbt#sbt_2.9.1;0.11.3 [provided->default(compile)]
-[debug] loadData of org.scala-sbt#sbt_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#main_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#main_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#actions_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#actions_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#classfile_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classfile_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-sbt#control_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#control_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#control_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#io_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#process_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#logging_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classfile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#launcher-interface_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [compile->master(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [compile->compile(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [runtime->runtime(*)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-lang#scala-compiler;2.9.1->org.scala-lang#scala-library;2.9.1 [runtime->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#classpath_2.9.1;0.11.3->org.scala-lang#scala-compiler;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-compiler;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#incremental-compiler_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#incremental-compiler_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#collections_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#api_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#api_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#api_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#incremental-compiler_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#persist_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#persist_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-sbt#incremental-compiler_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#incremental-compiler_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-sbt#api_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#api_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->default(compile)]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->runtime]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->compile]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#persist_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->master]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#compile_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#compile_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#ivy_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#ivy_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->default(compile)]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->runtime]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->compile]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->org.apache.ivy#ivy;2.2.0 [compile->master]
-[debug] loadData of org.apache.ivy#ivy;2.2.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->default(compile)]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->runtime]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->compile]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->com.jcraft#jsch;0.1.46 [compile->master]
-[debug] loadData of com.jcraft#jsch;0.1.46 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->default(compile)]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->runtime]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->compile]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [compile->master(*)]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=test-internal
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [compile->compile(*)]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.3 [compile->master(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.3 [compile->compile(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [runtime->runtime(*)]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-logging#commons-logging;1.0.4 [runtime->compile]
-[debug] loadData of commons-logging#commons-logging;1.0.4 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.2 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.2 of rootConf=test-internal
-[debug] test-internal is evicted.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.3 [runtime->runtime(*)]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies commons-httpclient#commons-httpclient;3.1->commons-codec#commons-codec;1.3 [runtime->compile]
-[debug] loadData of commons-codec#commons-codec;1.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#ivy_2.9.1;0.11.3->commons-httpclient#commons-httpclient;3.1 [compile->master]
-[debug] loadData of commons-httpclient#commons-httpclient;3.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compile_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#completion_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#completion_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-sbt#control_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#control_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#completion_2.9.1;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#api_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#api_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#ivy_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#ivy_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#run_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#run_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#run_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#task-system_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#task-system_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#tasks_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#tasks_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-sbt#control_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#control_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tasks_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#task-system_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#tasks_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#tasks_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#tracking_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#tracking_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-sbt#cache_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#cache_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-sbt#collections_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#collections_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->default(compile)]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->runtime]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->compile]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#cache_2.9.1;0.11.3->org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 [compile->master]
-[debug] loadData of org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#tracking_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-sbt#testing_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#testing_2.9.1;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-sbt#classpath_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#classpath_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->default(compile)]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->runtime]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->compile]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#testing_2.9.1;0.11.3->org.scala-tools.testing#test-interface;0.5 [compile->master]
-[debug] loadData of org.scala-tools.testing#test-interface;0.5 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#actions_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#io_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#io_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#ivy_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#ivy_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#launcher-interface_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#launcher-interface_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#logging_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#logging_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#process_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#process_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-sbt#run_2.9.1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#run_2.9.1;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#main_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#compiler-interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#compiler-interface;0.11.3 of rootConf=test-internal
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#compiler-interface;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#precompiled-2_8_2;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#precompiled-2_8_2;0.11.3 of rootConf=test-internal
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_2;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#precompiled-2_8_1;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#precompiled-2_8_1;0.11.3 of rootConf=test-internal
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.8.1 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.8.1 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_8_1;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-sbt#precompiled-2_9_2;0.11.3 [compile->default(compile)]
-[debug] loadData of org.scala-sbt#precompiled-2_9_2;0.11.3 of rootConf=test-internal
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-sbt#interface;0.11.3 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-sbt#interface;0.11.3 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->default(compile)]
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-library;2.9.2 {compile=[default(compile)]} => dependency: org.scala-lang#scala-library;2.9.1 {compile=[default(compile)]}
-[debug] dependency descriptor has been mediated: dependency: org.scala-lang#scala-compiler;2.9.2 {provided=[default(compile)]} => dependency: org.scala-lang#scala-compiler;2.9.1 {provided=[default(compile)]}
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->runtime]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->compile]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#precompiled-2_9_2;0.11.3->jline#jline;0.9.94 [compile->master]
-[debug] loadData of jline#jline;0.9.94 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies org.scala-sbt#sbt_2.9.1;0.11.3->org.scala-lang#scala-library;2.9.1 [compile->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->default(compile)]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->runtime]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->compile]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] == resolving dependencies default#default-d02bd6;0.1-SNAPSHOT->org.scala-lang#scala-library;2.9.1 [provided->master]
-[debug] loadData of org.scala-lang#scala-library;2.9.1 of rootConf=test-internal
-[debug] test-internal is loaded and no conf to load.  Skip loading
-[debug] resolving dependencies for configuration 'plugin'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [plugin]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=plugin
-[debug] resolving dependencies for configuration 'sources'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [sources]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=sources
-[debug] resolving dependencies for configuration 'docs'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [docs]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=docs
-[debug] resolving dependencies for configuration 'pom'
-[debug] == resolving dependencies for default#default-d02bd6;0.1-SNAPSHOT [pom]
-[debug] loadData of default#default-d02bd6;0.1-SNAPSHOT of rootConf=pom
-[debug] Nbr of module to sort : 97
-[debug] Sort dependencies of : play#sbt-plugin;2.0.3 / Number of dependencies = 14
-[debug] Sort dependencies of : org.scala-sbt#sbt_2.9.1;0.11.3 / Number of dependencies = 7
-[debug] Sort dependencies of : org.scala-sbt#main_2.9.1;0.11.3 / Number of dependencies = 11
-[debug] Sort dependencies of : org.scala-sbt#actions_2.9.1;0.11.3 / Number of dependencies = 18
-[debug] Sort dependencies of : org.scala-sbt#classfile_2.9.1;0.11.3 / Number of dependencies = 6
-[debug] Sort dependencies of : org.scala-sbt#io_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-sbt#control_2.9.1;0.11.3 / Number of dependencies = 1
-[debug] Sort dependencies of : org.scala-lang#scala-library;2.9.1 / Number of dependencies = 0
-[debug] Sort done for : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#interface;0.11.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#logging_2.9.1;0.11.3 / Number of dependencies = 6
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#process_2.9.1;0.11.3 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : jline#jline;0.9.94 / Number of dependencies = 1
-[debug] Sort done for : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#classpath_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-sbt#launcher-interface_2.9.1;0.11.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-lang#scala-compiler;2.9.1 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-lang#scala-compiler;2.9.1
-[debug] Sort done for : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#incremental-compiler_2.9.1;0.11.3 / Number of dependencies = 8
-[debug] Sort dependencies of : org.scala-sbt#collections_2.9.1;0.11.3 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#api_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#persist_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 / Number of dependencies = 1
-[debug] Sort done for : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Sort done for : org.scala-sbt#persist_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#compile_2.9.1;0.11.3 / Number of dependencies = 12
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#ivy_2.9.1;0.11.3 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.apache.ivy#ivy;2.2.0 / Number of dependencies = 15
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on commons-httpclient#commons-httpclient;3.0, doesn't match commons-httpclient#commons-httpclient;3.1
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on com.jcraft#jsch;0.1.31, doesn't match com.jcraft#jsch;0.1.46
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on commons-lang#commons-lang;2.5, doesn't match commons-lang#commons-lang;2.6
-[debug] Sort done for : org.apache.ivy#ivy;2.2.0
-[debug] Sort dependencies of : com.jcraft#jsch;0.1.46 / Number of dependencies = 2
-[debug] Sort done for : com.jcraft#jsch;0.1.46
-[debug] Sort dependencies of : commons-httpclient#commons-httpclient;3.1 / Number of dependencies = 3
-[debug] Sort dependencies of : commons-logging#commons-logging;1.0.4 / Number of dependencies = 4
-[debug] Sort done for : commons-logging#commons-logging;1.0.4
-[debug] Sort dependencies of : commons-codec#commons-codec;1.2 / Number of dependencies = 0
-[debug] Sort done for : commons-codec#commons-codec;1.2
-[debug] Sort done for : commons-httpclient#commons-httpclient;3.1
-[debug] Sort done for : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Sort done for : org.scala-sbt#compile_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#completion_2.9.1;0.11.3 / Number of dependencies = 7
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#completion_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#run_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#task-system_2.9.1;0.11.3 / Number of dependencies = 8
-[debug] Sort dependencies of : org.scala-sbt#tasks_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#tracking_2.9.1;0.11.3 / Number of dependencies = 3
-[debug] Sort dependencies of : org.scala-sbt#cache_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Sort done for : org.scala-sbt#cache_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#testing_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-tools.testing#test-interface;0.5 / Number of dependencies = 0
-[debug] Sort done for : org.scala-tools.testing#test-interface;0.5
-[debug] Sort done for : org.scala-sbt#testing_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#actions_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#main_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#compiler-interface;0.11.3 / Number of dependencies = 7
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#compiler-interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_8_2;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_2 depends on org.scala-lang#scala-library;2.8.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_2 depends on org.scala-lang#scala-compiler;2.8.2, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_8_1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_1 depends on org.scala-lang#scala-library;2.8.1, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_1 depends on org.scala-lang#scala-compiler;2.8.1, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_9_2;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_9_2 depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_9_2 depends on org.scala-lang#scala-compiler;2.9.2, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Sort dependencies of : play#play_2.9.1;2.0.3 / Number of dependencies = 38
-[debug] Sort dependencies of : play#templates_2.9.1;2.0.3 / Number of dependencies = 2
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 / Number of dependencies = 3
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Non matching revision detected when sorting.  com.github.scala-incubator.io#scala-io-core_2.9.1 depends on com.typesafe.akka#akka-actor;2.0, doesn't match com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#anorm_2.9.1;2.0.3 / Number of dependencies = 0
-[debug] Sort done for : play#anorm_2.9.1;2.0.3
-[debug] Sort dependencies of : io.netty#netty;3.5.0.Final / Number of dependencies = 16
-[debug] Sort dependencies of : org.slf4j#slf4j-api;1.6.4 / Number of dependencies = 1
-[debug] Sort done for : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  io.netty#netty depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort dependencies of : org.slf4j#jul-to-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Sort dependencies of : org.slf4j#jcl-over-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Sort dependencies of : ch.qos.logback#logback-core;1.0.0 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-core;1.0.0
-[debug] Sort dependencies of : ch.qos.logback#logback-classic;1.0.0 / Number of dependencies = 24
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on com.h2database#h2;1.2.132, doesn't match com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort dependencies of : com.typesafe.akka#akka-actor;2.0.2 / Number of dependencies = 1
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-actor depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort dependencies of : com.typesafe.akka#akka-slf4j;2.0.2 / Number of dependencies = 5
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on ch.qos.logback#logback-classic;0.9.28, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort done for : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Sort dependencies of : com.google.guava#guava;10.0.1 / Number of dependencies = 3
-[debug] Sort dependencies of : com.google.code.findbugs#jsr305;1.3.9 / Number of dependencies = 0
-[debug] Sort done for : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.guava#guava;10.0.1
-[debug] Sort dependencies of : org.avaje#ebean;2.7.3 / Number of dependencies = 15
-[debug] Sort dependencies of : javax.transaction#jta;1.1 / Number of dependencies = 0
-[debug] Sort done for : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on org.scala-lang#scala-library;2.8.0, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on com.h2database#h2;1.3.153, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.avaje#ebean;2.7.3
-[debug] Sort dependencies of : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final / Number of dependencies = 0
-[debug] Sort done for : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Sort dependencies of : com.h2database#h2;1.3.158 / Number of dependencies = 0
-[debug] Sort done for : com.h2database#h2;1.3.158
-[debug] Sort dependencies of : org.scala-tools#scala-stm_2.9.1;0.5 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Sort dependencies of : com.jolbox#bonecp;0.7.1.RELEASE / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on com.google.guava#guava;r08, doesn't match com.google.guava#guava;10.0.1
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on org.slf4j#slf4j-api;1.5.10, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Sort dependencies of : org.yaml#snakeyaml;1.9 / Number of dependencies = 4
-[debug] Non matching revision detected when sorting.  org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort done for : org.yaml#snakeyaml;1.9
-[debug] Sort dependencies of : org.hibernate#hibernate-validator;4.2.0.Final / Number of dependencies = 12
-[debug] Sort dependencies of : javax.validation#validation-api;1.0.0.GA / Number of dependencies = 0
-[debug] Sort done for : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on com.h2database#h2;1.2.124, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Sort dependencies of : org.springframework#spring-context;3.0.7.RELEASE / Number of dependencies = 32
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on asm#asm;3.0, doesn't match asm#asm;3.3.1
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort dependencies of : org.springframework#spring-beans;3.0.7.RELEASE / Number of dependencies = 7
-[debug] Sort dependencies of : org.springframework#spring-core;3.0.7.RELEASE / Number of dependencies = 10
-[debug] Non matching revision detected when sorting.  org.springframework#spring-core depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Sort dependencies of : joda-time#joda-time;2.0 / Number of dependencies = 2
-[debug] Sort dependencies of : org.joda#joda-convert;1.1 / Number of dependencies = 1
-[debug] Sort done for : org.joda#joda-convert;1.1
-[debug] Sort done for : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Sort dependencies of : javassist#javassist;3.12.1.GA / Number of dependencies = 1
-[debug] Sort done for : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
-[debug] Sort done for : commons-lang#commons-lang;2.6
-[debug] Sort dependencies of : com.ning#async-http-client;1.7.0 / Number of dependencies = 17
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on org.slf4j#slf4j-api;1.6.2, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on ch.qos.logback#logback-classic;0.9.26, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort dependencies of : commons-io#commons-io;2.0.1 / Number of dependencies = 1
-[debug] Sort done for : commons-io#commons-io;2.0.1
-[debug] Module descriptor is processed : commons-httpclient#commons-httpclient;3.1
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-lang#commons-lang;2.4, doesn't match commons-lang#commons-lang;2.6
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : com.ning#async-http-client;1.7.0
-[debug] Sort dependencies of : oauth.signpost#signpost-core;1.2.1.1 / Number of dependencies = 3
-[debug] Non matching revision detected when sorting.  oauth.signpost#signpost-core depends on commons-codec#commons-codec;1.3, doesn't match commons-codec#commons-codec;1.2
-[debug] Sort dependencies of : commons-codec#commons-codec;1.3 / Number of dependencies = 1
-[debug] Sort done for : commons-codec#commons-codec;1.3
-[debug] Sort done for : oauth.signpost#signpost-core;1.2.1.1
-[debug] Sort dependencies of : com.codahale#jerkson_2.9.1;0.5.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.9 / Number of dependencies = 0
-[debug] Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.9 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Sort done for : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Sort dependencies of : org.reflections#reflections;0.9.6 / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on com.google.guava#guava;10.0, doesn't match com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : org.reflections#reflections;0.9.6
-[debug] Sort dependencies of : javax.servlet#javax.servlet-api;3.0.1 / Number of dependencies = 0
-[debug] Sort done for : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Sort dependencies of : tyrex#tyrex;1.0.1 / Number of dependencies = 0
-[debug] Sort done for : tyrex#tyrex;1.0.1
-[debug] Sort dependencies of : jaxen#jaxen;1.1.3 / Number of dependencies = 7
-[debug] Sort done for : jaxen#jaxen;1.1.3
-[debug] Sort dependencies of : net.sf.ehcache#ehcache-core;2.5.0 / Number of dependencies = 19
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on javassist#javassist;3.4.GA, doesn't match javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Sort done for : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#console_2.9.1;2.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#console_2.9.1;2.0.3
-[debug] Sort dependencies of : com.typesafe.config#config;0.2.1 / Number of dependencies = 3
-[debug] Sort done for : com.typesafe.config#config;0.2.1
-[debug] Sort dependencies of : rhino#js;1.7R2 / Number of dependencies = 0
-[debug] Sort done for : rhino#js;1.7R2
-[debug] Sort dependencies of : com.google.javascript#closure-compiler;r2079 / Number of dependencies = 9
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : org.pegdown#pegdown;1.1.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.parboiled#parboiled-core;1.0.2 / Number of dependencies = 0
-[debug] Sort done for : org.parboiled#parboiled-core;1.0.2
-[debug] Sort dependencies of : org.parboiled#parboiled-java;1.0.2 / Number of dependencies = 5
-[debug] Sort dependencies of : asm#asm;3.3.1 / Number of dependencies = 0
-[debug] Sort done for : asm#asm;3.3.1
-[debug] Sort dependencies of : asm#asm-util;3.3.1 / Number of dependencies = 1
-[debug] Sort dependencies of : asm#asm-tree;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Sort done for : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort dependencies of : asm#asm-analysis;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Sort done for : org.parboiled#parboiled-java;1.0.2
-[debug] Sort done for : org.pegdown#pegdown;1.1.0
-[debug] Sort dependencies of : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scalaz#scalaz-core_2.9.1;6.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Sort done for : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Sort dependencies of : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Sort done for : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Sort done for : play#sbt-plugin;2.0.3
-[debug] Module descriptor is processed : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#console_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.typesafe.config#config;0.2.1
-[debug] Module descriptor is processed : rhino#js;1.7R2
-[debug] Module descriptor is processed : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Module descriptor is processed : org.pegdown#pegdown;1.1.0
-[debug] Module descriptor is processed : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Module descriptor is processed : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Module descriptor is processed : play#anorm_2.9.1;2.0.3
-[debug] Module descriptor is processed : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Module descriptor is processed : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Module descriptor is processed : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Module descriptor is processed : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Module descriptor is processed : org.yaml#snakeyaml;1.9
-[debug] Module descriptor is processed : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Module descriptor is processed : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Module descriptor is processed : commons-lang#commons-lang;2.6
-[debug] Module descriptor is processed : com.ning#async-http-client;1.7.0
-[debug] Module descriptor is processed : oauth.signpost#signpost-core;1.2.1.1
-[debug] Module descriptor is processed : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Module descriptor is processed : org.reflections#reflections;0.9.6
-[debug] Module descriptor is processed : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Module descriptor is processed : tyrex#tyrex;1.0.1
-[debug] Module descriptor is processed : jaxen#jaxen;1.1.3
-[debug] Module descriptor is processed : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.3
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Module descriptor is processed : org.parboiled#parboiled-java;1.0.2
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Module descriptor is processed : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Module descriptor is processed : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Module descriptor is processed : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#main_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#compiler-interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#actions_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#persist_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#compile_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#completion_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#testing_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Module descriptor is processed : org.apache.ivy#ivy;2.2.0
-[debug] Module descriptor is processed : com.jcraft#jsch;0.1.46
-[debug] Module descriptor is processed : commons-httpclient#commons-httpclient;3.1
-[debug] Module descriptor is processed : commons-logging#commons-logging;1.0.4
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.2
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Module descriptor is processed : org.scala-sbt#cache_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-tools.testing#test-interface;0.5
-[debug] org.scala-lang#scala-library;2.9.1 in test-internal: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in test: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in compile: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in provided: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in runtime: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in runtime-internal: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in compile-internal: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-compiler;2.9.1 in test-internal: excluding org.scala-lang#scala-compiler;2.9.1!scala-compiler.jar
-[debug] org.scala-lang#scala-compiler;2.9.1 in provided: excluding org.scala-lang#scala-compiler;2.9.1!scala-compiler.jar
-[debug] org.scala-lang#scala-compiler;2.9.1 in compile-internal: excluding org.scala-lang#scala-compiler;2.9.1!scala-compiler.jar
-[debug] 	resolved ivy file produced in /Users/aotokage/opt/play/framework/../repository/cache/resolved-default-default-d02bd6-0.1-SNAPSHOT.xml
-[debug] :: downloading artifacts ::
-[debug] 	[NOT REQUIRED] play#sbt-plugin;2.0.3!sbt-plugin.jar
-[debug] 	[NOT REQUIRED] play#play_2.9.1;2.0.3!play_2.9.1.jar
-[debug] 	[NOT REQUIRED] play#templates_2.9.1;2.0.3!templates_2.9.1.jar
-[debug] 	[NOT REQUIRED] play#console_2.9.1;2.0.3!console_2.9.1.jar
-[debug] 	[NOT REQUIRED] com.typesafe.config#config;0.2.1!config.jar
-[debug] 	[NOT REQUIRED] rhino#js;1.7R2!js.jar
-[debug] 	[NOT REQUIRED] com.google.javascript#closure-compiler;r2079!closure-compiler.jar
-[debug] 	[NOT REQUIRED] com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0!scala-io-file_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.avaje#ebean;2.7.3!ebean.jar
-[debug] 	[NOT REQUIRED] com.h2database#h2;1.3.158!h2.jar
-[debug] 	[NOT REQUIRED] javassist#javassist;3.12.1.GA!javassist.jar
-[debug] 	[NOT REQUIRED] org.pegdown#pegdown;1.1.0!pegdown.jar
-[debug] 	[NOT REQUIRED] com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2!sbteclipse-core.jar
-[debug] 	[NOT REQUIRED] com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE!sbt-idea.jar
-[debug] 	[NOT REQUIRED] play#anorm_2.9.1;2.0.3!anorm_2.9.1.jar
-[debug] 	[NOT REQUIRED] io.netty#netty;3.5.0.Final!netty.jar(bundle)
-[debug] 	[NOT REQUIRED] org.slf4j#slf4j-api;1.6.4!slf4j-api.jar
-[debug] 	[NOT REQUIRED] org.slf4j#jul-to-slf4j;1.6.4!jul-to-slf4j.jar
-[debug] 	[NOT REQUIRED] org.slf4j#jcl-over-slf4j;1.6.4!jcl-over-slf4j.jar
-[debug] 	[NOT REQUIRED] ch.qos.logback#logback-core;1.0.0!logback-core.jar
-[debug] 	[NOT REQUIRED] ch.qos.logback#logback-classic;1.0.0!logback-classic.jar
-[debug] 	[NOT REQUIRED] com.typesafe.akka#akka-actor;2.0.2!akka-actor.jar
-[debug] 	[NOT REQUIRED] com.typesafe.akka#akka-slf4j;2.0.2!akka-slf4j.jar
-[debug] 	[NOT REQUIRED] com.google.guava#guava;10.0.1!guava.jar
-[debug] 	[NOT REQUIRED] org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final!hibernate-jpa-2.0-api.jar
-[debug] 	[NOT REQUIRED] org.scala-tools#scala-stm_2.9.1;0.5!scala-stm_2.9.1.jar
-[debug] 	[NOT REQUIRED] com.jolbox#bonecp;0.7.1.RELEASE!bonecp.jar(bundle)
-[debug] 	[NOT REQUIRED] org.yaml#snakeyaml;1.9!snakeyaml.jar(bundle)
-[debug] 	[NOT REQUIRED] org.hibernate#hibernate-validator;4.2.0.Final!hibernate-validator.jar
-[debug] 	[NOT REQUIRED] org.springframework#spring-context;3.0.7.RELEASE!spring-context.jar
-[debug] 	[NOT REQUIRED] org.springframework#spring-core;3.0.7.RELEASE!spring-core.jar
-[debug] 	[NOT REQUIRED] org.springframework#spring-beans;3.0.7.RELEASE!spring-beans.jar
-[debug] 	[NOT REQUIRED] joda-time#joda-time;2.0!joda-time.jar
-[debug] 	[NOT REQUIRED] org.joda#joda-convert;1.1!joda-convert.jar
-[debug] 	[NOT REQUIRED] commons-lang#commons-lang;2.6!commons-lang.jar
-[debug] 	[NOT REQUIRED] com.ning#async-http-client;1.7.0!async-http-client.jar
-[debug] 	[NOT REQUIRED] oauth.signpost#signpost-core;1.2.1.1!signpost-core.jar
-[debug] 	[NOT REQUIRED] com.codahale#jerkson_2.9.1;0.5.0!jerkson_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.reflections#reflections;0.9.6!reflections.jar
-[debug] 	[NOT REQUIRED] javax.servlet#javax.servlet-api;3.0.1!javax.servlet-api.jar
-[debug] 	[NOT REQUIRED] javax.transaction#jta;1.1!jta.jar
-[debug] 	[NOT REQUIRED] tyrex#tyrex;1.0.1!tyrex.jar
-[debug] 	[NOT REQUIRED] jaxen#jaxen;1.1.3!jaxen.jar
-[debug] 	[NOT REQUIRED] net.sf.ehcache#ehcache-core;2.5.0!ehcache-core.jar
-[debug] 	[NOT REQUIRED] com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0!scala-io-core_2.9.1.jar
-[debug] org.scala-lang#scala-library;2.9.1 in test-internal: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in test: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in compile: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in provided: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in runtime: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in runtime-internal: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in compile-internal: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in test-internal: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in test: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in compile: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in provided: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in runtime: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in runtime-internal: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] org.scala-lang#scala-library;2.9.1 in compile-internal: excluding org.scala-lang#scala-library;2.9.1!scala-library.jar
-[debug] 	[NOT REQUIRED] com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1!scala-arm_2.9.1.jar
-[debug] 	[NOT REQUIRED] com.google.code.findbugs#jsr305;1.3.9!jsr305.jar
-[debug] 	[NOT REQUIRED] javax.validation#validation-api;1.0.0.GA!validation-api.jar
-[debug] 	[NOT REQUIRED] commons-codec#commons-codec;1.3!commons-codec.jar
-[debug] 	[NOT REQUIRED] org.codehaus.jackson#jackson-core-asl;1.9.9!jackson-core-asl.jar
-[debug] 	[NOT REQUIRED] org.codehaus.jackson#jackson-mapper-asl;1.9.9!jackson-mapper-asl.jar
-[debug] 	[NOT REQUIRED] org.parboiled#parboiled-core;1.0.2!parboiled-core.jar
-[debug] 	[NOT REQUIRED] org.parboiled#parboiled-java;1.0.2!parboiled-java.jar
-[debug] 	[NOT REQUIRED] asm#asm;3.3.1!asm.jar
-[debug] 	[NOT REQUIRED] asm#asm-util;3.3.1!asm-util.jar
-[debug] 	[NOT REQUIRED] asm#asm-tree;3.3.1!asm-tree.jar
-[debug] 	[NOT REQUIRED] asm#asm-analysis;3.3.1!asm-analysis.jar
-[debug] 	[NOT REQUIRED] org.scalaz#scalaz-core_2.9.1;6.0.3!scalaz-core_2.9.1.jar
-[debug] 	[NOT REQUIRED] commons-io#commons-io;2.0.1!commons-io.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#sbt_2.9.1;0.11.3!sbt_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#main_2.9.1;0.11.3!main_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#compiler-interface;0.11.3!compiler-interface-bin.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#compiler-interface;0.11.3!compiler-interface-src.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#precompiled-2_8_2;0.11.3!compiler-interface-bin.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#precompiled-2_8_1;0.11.3!compiler-interface-bin.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#precompiled-2_9_2;0.11.3!compiler-interface-bin.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#actions_2.9.1;0.11.3!actions_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#interface;0.11.3!interface.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#io_2.9.1;0.11.3!io_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#ivy_2.9.1;0.11.3!ivy_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#launcher-interface_2.9.1;0.11.3!launcher-interface_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#logging_2.9.1;0.11.3!logging_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#process_2.9.1;0.11.3!process_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#run_2.9.1;0.11.3!run_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#classfile_2.9.1;0.11.3!classfile_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#classpath_2.9.1;0.11.3!classpath_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#incremental-compiler_2.9.1;0.11.3!incremental-compiler_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#persist_2.9.1;0.11.3!persist_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#compile_2.9.1;0.11.3!compile_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#completion_2.9.1;0.11.3!completion_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#api_2.9.1;0.11.3!api_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#task-system_2.9.1;0.11.3!task-system_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#tasks_2.9.1;0.11.3!tasks_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#tracking_2.9.1;0.11.3!tracking_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#testing_2.9.1;0.11.3!testing_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#control_2.9.1;0.11.3!control_2.9.1.jar
-[debug] org.scala-lang#scala-compiler;2.9.1 in test-internal: excluding org.scala-lang#scala-compiler;2.9.1!scala-compiler.jar
-[debug] org.scala-lang#scala-compiler;2.9.1 in provided: excluding org.scala-lang#scala-compiler;2.9.1!scala-compiler.jar
-[debug] org.scala-lang#scala-compiler;2.9.1 in compile-internal: excluding org.scala-lang#scala-compiler;2.9.1!scala-compiler.jar
-[debug] org.scala-lang#scala-compiler;2.9.1 in test-internal: excluding org.scala-lang#scala-compiler;2.9.1!scala-compiler.jar
-[debug] org.scala-lang#scala-compiler;2.9.1 in provided: excluding org.scala-lang#scala-compiler;2.9.1!scala-compiler.jar
-[debug] org.scala-lang#scala-compiler;2.9.1 in compile-internal: excluding org.scala-lang#scala-compiler;2.9.1!scala-compiler.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#collections_2.9.1;0.11.3!collections_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-tools.sbinary#sbinary_2.9.0;0.4.0!sbinary_2.9.0.jar
-[debug] 	[NOT REQUIRED] org.apache.ivy#ivy;2.2.0!ivy.jar
-[debug] 	[NOT REQUIRED] com.jcraft#jsch;0.1.46!jsch.jar
-[debug] 	[NOT REQUIRED] commons-httpclient#commons-httpclient;3.1!commons-httpclient.jar
-[debug] 	[NOT REQUIRED] commons-logging#commons-logging;1.0.4!commons-logging.jar
-[debug] 	[NOT REQUIRED] commons-codec#commons-codec;1.2!commons-codec.jar
-[debug] 	[NOT REQUIRED] jline#jline;0.9.94!jline.jar
-[debug] 	[NOT REQUIRED] org.scala-sbt#cache_2.9.1;0.11.3!cache_2.9.1.jar
-[debug] 	[NOT REQUIRED] org.scala-tools.testing#test-interface;0.5!test-interface.jar
-[debug] :: resolution report :: resolve 4894ms :: artifacts dl 93ms
-[debug] Nbr of module to sort : 60
-[debug] Sort dependencies of : play#sbt-plugin;2.0.3 / Number of dependencies = 14
-[debug] Sort dependencies of : play#play_2.9.1;2.0.3 / Number of dependencies = 38
-[debug] Sort dependencies of : play#templates_2.9.1;2.0.3 / Number of dependencies = 2
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 / Number of dependencies = 3
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-lang#scala-library;2.9.1 / Number of dependencies = 0
-[debug] Sort done for : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Non matching revision detected when sorting.  com.github.scala-incubator.io#scala-io-core_2.9.1 depends on com.typesafe.akka#akka-actor;2.0, doesn't match com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#anorm_2.9.1;2.0.3 / Number of dependencies = 0
-[debug] Sort done for : play#anorm_2.9.1;2.0.3
-[debug] Sort dependencies of : io.netty#netty;3.5.0.Final / Number of dependencies = 16
-[debug] Sort dependencies of : org.slf4j#slf4j-api;1.6.4 / Number of dependencies = 1
-[debug] Sort done for : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort dependencies of : org.slf4j#jul-to-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Sort dependencies of : org.slf4j#jcl-over-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Sort dependencies of : ch.qos.logback#logback-core;1.0.0 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-core;1.0.0
-[debug] Sort dependencies of : ch.qos.logback#logback-classic;1.0.0 / Number of dependencies = 24
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on com.h2database#h2;1.2.132, doesn't match com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort dependencies of : com.typesafe.akka#akka-actor;2.0.2 / Number of dependencies = 1
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-actor depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort dependencies of : com.typesafe.akka#akka-slf4j;2.0.2 / Number of dependencies = 5
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on ch.qos.logback#logback-classic;0.9.28, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort done for : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Sort dependencies of : com.google.guava#guava;10.0.1 / Number of dependencies = 3
-[debug] Sort dependencies of : com.google.code.findbugs#jsr305;1.3.9 / Number of dependencies = 0
-[debug] Sort done for : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.guava#guava;10.0.1
-[debug] Sort dependencies of : org.avaje#ebean;2.7.3 / Number of dependencies = 15
-[debug] Sort dependencies of : javax.transaction#jta;1.1 / Number of dependencies = 0
-[debug] Sort done for : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on org.scala-lang#scala-library;2.8.0, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on com.h2database#h2;1.3.153, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.avaje#ebean;2.7.3
-[debug] Sort dependencies of : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final / Number of dependencies = 0
-[debug] Sort done for : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Sort dependencies of : com.h2database#h2;1.3.158 / Number of dependencies = 0
-[debug] Sort done for : com.h2database#h2;1.3.158
-[debug] Sort dependencies of : org.scala-tools#scala-stm_2.9.1;0.5 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Sort dependencies of : com.jolbox#bonecp;0.7.1.RELEASE / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on com.google.guava#guava;r08, doesn't match com.google.guava#guava;10.0.1
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on org.slf4j#slf4j-api;1.5.10, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Sort dependencies of : org.yaml#snakeyaml;1.9 / Number of dependencies = 4
-[debug] Non matching revision detected when sorting.  org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort done for : org.yaml#snakeyaml;1.9
-[debug] Sort dependencies of : org.hibernate#hibernate-validator;4.2.0.Final / Number of dependencies = 12
-[debug] Sort dependencies of : javax.validation#validation-api;1.0.0.GA / Number of dependencies = 0
-[debug] Sort done for : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on com.h2database#h2;1.2.124, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Sort dependencies of : org.springframework#spring-context;3.0.7.RELEASE / Number of dependencies = 32
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on asm#asm;3.0, doesn't match asm#asm;3.3.1
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort dependencies of : org.springframework#spring-beans;3.0.7.RELEASE / Number of dependencies = 7
-[debug] Sort dependencies of : org.springframework#spring-core;3.0.7.RELEASE / Number of dependencies = 10
-[debug] Sort done for : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Sort dependencies of : joda-time#joda-time;2.0 / Number of dependencies = 2
-[debug] Sort dependencies of : org.joda#joda-convert;1.1 / Number of dependencies = 1
-[debug] Sort done for : org.joda#joda-convert;1.1
-[debug] Sort done for : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Sort dependencies of : javassist#javassist;3.12.1.GA / Number of dependencies = 1
-[debug] Sort done for : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
-[debug] Sort done for : commons-lang#commons-lang;2.6
-[debug] Sort dependencies of : com.ning#async-http-client;1.7.0 / Number of dependencies = 17
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on org.slf4j#slf4j-api;1.6.2, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on ch.qos.logback#logback-classic;0.9.26, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort dependencies of : commons-io#commons-io;2.0.1 / Number of dependencies = 1
-[debug] Sort done for : commons-io#commons-io;2.0.1
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-lang#commons-lang;2.4, doesn't match commons-lang#commons-lang;2.6
-[debug] Sort done for : com.ning#async-http-client;1.7.0
-[debug] Sort dependencies of : oauth.signpost#signpost-core;1.2.1.1 / Number of dependencies = 3
-[debug] Sort dependencies of : commons-codec#commons-codec;1.3 / Number of dependencies = 1
-[debug] Sort done for : commons-codec#commons-codec;1.3
-[debug] Sort done for : oauth.signpost#signpost-core;1.2.1.1
-[debug] Sort dependencies of : com.codahale#jerkson_2.9.1;0.5.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.9 / Number of dependencies = 0
-[debug] Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.9 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Sort done for : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Sort dependencies of : org.reflections#reflections;0.9.6 / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on com.google.guava#guava;10.0, doesn't match com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : org.reflections#reflections;0.9.6
-[debug] Sort dependencies of : javax.servlet#javax.servlet-api;3.0.1 / Number of dependencies = 0
-[debug] Sort done for : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Sort dependencies of : tyrex#tyrex;1.0.1 / Number of dependencies = 0
-[debug] Sort done for : tyrex#tyrex;1.0.1
-[debug] Sort dependencies of : jaxen#jaxen;1.1.3 / Number of dependencies = 7
-[debug] Sort done for : jaxen#jaxen;1.1.3
-[debug] Sort dependencies of : net.sf.ehcache#ehcache-core;2.5.0 / Number of dependencies = 19
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on javassist#javassist;3.4.GA, doesn't match javassist#javassist;3.12.1.GA
-[debug] Sort done for : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Sort done for : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#console_2.9.1;2.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#console_2.9.1;2.0.3
-[debug] Sort dependencies of : com.typesafe.config#config;0.2.1 / Number of dependencies = 3
-[debug] Sort done for : com.typesafe.config#config;0.2.1
-[debug] Sort dependencies of : rhino#js;1.7R2 / Number of dependencies = 0
-[debug] Sort done for : rhino#js;1.7R2
-[debug] Sort dependencies of : com.google.javascript#closure-compiler;r2079 / Number of dependencies = 9
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : org.pegdown#pegdown;1.1.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.parboiled#parboiled-core;1.0.2 / Number of dependencies = 0
-[debug] Sort done for : org.parboiled#parboiled-core;1.0.2
-[debug] Sort dependencies of : org.parboiled#parboiled-java;1.0.2 / Number of dependencies = 5
-[debug] Sort dependencies of : asm#asm;3.3.1 / Number of dependencies = 0
-[debug] Sort done for : asm#asm;3.3.1
-[debug] Sort dependencies of : asm#asm-util;3.3.1 / Number of dependencies = 1
-[debug] Sort dependencies of : asm#asm-tree;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Sort done for : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort dependencies of : asm#asm-analysis;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Sort done for : org.parboiled#parboiled-java;1.0.2
-[debug] Sort done for : org.pegdown#pegdown;1.1.0
-[debug] Sort dependencies of : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scalaz#scalaz-core_2.9.1;6.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Sort done for : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Sort dependencies of : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Sort done for : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Sort done for : play#sbt-plugin;2.0.3
-[debug] Module descriptor is processed : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Module descriptor is processed : play#anorm_2.9.1;2.0.3
-[debug] Module descriptor is processed : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Module descriptor is processed : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Module descriptor is processed : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Module descriptor is processed : org.yaml#snakeyaml;1.9
-[debug] Module descriptor is processed : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Module descriptor is processed : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Module descriptor is processed : commons-lang#commons-lang;2.6
-[debug] Module descriptor is processed : com.ning#async-http-client;1.7.0
-[debug] Module descriptor is processed : oauth.signpost#signpost-core;1.2.1.1
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.3
-[debug] Module descriptor is processed : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Module descriptor is processed : org.reflections#reflections;0.9.6
-[debug] Module descriptor is processed : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Module descriptor is processed : tyrex#tyrex;1.0.1
-[debug] Module descriptor is processed : jaxen#jaxen;1.1.3
-[debug] Module descriptor is processed : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Module descriptor is processed : play#console_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.typesafe.config#config;0.2.1
-[debug] Module descriptor is processed : rhino#js;1.7R2
-[debug] Module descriptor is processed : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : org.pegdown#pegdown;1.1.0
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Module descriptor is processed : org.parboiled#parboiled-java;1.0.2
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Module descriptor is processed : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Module descriptor is processed : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Module descriptor is processed : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Module descriptor is processed : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT compile produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-compile.xml
-[debug] Nbr of module to sort : 60
-[debug] Sort dependencies of : play#sbt-plugin;2.0.3 / Number of dependencies = 14
-[debug] Sort dependencies of : play#play_2.9.1;2.0.3 / Number of dependencies = 38
-[debug] Sort dependencies of : play#templates_2.9.1;2.0.3 / Number of dependencies = 2
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 / Number of dependencies = 3
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-lang#scala-library;2.9.1 / Number of dependencies = 0
-[debug] Sort done for : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Non matching revision detected when sorting.  com.github.scala-incubator.io#scala-io-core_2.9.1 depends on com.typesafe.akka#akka-actor;2.0, doesn't match com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#anorm_2.9.1;2.0.3 / Number of dependencies = 0
-[debug] Sort done for : play#anorm_2.9.1;2.0.3
-[debug] Sort dependencies of : io.netty#netty;3.5.0.Final / Number of dependencies = 16
-[debug] Sort dependencies of : org.slf4j#slf4j-api;1.6.4 / Number of dependencies = 1
-[debug] Sort done for : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort dependencies of : org.slf4j#jul-to-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Sort dependencies of : org.slf4j#jcl-over-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Sort dependencies of : ch.qos.logback#logback-core;1.0.0 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-core;1.0.0
-[debug] Sort dependencies of : ch.qos.logback#logback-classic;1.0.0 / Number of dependencies = 24
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on com.h2database#h2;1.2.132, doesn't match com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort dependencies of : com.typesafe.akka#akka-actor;2.0.2 / Number of dependencies = 1
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-actor depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort dependencies of : com.typesafe.akka#akka-slf4j;2.0.2 / Number of dependencies = 5
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on ch.qos.logback#logback-classic;0.9.28, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort done for : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Sort dependencies of : com.google.guava#guava;10.0.1 / Number of dependencies = 3
-[debug] Sort dependencies of : com.google.code.findbugs#jsr305;1.3.9 / Number of dependencies = 0
-[debug] Sort done for : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.guava#guava;10.0.1
-[debug] Sort dependencies of : org.avaje#ebean;2.7.3 / Number of dependencies = 15
-[debug] Sort dependencies of : javax.transaction#jta;1.1 / Number of dependencies = 0
-[debug] Sort done for : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on org.scala-lang#scala-library;2.8.0, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on com.h2database#h2;1.3.153, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.avaje#ebean;2.7.3
-[debug] Sort dependencies of : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final / Number of dependencies = 0
-[debug] Sort done for : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Sort dependencies of : com.h2database#h2;1.3.158 / Number of dependencies = 0
-[debug] Sort done for : com.h2database#h2;1.3.158
-[debug] Sort dependencies of : org.scala-tools#scala-stm_2.9.1;0.5 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Sort dependencies of : com.jolbox#bonecp;0.7.1.RELEASE / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on com.google.guava#guava;r08, doesn't match com.google.guava#guava;10.0.1
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on org.slf4j#slf4j-api;1.5.10, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Sort dependencies of : org.yaml#snakeyaml;1.9 / Number of dependencies = 4
-[debug] Non matching revision detected when sorting.  org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort done for : org.yaml#snakeyaml;1.9
-[debug] Sort dependencies of : org.hibernate#hibernate-validator;4.2.0.Final / Number of dependencies = 12
-[debug] Sort dependencies of : javax.validation#validation-api;1.0.0.GA / Number of dependencies = 0
-[debug] Sort done for : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on com.h2database#h2;1.2.124, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Sort dependencies of : org.springframework#spring-context;3.0.7.RELEASE / Number of dependencies = 32
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on asm#asm;3.0, doesn't match asm#asm;3.3.1
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort dependencies of : org.springframework#spring-beans;3.0.7.RELEASE / Number of dependencies = 7
-[debug] Sort dependencies of : org.springframework#spring-core;3.0.7.RELEASE / Number of dependencies = 10
-[debug] Sort done for : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Sort dependencies of : joda-time#joda-time;2.0 / Number of dependencies = 2
-[debug] Sort dependencies of : org.joda#joda-convert;1.1 / Number of dependencies = 1
-[debug] Sort done for : org.joda#joda-convert;1.1
-[debug] Sort done for : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Sort dependencies of : javassist#javassist;3.12.1.GA / Number of dependencies = 1
-[debug] Sort done for : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
-[debug] Sort done for : commons-lang#commons-lang;2.6
-[debug] Sort dependencies of : com.ning#async-http-client;1.7.0 / Number of dependencies = 17
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on org.slf4j#slf4j-api;1.6.2, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on ch.qos.logback#logback-classic;0.9.26, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort dependencies of : commons-io#commons-io;2.0.1 / Number of dependencies = 1
-[debug] Sort done for : commons-io#commons-io;2.0.1
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-lang#commons-lang;2.4, doesn't match commons-lang#commons-lang;2.6
-[debug] Sort done for : com.ning#async-http-client;1.7.0
-[debug] Sort dependencies of : oauth.signpost#signpost-core;1.2.1.1 / Number of dependencies = 3
-[debug] Sort dependencies of : commons-codec#commons-codec;1.3 / Number of dependencies = 1
-[debug] Sort done for : commons-codec#commons-codec;1.3
-[debug] Sort done for : oauth.signpost#signpost-core;1.2.1.1
-[debug] Sort dependencies of : com.codahale#jerkson_2.9.1;0.5.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.9 / Number of dependencies = 0
-[debug] Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.9 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Sort done for : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Sort dependencies of : org.reflections#reflections;0.9.6 / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on com.google.guava#guava;10.0, doesn't match com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : org.reflections#reflections;0.9.6
-[debug] Sort dependencies of : javax.servlet#javax.servlet-api;3.0.1 / Number of dependencies = 0
-[debug] Sort done for : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Sort dependencies of : tyrex#tyrex;1.0.1 / Number of dependencies = 0
-[debug] Sort done for : tyrex#tyrex;1.0.1
-[debug] Sort dependencies of : jaxen#jaxen;1.1.3 / Number of dependencies = 7
-[debug] Sort done for : jaxen#jaxen;1.1.3
-[debug] Sort dependencies of : net.sf.ehcache#ehcache-core;2.5.0 / Number of dependencies = 19
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on javassist#javassist;3.4.GA, doesn't match javassist#javassist;3.12.1.GA
-[debug] Sort done for : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Sort done for : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#console_2.9.1;2.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#console_2.9.1;2.0.3
-[debug] Sort dependencies of : com.typesafe.config#config;0.2.1 / Number of dependencies = 3
-[debug] Sort done for : com.typesafe.config#config;0.2.1
-[debug] Sort dependencies of : rhino#js;1.7R2 / Number of dependencies = 0
-[debug] Sort done for : rhino#js;1.7R2
-[debug] Sort dependencies of : com.google.javascript#closure-compiler;r2079 / Number of dependencies = 9
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : org.pegdown#pegdown;1.1.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.parboiled#parboiled-core;1.0.2 / Number of dependencies = 0
-[debug] Sort done for : org.parboiled#parboiled-core;1.0.2
-[debug] Sort dependencies of : org.parboiled#parboiled-java;1.0.2 / Number of dependencies = 5
-[debug] Sort dependencies of : asm#asm;3.3.1 / Number of dependencies = 0
-[debug] Sort done for : asm#asm;3.3.1
-[debug] Sort dependencies of : asm#asm-util;3.3.1 / Number of dependencies = 1
-[debug] Sort dependencies of : asm#asm-tree;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Sort done for : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort dependencies of : asm#asm-analysis;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Sort done for : org.parboiled#parboiled-java;1.0.2
-[debug] Sort done for : org.pegdown#pegdown;1.1.0
-[debug] Sort dependencies of : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scalaz#scalaz-core_2.9.1;6.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Sort done for : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Sort dependencies of : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Sort done for : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Sort done for : play#sbt-plugin;2.0.3
-[debug] Module descriptor is processed : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Module descriptor is processed : play#anorm_2.9.1;2.0.3
-[debug] Module descriptor is processed : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Module descriptor is processed : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Module descriptor is processed : org.yaml#snakeyaml;1.9
-[debug] Module descriptor is processed : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Module descriptor is processed : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Module descriptor is processed : commons-lang#commons-lang;2.6
-[debug] Module descriptor is processed : com.ning#async-http-client;1.7.0
-[debug] Module descriptor is processed : oauth.signpost#signpost-core;1.2.1.1
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.3
-[debug] Module descriptor is processed : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Module descriptor is processed : org.reflections#reflections;0.9.6
-[debug] Module descriptor is processed : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Module descriptor is processed : tyrex#tyrex;1.0.1
-[debug] Module descriptor is processed : jaxen#jaxen;1.1.3
-[debug] Module descriptor is processed : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Module descriptor is processed : play#console_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.typesafe.config#config;0.2.1
-[debug] Module descriptor is processed : rhino#js;1.7R2
-[debug] Module descriptor is processed : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : org.pegdown#pegdown;1.1.0
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Module descriptor is processed : org.parboiled#parboiled-java;1.0.2
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Module descriptor is processed : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Module descriptor is processed : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Module descriptor is processed : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Module descriptor is processed : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT runtime produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-runtime.xml
-[debug] Nbr of module to sort : 60
-[debug] Sort dependencies of : play#sbt-plugin;2.0.3 / Number of dependencies = 14
-[debug] Sort dependencies of : play#play_2.9.1;2.0.3 / Number of dependencies = 38
-[debug] Sort dependencies of : play#templates_2.9.1;2.0.3 / Number of dependencies = 2
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 / Number of dependencies = 3
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-lang#scala-library;2.9.1 / Number of dependencies = 0
-[debug] Sort done for : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Non matching revision detected when sorting.  com.github.scala-incubator.io#scala-io-core_2.9.1 depends on com.typesafe.akka#akka-actor;2.0, doesn't match com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#anorm_2.9.1;2.0.3 / Number of dependencies = 0
-[debug] Sort done for : play#anorm_2.9.1;2.0.3
-[debug] Sort dependencies of : io.netty#netty;3.5.0.Final / Number of dependencies = 16
-[debug] Sort dependencies of : org.slf4j#slf4j-api;1.6.4 / Number of dependencies = 1
-[debug] Sort done for : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort dependencies of : org.slf4j#jul-to-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Sort dependencies of : org.slf4j#jcl-over-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Sort dependencies of : ch.qos.logback#logback-core;1.0.0 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-core;1.0.0
-[debug] Sort dependencies of : ch.qos.logback#logback-classic;1.0.0 / Number of dependencies = 24
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on com.h2database#h2;1.2.132, doesn't match com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort dependencies of : com.typesafe.akka#akka-actor;2.0.2 / Number of dependencies = 1
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-actor depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort dependencies of : com.typesafe.akka#akka-slf4j;2.0.2 / Number of dependencies = 5
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on ch.qos.logback#logback-classic;0.9.28, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort done for : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Sort dependencies of : com.google.guava#guava;10.0.1 / Number of dependencies = 3
-[debug] Sort dependencies of : com.google.code.findbugs#jsr305;1.3.9 / Number of dependencies = 0
-[debug] Sort done for : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.guava#guava;10.0.1
-[debug] Sort dependencies of : org.avaje#ebean;2.7.3 / Number of dependencies = 15
-[debug] Sort dependencies of : javax.transaction#jta;1.1 / Number of dependencies = 0
-[debug] Sort done for : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on org.scala-lang#scala-library;2.8.0, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on com.h2database#h2;1.3.153, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.avaje#ebean;2.7.3
-[debug] Sort dependencies of : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final / Number of dependencies = 0
-[debug] Sort done for : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Sort dependencies of : com.h2database#h2;1.3.158 / Number of dependencies = 0
-[debug] Sort done for : com.h2database#h2;1.3.158
-[debug] Sort dependencies of : org.scala-tools#scala-stm_2.9.1;0.5 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Sort dependencies of : com.jolbox#bonecp;0.7.1.RELEASE / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on com.google.guava#guava;r08, doesn't match com.google.guava#guava;10.0.1
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on org.slf4j#slf4j-api;1.5.10, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Sort dependencies of : org.yaml#snakeyaml;1.9 / Number of dependencies = 4
-[debug] Non matching revision detected when sorting.  org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort done for : org.yaml#snakeyaml;1.9
-[debug] Sort dependencies of : org.hibernate#hibernate-validator;4.2.0.Final / Number of dependencies = 12
-[debug] Sort dependencies of : javax.validation#validation-api;1.0.0.GA / Number of dependencies = 0
-[debug] Sort done for : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on com.h2database#h2;1.2.124, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Sort dependencies of : org.springframework#spring-context;3.0.7.RELEASE / Number of dependencies = 32
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on asm#asm;3.0, doesn't match asm#asm;3.3.1
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort dependencies of : org.springframework#spring-beans;3.0.7.RELEASE / Number of dependencies = 7
-[debug] Sort dependencies of : org.springframework#spring-core;3.0.7.RELEASE / Number of dependencies = 10
-[debug] Sort done for : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Sort dependencies of : joda-time#joda-time;2.0 / Number of dependencies = 2
-[debug] Sort dependencies of : org.joda#joda-convert;1.1 / Number of dependencies = 1
-[debug] Sort done for : org.joda#joda-convert;1.1
-[debug] Sort done for : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Sort dependencies of : javassist#javassist;3.12.1.GA / Number of dependencies = 1
-[debug] Sort done for : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
-[debug] Sort done for : commons-lang#commons-lang;2.6
-[debug] Sort dependencies of : com.ning#async-http-client;1.7.0 / Number of dependencies = 17
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on org.slf4j#slf4j-api;1.6.2, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on ch.qos.logback#logback-classic;0.9.26, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort dependencies of : commons-io#commons-io;2.0.1 / Number of dependencies = 1
-[debug] Sort done for : commons-io#commons-io;2.0.1
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-lang#commons-lang;2.4, doesn't match commons-lang#commons-lang;2.6
-[debug] Sort done for : com.ning#async-http-client;1.7.0
-[debug] Sort dependencies of : oauth.signpost#signpost-core;1.2.1.1 / Number of dependencies = 3
-[debug] Sort dependencies of : commons-codec#commons-codec;1.3 / Number of dependencies = 1
-[debug] Sort done for : commons-codec#commons-codec;1.3
-[debug] Sort done for : oauth.signpost#signpost-core;1.2.1.1
-[debug] Sort dependencies of : com.codahale#jerkson_2.9.1;0.5.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.9 / Number of dependencies = 0
-[debug] Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.9 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Sort done for : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Sort dependencies of : org.reflections#reflections;0.9.6 / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on com.google.guava#guava;10.0, doesn't match com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : org.reflections#reflections;0.9.6
-[debug] Sort dependencies of : javax.servlet#javax.servlet-api;3.0.1 / Number of dependencies = 0
-[debug] Sort done for : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Sort dependencies of : tyrex#tyrex;1.0.1 / Number of dependencies = 0
-[debug] Sort done for : tyrex#tyrex;1.0.1
-[debug] Sort dependencies of : jaxen#jaxen;1.1.3 / Number of dependencies = 7
-[debug] Sort done for : jaxen#jaxen;1.1.3
-[debug] Sort dependencies of : net.sf.ehcache#ehcache-core;2.5.0 / Number of dependencies = 19
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on javassist#javassist;3.4.GA, doesn't match javassist#javassist;3.12.1.GA
-[debug] Sort done for : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Sort done for : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#console_2.9.1;2.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#console_2.9.1;2.0.3
-[debug] Sort dependencies of : com.typesafe.config#config;0.2.1 / Number of dependencies = 3
-[debug] Sort done for : com.typesafe.config#config;0.2.1
-[debug] Sort dependencies of : rhino#js;1.7R2 / Number of dependencies = 0
-[debug] Sort done for : rhino#js;1.7R2
-[debug] Sort dependencies of : com.google.javascript#closure-compiler;r2079 / Number of dependencies = 9
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : org.pegdown#pegdown;1.1.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.parboiled#parboiled-core;1.0.2 / Number of dependencies = 0
-[debug] Sort done for : org.parboiled#parboiled-core;1.0.2
-[debug] Sort dependencies of : org.parboiled#parboiled-java;1.0.2 / Number of dependencies = 5
-[debug] Sort dependencies of : asm#asm;3.3.1 / Number of dependencies = 0
-[debug] Sort done for : asm#asm;3.3.1
-[debug] Sort dependencies of : asm#asm-util;3.3.1 / Number of dependencies = 1
-[debug] Sort dependencies of : asm#asm-tree;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Sort done for : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort dependencies of : asm#asm-analysis;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Sort done for : org.parboiled#parboiled-java;1.0.2
-[debug] Sort done for : org.pegdown#pegdown;1.1.0
-[debug] Sort dependencies of : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scalaz#scalaz-core_2.9.1;6.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Sort done for : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Sort dependencies of : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Sort done for : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Sort done for : play#sbt-plugin;2.0.3
-[debug] Module descriptor is processed : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Module descriptor is processed : play#anorm_2.9.1;2.0.3
-[debug] Module descriptor is processed : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Module descriptor is processed : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Module descriptor is processed : org.yaml#snakeyaml;1.9
-[debug] Module descriptor is processed : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Module descriptor is processed : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Module descriptor is processed : commons-lang#commons-lang;2.6
-[debug] Module descriptor is processed : com.ning#async-http-client;1.7.0
-[debug] Module descriptor is processed : oauth.signpost#signpost-core;1.2.1.1
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.3
-[debug] Module descriptor is processed : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Module descriptor is processed : org.reflections#reflections;0.9.6
-[debug] Module descriptor is processed : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Module descriptor is processed : tyrex#tyrex;1.0.1
-[debug] Module descriptor is processed : jaxen#jaxen;1.1.3
-[debug] Module descriptor is processed : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Module descriptor is processed : play#console_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.typesafe.config#config;0.2.1
-[debug] Module descriptor is processed : rhino#js;1.7R2
-[debug] Module descriptor is processed : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : org.pegdown#pegdown;1.1.0
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Module descriptor is processed : org.parboiled#parboiled-java;1.0.2
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Module descriptor is processed : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Module descriptor is processed : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Module descriptor is processed : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Module descriptor is processed : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT test produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-test.xml
-[debug] Nbr of module to sort : 38
-[debug] Sort dependencies of : org.scala-sbt#sbt_2.9.1;0.11.3 / Number of dependencies = 7
-[debug] Sort dependencies of : org.scala-sbt#main_2.9.1;0.11.3 / Number of dependencies = 11
-[debug] Sort dependencies of : org.scala-sbt#actions_2.9.1;0.11.3 / Number of dependencies = 18
-[debug] Sort dependencies of : org.scala-sbt#classfile_2.9.1;0.11.3 / Number of dependencies = 6
-[debug] Sort dependencies of : org.scala-sbt#io_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-sbt#control_2.9.1;0.11.3 / Number of dependencies = 1
-[debug] Sort dependencies of : org.scala-lang#scala-library;2.9.1 / Number of dependencies = 0
-[debug] Sort done for : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#interface;0.11.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#logging_2.9.1;0.11.3 / Number of dependencies = 6
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#process_2.9.1;0.11.3 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : jline#jline;0.9.94 / Number of dependencies = 1
-[debug] Sort done for : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#classpath_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-sbt#launcher-interface_2.9.1;0.11.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-lang#scala-compiler;2.9.1 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-lang#scala-compiler;2.9.1
-[debug] Sort done for : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#incremental-compiler_2.9.1;0.11.3 / Number of dependencies = 8
-[debug] Sort dependencies of : org.scala-sbt#collections_2.9.1;0.11.3 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#api_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#persist_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 / Number of dependencies = 1
-[debug] Sort done for : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Sort done for : org.scala-sbt#persist_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#compile_2.9.1;0.11.3 / Number of dependencies = 12
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#ivy_2.9.1;0.11.3 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.apache.ivy#ivy;2.2.0 / Number of dependencies = 15
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on commons-httpclient#commons-httpclient;3.0, doesn't match commons-httpclient#commons-httpclient;3.1
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on com.jcraft#jsch;0.1.31, doesn't match com.jcraft#jsch;0.1.46
-[debug] Sort done for : org.apache.ivy#ivy;2.2.0
-[debug] Sort dependencies of : com.jcraft#jsch;0.1.46 / Number of dependencies = 2
-[debug] Sort done for : com.jcraft#jsch;0.1.46
-[debug] Sort dependencies of : commons-httpclient#commons-httpclient;3.1 / Number of dependencies = 3
-[debug] Sort dependencies of : commons-logging#commons-logging;1.0.4 / Number of dependencies = 4
-[debug] Sort done for : commons-logging#commons-logging;1.0.4
-[debug] Sort dependencies of : commons-codec#commons-codec;1.2 / Number of dependencies = 0
-[debug] Sort done for : commons-codec#commons-codec;1.2
-[debug] Sort done for : commons-httpclient#commons-httpclient;3.1
-[debug] Sort done for : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Sort done for : org.scala-sbt#compile_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#completion_2.9.1;0.11.3 / Number of dependencies = 7
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#completion_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#run_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#task-system_2.9.1;0.11.3 / Number of dependencies = 8
-[debug] Sort dependencies of : org.scala-sbt#tasks_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#tracking_2.9.1;0.11.3 / Number of dependencies = 3
-[debug] Sort dependencies of : org.scala-sbt#cache_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Sort done for : org.scala-sbt#cache_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#testing_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-tools.testing#test-interface;0.5 / Number of dependencies = 0
-[debug] Sort done for : org.scala-tools.testing#test-interface;0.5
-[debug] Sort done for : org.scala-sbt#testing_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#actions_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#main_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#compiler-interface;0.11.3 / Number of dependencies = 7
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#compiler-interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_8_2;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_2 depends on org.scala-lang#scala-library;2.8.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_2 depends on org.scala-lang#scala-compiler;2.8.2, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_8_1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_1 depends on org.scala-lang#scala-library;2.8.1, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_1 depends on org.scala-lang#scala-compiler;2.8.1, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_9_2;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_9_2 depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_9_2 depends on org.scala-lang#scala-compiler;2.9.2, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#main_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#actions_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#persist_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Module descriptor is processed : org.scala-sbt#compile_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.apache.ivy#ivy;2.2.0
-[debug] Module descriptor is processed : com.jcraft#jsch;0.1.46
-[debug] Module descriptor is processed : commons-httpclient#commons-httpclient;3.1
-[debug] Module descriptor is processed : commons-logging#commons-logging;1.0.4
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.2
-[debug] Module descriptor is processed : org.scala-sbt#completion_2.9.1;0.11.3
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Module descriptor is processed : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#cache_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#testing_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-tools.testing#test-interface;0.5
-[debug] Module descriptor is processed : org.scala-sbt#compiler-interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT provided produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-provided.xml
-[debug] Nbr of module to sort : 0
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT optional produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-optional.xml
-[debug] Nbr of module to sort : 97
-[debug] Sort dependencies of : play#sbt-plugin;2.0.3 / Number of dependencies = 14
-[debug] Sort dependencies of : org.scala-sbt#sbt_2.9.1;0.11.3 / Number of dependencies = 7
-[debug] Sort dependencies of : org.scala-sbt#main_2.9.1;0.11.3 / Number of dependencies = 11
-[debug] Sort dependencies of : org.scala-sbt#actions_2.9.1;0.11.3 / Number of dependencies = 18
-[debug] Sort dependencies of : org.scala-sbt#classfile_2.9.1;0.11.3 / Number of dependencies = 6
-[debug] Sort dependencies of : org.scala-sbt#io_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-sbt#control_2.9.1;0.11.3 / Number of dependencies = 1
-[debug] Sort dependencies of : org.scala-lang#scala-library;2.9.1 / Number of dependencies = 0
-[debug] Sort done for : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#interface;0.11.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#logging_2.9.1;0.11.3 / Number of dependencies = 6
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#process_2.9.1;0.11.3 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : jline#jline;0.9.94 / Number of dependencies = 1
-[debug] Sort done for : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#classpath_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-sbt#launcher-interface_2.9.1;0.11.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-lang#scala-compiler;2.9.1 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-lang#scala-compiler;2.9.1
-[debug] Sort done for : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#incremental-compiler_2.9.1;0.11.3 / Number of dependencies = 8
-[debug] Sort dependencies of : org.scala-sbt#collections_2.9.1;0.11.3 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#api_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#persist_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 / Number of dependencies = 1
-[debug] Sort done for : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Sort done for : org.scala-sbt#persist_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#compile_2.9.1;0.11.3 / Number of dependencies = 12
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#ivy_2.9.1;0.11.3 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.apache.ivy#ivy;2.2.0 / Number of dependencies = 15
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on commons-httpclient#commons-httpclient;3.0, doesn't match commons-httpclient#commons-httpclient;3.1
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on com.jcraft#jsch;0.1.31, doesn't match com.jcraft#jsch;0.1.46
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on commons-lang#commons-lang;2.5, doesn't match commons-lang#commons-lang;2.6
-[debug] Sort done for : org.apache.ivy#ivy;2.2.0
-[debug] Sort dependencies of : com.jcraft#jsch;0.1.46 / Number of dependencies = 2
-[debug] Sort done for : com.jcraft#jsch;0.1.46
-[debug] Sort dependencies of : commons-httpclient#commons-httpclient;3.1 / Number of dependencies = 3
-[debug] Sort dependencies of : commons-logging#commons-logging;1.0.4 / Number of dependencies = 4
-[debug] Sort done for : commons-logging#commons-logging;1.0.4
-[debug] Sort dependencies of : commons-codec#commons-codec;1.2 / Number of dependencies = 0
-[debug] Sort done for : commons-codec#commons-codec;1.2
-[debug] Sort done for : commons-httpclient#commons-httpclient;3.1
-[debug] Sort done for : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Sort done for : org.scala-sbt#compile_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#completion_2.9.1;0.11.3 / Number of dependencies = 7
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#completion_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#run_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#task-system_2.9.1;0.11.3 / Number of dependencies = 8
-[debug] Sort dependencies of : org.scala-sbt#tasks_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#tracking_2.9.1;0.11.3 / Number of dependencies = 3
-[debug] Sort dependencies of : org.scala-sbt#cache_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Sort done for : org.scala-sbt#cache_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#testing_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-tools.testing#test-interface;0.5 / Number of dependencies = 0
-[debug] Sort done for : org.scala-tools.testing#test-interface;0.5
-[debug] Sort done for : org.scala-sbt#testing_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#actions_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#main_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#compiler-interface;0.11.3 / Number of dependencies = 7
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#compiler-interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_8_2;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_2 depends on org.scala-lang#scala-library;2.8.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_2 depends on org.scala-lang#scala-compiler;2.8.2, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_8_1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_1 depends on org.scala-lang#scala-library;2.8.1, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_1 depends on org.scala-lang#scala-compiler;2.8.1, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_9_2;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_9_2 depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_9_2 depends on org.scala-lang#scala-compiler;2.9.2, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Sort dependencies of : play#play_2.9.1;2.0.3 / Number of dependencies = 38
-[debug] Sort dependencies of : play#templates_2.9.1;2.0.3 / Number of dependencies = 2
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 / Number of dependencies = 3
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Non matching revision detected when sorting.  com.github.scala-incubator.io#scala-io-core_2.9.1 depends on com.typesafe.akka#akka-actor;2.0, doesn't match com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#anorm_2.9.1;2.0.3 / Number of dependencies = 0
-[debug] Sort done for : play#anorm_2.9.1;2.0.3
-[debug] Sort dependencies of : io.netty#netty;3.5.0.Final / Number of dependencies = 16
-[debug] Sort dependencies of : org.slf4j#slf4j-api;1.6.4 / Number of dependencies = 1
-[debug] Sort done for : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  io.netty#netty depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort dependencies of : org.slf4j#jul-to-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Sort dependencies of : org.slf4j#jcl-over-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Sort dependencies of : ch.qos.logback#logback-core;1.0.0 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-core;1.0.0
-[debug] Sort dependencies of : ch.qos.logback#logback-classic;1.0.0 / Number of dependencies = 24
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on com.h2database#h2;1.2.132, doesn't match com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort dependencies of : com.typesafe.akka#akka-actor;2.0.2 / Number of dependencies = 1
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-actor depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort dependencies of : com.typesafe.akka#akka-slf4j;2.0.2 / Number of dependencies = 5
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on ch.qos.logback#logback-classic;0.9.28, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort done for : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Sort dependencies of : com.google.guava#guava;10.0.1 / Number of dependencies = 3
-[debug] Sort dependencies of : com.google.code.findbugs#jsr305;1.3.9 / Number of dependencies = 0
-[debug] Sort done for : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.guava#guava;10.0.1
-[debug] Sort dependencies of : org.avaje#ebean;2.7.3 / Number of dependencies = 15
-[debug] Sort dependencies of : javax.transaction#jta;1.1 / Number of dependencies = 0
-[debug] Sort done for : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on org.scala-lang#scala-library;2.8.0, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on com.h2database#h2;1.3.153, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.avaje#ebean;2.7.3
-[debug] Sort dependencies of : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final / Number of dependencies = 0
-[debug] Sort done for : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Sort dependencies of : com.h2database#h2;1.3.158 / Number of dependencies = 0
-[debug] Sort done for : com.h2database#h2;1.3.158
-[debug] Sort dependencies of : org.scala-tools#scala-stm_2.9.1;0.5 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Sort dependencies of : com.jolbox#bonecp;0.7.1.RELEASE / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on com.google.guava#guava;r08, doesn't match com.google.guava#guava;10.0.1
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on org.slf4j#slf4j-api;1.5.10, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Sort dependencies of : org.yaml#snakeyaml;1.9 / Number of dependencies = 4
-[debug] Non matching revision detected when sorting.  org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort done for : org.yaml#snakeyaml;1.9
-[debug] Sort dependencies of : org.hibernate#hibernate-validator;4.2.0.Final / Number of dependencies = 12
-[debug] Sort dependencies of : javax.validation#validation-api;1.0.0.GA / Number of dependencies = 0
-[debug] Sort done for : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on com.h2database#h2;1.2.124, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Sort dependencies of : org.springframework#spring-context;3.0.7.RELEASE / Number of dependencies = 32
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on asm#asm;3.0, doesn't match asm#asm;3.3.1
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort dependencies of : org.springframework#spring-beans;3.0.7.RELEASE / Number of dependencies = 7
-[debug] Sort dependencies of : org.springframework#spring-core;3.0.7.RELEASE / Number of dependencies = 10
-[debug] Non matching revision detected when sorting.  org.springframework#spring-core depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Sort dependencies of : joda-time#joda-time;2.0 / Number of dependencies = 2
-[debug] Sort dependencies of : org.joda#joda-convert;1.1 / Number of dependencies = 1
-[debug] Sort done for : org.joda#joda-convert;1.1
-[debug] Sort done for : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Sort dependencies of : javassist#javassist;3.12.1.GA / Number of dependencies = 1
-[debug] Sort done for : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
-[debug] Sort done for : commons-lang#commons-lang;2.6
-[debug] Sort dependencies of : com.ning#async-http-client;1.7.0 / Number of dependencies = 17
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on org.slf4j#slf4j-api;1.6.2, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on ch.qos.logback#logback-classic;0.9.26, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort dependencies of : commons-io#commons-io;2.0.1 / Number of dependencies = 1
-[debug] Sort done for : commons-io#commons-io;2.0.1
-[debug] Module descriptor is processed : commons-httpclient#commons-httpclient;3.1
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-lang#commons-lang;2.4, doesn't match commons-lang#commons-lang;2.6
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : com.ning#async-http-client;1.7.0
-[debug] Sort dependencies of : oauth.signpost#signpost-core;1.2.1.1 / Number of dependencies = 3
-[debug] Non matching revision detected when sorting.  oauth.signpost#signpost-core depends on commons-codec#commons-codec;1.3, doesn't match commons-codec#commons-codec;1.2
-[debug] Sort dependencies of : commons-codec#commons-codec;1.3 / Number of dependencies = 1
-[debug] Sort done for : commons-codec#commons-codec;1.3
-[debug] Sort done for : oauth.signpost#signpost-core;1.2.1.1
-[debug] Sort dependencies of : com.codahale#jerkson_2.9.1;0.5.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.9 / Number of dependencies = 0
-[debug] Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.9 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Sort done for : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Sort dependencies of : org.reflections#reflections;0.9.6 / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on com.google.guava#guava;10.0, doesn't match com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : org.reflections#reflections;0.9.6
-[debug] Sort dependencies of : javax.servlet#javax.servlet-api;3.0.1 / Number of dependencies = 0
-[debug] Sort done for : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Sort dependencies of : tyrex#tyrex;1.0.1 / Number of dependencies = 0
-[debug] Sort done for : tyrex#tyrex;1.0.1
-[debug] Sort dependencies of : jaxen#jaxen;1.1.3 / Number of dependencies = 7
-[debug] Sort done for : jaxen#jaxen;1.1.3
-[debug] Sort dependencies of : net.sf.ehcache#ehcache-core;2.5.0 / Number of dependencies = 19
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on javassist#javassist;3.4.GA, doesn't match javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Sort done for : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#console_2.9.1;2.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#console_2.9.1;2.0.3
-[debug] Sort dependencies of : com.typesafe.config#config;0.2.1 / Number of dependencies = 3
-[debug] Sort done for : com.typesafe.config#config;0.2.1
-[debug] Sort dependencies of : rhino#js;1.7R2 / Number of dependencies = 0
-[debug] Sort done for : rhino#js;1.7R2
-[debug] Sort dependencies of : com.google.javascript#closure-compiler;r2079 / Number of dependencies = 9
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : org.pegdown#pegdown;1.1.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.parboiled#parboiled-core;1.0.2 / Number of dependencies = 0
-[debug] Sort done for : org.parboiled#parboiled-core;1.0.2
-[debug] Sort dependencies of : org.parboiled#parboiled-java;1.0.2 / Number of dependencies = 5
-[debug] Sort dependencies of : asm#asm;3.3.1 / Number of dependencies = 0
-[debug] Sort done for : asm#asm;3.3.1
-[debug] Sort dependencies of : asm#asm-util;3.3.1 / Number of dependencies = 1
-[debug] Sort dependencies of : asm#asm-tree;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Sort done for : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort dependencies of : asm#asm-analysis;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Sort done for : org.parboiled#parboiled-java;1.0.2
-[debug] Sort done for : org.pegdown#pegdown;1.1.0
-[debug] Sort dependencies of : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scalaz#scalaz-core_2.9.1;6.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Sort done for : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Sort dependencies of : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Sort done for : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Sort done for : play#sbt-plugin;2.0.3
-[debug] Module descriptor is processed : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Module descriptor is processed : play#anorm_2.9.1;2.0.3
-[debug] Module descriptor is processed : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Module descriptor is processed : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Module descriptor is processed : org.yaml#snakeyaml;1.9
-[debug] Module descriptor is processed : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Module descriptor is processed : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Module descriptor is processed : commons-lang#commons-lang;2.6
-[debug] Module descriptor is processed : com.ning#async-http-client;1.7.0
-[debug] Module descriptor is processed : oauth.signpost#signpost-core;1.2.1.1
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.3
-[debug] Module descriptor is processed : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Module descriptor is processed : org.reflections#reflections;0.9.6
-[debug] Module descriptor is processed : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Module descriptor is processed : tyrex#tyrex;1.0.1
-[debug] Module descriptor is processed : jaxen#jaxen;1.1.3
-[debug] Module descriptor is processed : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Module descriptor is processed : play#console_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.typesafe.config#config;0.2.1
-[debug] Module descriptor is processed : rhino#js;1.7R2
-[debug] Module descriptor is processed : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : org.pegdown#pegdown;1.1.0
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Module descriptor is processed : org.parboiled#parboiled-java;1.0.2
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Module descriptor is processed : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Module descriptor is processed : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Module descriptor is processed : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Module descriptor is processed : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Module descriptor is processed : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#main_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#actions_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#persist_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Module descriptor is processed : org.scala-sbt#compile_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.apache.ivy#ivy;2.2.0
-[debug] Module descriptor is processed : com.jcraft#jsch;0.1.46
-[debug] Module descriptor is processed : commons-httpclient#commons-httpclient;3.1
-[debug] Module descriptor is processed : commons-logging#commons-logging;1.0.4
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.2
-[debug] Module descriptor is processed : org.scala-sbt#completion_2.9.1;0.11.3
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Module descriptor is processed : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#cache_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#testing_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-tools.testing#test-interface;0.5
-[debug] Module descriptor is processed : org.scala-sbt#compiler-interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT compile-internal produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-compile-internal.xml
-[debug] Nbr of module to sort : 60
-[debug] Sort dependencies of : play#sbt-plugin;2.0.3 / Number of dependencies = 14
-[debug] Sort dependencies of : play#play_2.9.1;2.0.3 / Number of dependencies = 38
-[debug] Sort dependencies of : play#templates_2.9.1;2.0.3 / Number of dependencies = 2
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 / Number of dependencies = 3
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-lang#scala-library;2.9.1 / Number of dependencies = 0
-[debug] Sort done for : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Non matching revision detected when sorting.  com.github.scala-incubator.io#scala-io-core_2.9.1 depends on com.typesafe.akka#akka-actor;2.0, doesn't match com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#anorm_2.9.1;2.0.3 / Number of dependencies = 0
-[debug] Sort done for : play#anorm_2.9.1;2.0.3
-[debug] Sort dependencies of : io.netty#netty;3.5.0.Final / Number of dependencies = 16
-[debug] Sort dependencies of : org.slf4j#slf4j-api;1.6.4 / Number of dependencies = 1
-[debug] Sort done for : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort dependencies of : org.slf4j#jul-to-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Sort dependencies of : org.slf4j#jcl-over-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Sort dependencies of : ch.qos.logback#logback-core;1.0.0 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-core;1.0.0
-[debug] Sort dependencies of : ch.qos.logback#logback-classic;1.0.0 / Number of dependencies = 24
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on com.h2database#h2;1.2.132, doesn't match com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort dependencies of : com.typesafe.akka#akka-actor;2.0.2 / Number of dependencies = 1
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-actor depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort dependencies of : com.typesafe.akka#akka-slf4j;2.0.2 / Number of dependencies = 5
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on ch.qos.logback#logback-classic;0.9.28, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort done for : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Sort dependencies of : com.google.guava#guava;10.0.1 / Number of dependencies = 3
-[debug] Sort dependencies of : com.google.code.findbugs#jsr305;1.3.9 / Number of dependencies = 0
-[debug] Sort done for : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.guava#guava;10.0.1
-[debug] Sort dependencies of : org.avaje#ebean;2.7.3 / Number of dependencies = 15
-[debug] Sort dependencies of : javax.transaction#jta;1.1 / Number of dependencies = 0
-[debug] Sort done for : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on org.scala-lang#scala-library;2.8.0, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on com.h2database#h2;1.3.153, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.avaje#ebean;2.7.3
-[debug] Sort dependencies of : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final / Number of dependencies = 0
-[debug] Sort done for : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Sort dependencies of : com.h2database#h2;1.3.158 / Number of dependencies = 0
-[debug] Sort done for : com.h2database#h2;1.3.158
-[debug] Sort dependencies of : org.scala-tools#scala-stm_2.9.1;0.5 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Sort dependencies of : com.jolbox#bonecp;0.7.1.RELEASE / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on com.google.guava#guava;r08, doesn't match com.google.guava#guava;10.0.1
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on org.slf4j#slf4j-api;1.5.10, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Sort dependencies of : org.yaml#snakeyaml;1.9 / Number of dependencies = 4
-[debug] Non matching revision detected when sorting.  org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort done for : org.yaml#snakeyaml;1.9
-[debug] Sort dependencies of : org.hibernate#hibernate-validator;4.2.0.Final / Number of dependencies = 12
-[debug] Sort dependencies of : javax.validation#validation-api;1.0.0.GA / Number of dependencies = 0
-[debug] Sort done for : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on com.h2database#h2;1.2.124, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Sort dependencies of : org.springframework#spring-context;3.0.7.RELEASE / Number of dependencies = 32
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on asm#asm;3.0, doesn't match asm#asm;3.3.1
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort dependencies of : org.springframework#spring-beans;3.0.7.RELEASE / Number of dependencies = 7
-[debug] Sort dependencies of : org.springframework#spring-core;3.0.7.RELEASE / Number of dependencies = 10
-[debug] Sort done for : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Sort dependencies of : joda-time#joda-time;2.0 / Number of dependencies = 2
-[debug] Sort dependencies of : org.joda#joda-convert;1.1 / Number of dependencies = 1
-[debug] Sort done for : org.joda#joda-convert;1.1
-[debug] Sort done for : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Sort dependencies of : javassist#javassist;3.12.1.GA / Number of dependencies = 1
-[debug] Sort done for : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
-[debug] Sort done for : commons-lang#commons-lang;2.6
-[debug] Sort dependencies of : com.ning#async-http-client;1.7.0 / Number of dependencies = 17
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on org.slf4j#slf4j-api;1.6.2, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on ch.qos.logback#logback-classic;0.9.26, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort dependencies of : commons-io#commons-io;2.0.1 / Number of dependencies = 1
-[debug] Sort done for : commons-io#commons-io;2.0.1
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-lang#commons-lang;2.4, doesn't match commons-lang#commons-lang;2.6
-[debug] Sort done for : com.ning#async-http-client;1.7.0
-[debug] Sort dependencies of : oauth.signpost#signpost-core;1.2.1.1 / Number of dependencies = 3
-[debug] Sort dependencies of : commons-codec#commons-codec;1.3 / Number of dependencies = 1
-[debug] Sort done for : commons-codec#commons-codec;1.3
-[debug] Sort done for : oauth.signpost#signpost-core;1.2.1.1
-[debug] Sort dependencies of : com.codahale#jerkson_2.9.1;0.5.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.9 / Number of dependencies = 0
-[debug] Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.9 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Sort done for : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Sort dependencies of : org.reflections#reflections;0.9.6 / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on com.google.guava#guava;10.0, doesn't match com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : org.reflections#reflections;0.9.6
-[debug] Sort dependencies of : javax.servlet#javax.servlet-api;3.0.1 / Number of dependencies = 0
-[debug] Sort done for : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Sort dependencies of : tyrex#tyrex;1.0.1 / Number of dependencies = 0
-[debug] Sort done for : tyrex#tyrex;1.0.1
-[debug] Sort dependencies of : jaxen#jaxen;1.1.3 / Number of dependencies = 7
-[debug] Sort done for : jaxen#jaxen;1.1.3
-[debug] Sort dependencies of : net.sf.ehcache#ehcache-core;2.5.0 / Number of dependencies = 19
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on javassist#javassist;3.4.GA, doesn't match javassist#javassist;3.12.1.GA
-[debug] Sort done for : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Sort done for : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#console_2.9.1;2.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#console_2.9.1;2.0.3
-[debug] Sort dependencies of : com.typesafe.config#config;0.2.1 / Number of dependencies = 3
-[debug] Sort done for : com.typesafe.config#config;0.2.1
-[debug] Sort dependencies of : rhino#js;1.7R2 / Number of dependencies = 0
-[debug] Sort done for : rhino#js;1.7R2
-[debug] Sort dependencies of : com.google.javascript#closure-compiler;r2079 / Number of dependencies = 9
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : org.pegdown#pegdown;1.1.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.parboiled#parboiled-core;1.0.2 / Number of dependencies = 0
-[debug] Sort done for : org.parboiled#parboiled-core;1.0.2
-[debug] Sort dependencies of : org.parboiled#parboiled-java;1.0.2 / Number of dependencies = 5
-[debug] Sort dependencies of : asm#asm;3.3.1 / Number of dependencies = 0
-[debug] Sort done for : asm#asm;3.3.1
-[debug] Sort dependencies of : asm#asm-util;3.3.1 / Number of dependencies = 1
-[debug] Sort dependencies of : asm#asm-tree;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Sort done for : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort dependencies of : asm#asm-analysis;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Sort done for : org.parboiled#parboiled-java;1.0.2
-[debug] Sort done for : org.pegdown#pegdown;1.1.0
-[debug] Sort dependencies of : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scalaz#scalaz-core_2.9.1;6.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Sort done for : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Sort dependencies of : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Sort done for : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Sort done for : play#sbt-plugin;2.0.3
-[debug] Module descriptor is processed : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Module descriptor is processed : play#anorm_2.9.1;2.0.3
-[debug] Module descriptor is processed : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Module descriptor is processed : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Module descriptor is processed : org.yaml#snakeyaml;1.9
-[debug] Module descriptor is processed : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Module descriptor is processed : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Module descriptor is processed : commons-lang#commons-lang;2.6
-[debug] Module descriptor is processed : com.ning#async-http-client;1.7.0
-[debug] Module descriptor is processed : oauth.signpost#signpost-core;1.2.1.1
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.3
-[debug] Module descriptor is processed : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Module descriptor is processed : org.reflections#reflections;0.9.6
-[debug] Module descriptor is processed : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Module descriptor is processed : tyrex#tyrex;1.0.1
-[debug] Module descriptor is processed : jaxen#jaxen;1.1.3
-[debug] Module descriptor is processed : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Module descriptor is processed : play#console_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.typesafe.config#config;0.2.1
-[debug] Module descriptor is processed : rhino#js;1.7R2
-[debug] Module descriptor is processed : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : org.pegdown#pegdown;1.1.0
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Module descriptor is processed : org.parboiled#parboiled-java;1.0.2
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Module descriptor is processed : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Module descriptor is processed : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Module descriptor is processed : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Module descriptor is processed : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT runtime-internal produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-runtime-internal.xml
-[debug] Nbr of module to sort : 97
-[debug] Sort dependencies of : play#sbt-plugin;2.0.3 / Number of dependencies = 14
-[debug] Sort dependencies of : org.scala-sbt#sbt_2.9.1;0.11.3 / Number of dependencies = 7
-[debug] Sort dependencies of : org.scala-sbt#main_2.9.1;0.11.3 / Number of dependencies = 11
-[debug] Sort dependencies of : org.scala-sbt#actions_2.9.1;0.11.3 / Number of dependencies = 18
-[debug] Sort dependencies of : org.scala-sbt#classfile_2.9.1;0.11.3 / Number of dependencies = 6
-[debug] Sort dependencies of : org.scala-sbt#io_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-sbt#control_2.9.1;0.11.3 / Number of dependencies = 1
-[debug] Sort dependencies of : org.scala-lang#scala-library;2.9.1 / Number of dependencies = 0
-[debug] Sort done for : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#interface;0.11.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#logging_2.9.1;0.11.3 / Number of dependencies = 6
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#process_2.9.1;0.11.3 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : jline#jline;0.9.94 / Number of dependencies = 1
-[debug] Sort done for : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#classpath_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Sort dependencies of : org.scala-sbt#launcher-interface_2.9.1;0.11.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-lang#scala-compiler;2.9.1 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-lang#scala-compiler;2.9.1
-[debug] Sort done for : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#incremental-compiler_2.9.1;0.11.3 / Number of dependencies = 8
-[debug] Sort dependencies of : org.scala-sbt#collections_2.9.1;0.11.3 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#api_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#persist_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0 / Number of dependencies = 1
-[debug] Sort done for : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Sort done for : org.scala-sbt#persist_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#compile_2.9.1;0.11.3 / Number of dependencies = 12
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#ivy_2.9.1;0.11.3 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.apache.ivy#ivy;2.2.0 / Number of dependencies = 15
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on commons-httpclient#commons-httpclient;3.0, doesn't match commons-httpclient#commons-httpclient;3.1
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on com.jcraft#jsch;0.1.31, doesn't match com.jcraft#jsch;0.1.46
-[debug] Non matching revision detected when sorting.  org.apache.ivy#ivy depends on commons-lang#commons-lang;2.5, doesn't match commons-lang#commons-lang;2.6
-[debug] Sort done for : org.apache.ivy#ivy;2.2.0
-[debug] Sort dependencies of : com.jcraft#jsch;0.1.46 / Number of dependencies = 2
-[debug] Sort done for : com.jcraft#jsch;0.1.46
-[debug] Sort dependencies of : commons-httpclient#commons-httpclient;3.1 / Number of dependencies = 3
-[debug] Sort dependencies of : commons-logging#commons-logging;1.0.4 / Number of dependencies = 4
-[debug] Sort done for : commons-logging#commons-logging;1.0.4
-[debug] Sort dependencies of : commons-codec#commons-codec;1.2 / Number of dependencies = 0
-[debug] Sort done for : commons-codec#commons-codec;1.2
-[debug] Sort done for : commons-httpclient#commons-httpclient;3.1
-[debug] Sort done for : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Sort done for : org.scala-sbt#compile_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#completion_2.9.1;0.11.3 / Number of dependencies = 7
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#completion_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#run_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#task-system_2.9.1;0.11.3 / Number of dependencies = 8
-[debug] Sort dependencies of : org.scala-sbt#tasks_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#tracking_2.9.1;0.11.3 / Number of dependencies = 3
-[debug] Sort dependencies of : org.scala-sbt#cache_2.9.1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Sort done for : org.scala-sbt#cache_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#testing_2.9.1;0.11.3 / Number of dependencies = 5
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scala-tools.testing#test-interface;0.5 / Number of dependencies = 0
-[debug] Sort done for : org.scala-tools.testing#test-interface;0.5
-[debug] Sort done for : org.scala-sbt#testing_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#actions_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#main_2.9.1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#compiler-interface;0.11.3 / Number of dependencies = 7
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#compiler-interface;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_8_2;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_2 depends on org.scala-lang#scala-library;2.8.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_2 depends on org.scala-lang#scala-compiler;2.8.2, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_8_1;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_1 depends on org.scala-lang#scala-library;2.8.1, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_8_1 depends on org.scala-lang#scala-compiler;2.8.1, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] Sort dependencies of : org.scala-sbt#precompiled-2_9_2;0.11.3 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_9_2 depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.scala-sbt#precompiled-2_9_2 depends on org.scala-lang#scala-compiler;2.9.2, doesn't match org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Sort done for : org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Sort dependencies of : play#play_2.9.1;2.0.3 / Number of dependencies = 38
-[debug] Sort dependencies of : play#templates_2.9.1;2.0.3 / Number of dependencies = 2
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0 / Number of dependencies = 3
-[debug] Sort dependencies of : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Non matching revision detected when sorting.  com.github.scala-incubator.io#scala-io-core_2.9.1 depends on com.typesafe.akka#akka-actor;2.0, doesn't match com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#anorm_2.9.1;2.0.3 / Number of dependencies = 0
-[debug] Sort done for : play#anorm_2.9.1;2.0.3
-[debug] Sort dependencies of : io.netty#netty;3.5.0.Final / Number of dependencies = 16
-[debug] Sort dependencies of : org.slf4j#slf4j-api;1.6.4 / Number of dependencies = 1
-[debug] Sort done for : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  io.netty#netty depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort dependencies of : org.slf4j#jul-to-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Sort dependencies of : org.slf4j#jcl-over-slf4j;1.6.4 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Sort dependencies of : ch.qos.logback#logback-core;1.0.0 / Number of dependencies = 9
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-core;1.0.0
-[debug] Sort dependencies of : ch.qos.logback#logback-classic;1.0.0 / Number of dependencies = 24
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on com.h2database#h2;1.2.132, doesn't match com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Non matching revision detected when sorting.  ch.qos.logback#logback-classic depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort dependencies of : com.typesafe.akka#akka-actor;2.0.2 / Number of dependencies = 1
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-actor depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : com.typesafe.akka#akka-actor;2.0.2
-[debug] Sort dependencies of : com.typesafe.akka#akka-slf4j;2.0.2 / Number of dependencies = 5
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on org.scala-lang#scala-library;2.9.2, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.typesafe.akka#akka-slf4j depends on ch.qos.logback#logback-classic;0.9.28, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort done for : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Sort dependencies of : com.google.guava#guava;10.0.1 / Number of dependencies = 3
-[debug] Sort dependencies of : com.google.code.findbugs#jsr305;1.3.9 / Number of dependencies = 0
-[debug] Sort done for : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.guava#guava;10.0.1
-[debug] Sort dependencies of : org.avaje#ebean;2.7.3 / Number of dependencies = 15
-[debug] Sort dependencies of : javax.transaction#jta;1.1 / Number of dependencies = 0
-[debug] Sort done for : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on org.scala-lang#scala-library;2.8.0, doesn't match org.scala-lang#scala-library;2.9.1
-[debug] Non matching revision detected when sorting.  org.avaje#ebean depends on com.h2database#h2;1.3.153, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.avaje#ebean;2.7.3
-[debug] Sort dependencies of : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final / Number of dependencies = 0
-[debug] Sort done for : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Sort dependencies of : com.h2database#h2;1.3.158 / Number of dependencies = 0
-[debug] Sort done for : com.h2database#h2;1.3.158
-[debug] Sort dependencies of : org.scala-tools#scala-stm_2.9.1;0.5 / Number of dependencies = 2
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Sort dependencies of : com.jolbox#bonecp;0.7.1.RELEASE / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on com.google.guava#guava;r08, doesn't match com.google.guava#guava;10.0.1
-[debug] Non matching revision detected when sorting.  com.jolbox#bonecp depends on org.slf4j#slf4j-api;1.5.10, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Sort done for : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Sort dependencies of : org.yaml#snakeyaml;1.9 / Number of dependencies = 4
-[debug] Non matching revision detected when sorting.  org.yaml#snakeyaml depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort done for : org.yaml#snakeyaml;1.9
-[debug] Sort dependencies of : org.hibernate#hibernate-validator;4.2.0.Final / Number of dependencies = 12
-[debug] Sort dependencies of : javax.validation#validation-api;1.0.0.GA / Number of dependencies = 0
-[debug] Sort done for : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Non matching revision detected when sorting.  org.hibernate#hibernate-validator depends on com.h2database#h2;1.2.124, doesn't match com.h2database#h2;1.3.158
-[debug] Sort done for : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Sort dependencies of : org.springframework#spring-context;3.0.7.RELEASE / Number of dependencies = 32
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on asm#asm;3.0, doesn't match asm#asm;3.3.1
-[debug] Non matching revision detected when sorting.  org.springframework#spring-context depends on joda-time#joda-time;1.6, doesn't match joda-time#joda-time;2.0
-[debug] Sort dependencies of : org.springframework#spring-beans;3.0.7.RELEASE / Number of dependencies = 7
-[debug] Sort dependencies of : org.springframework#spring-core;3.0.7.RELEASE / Number of dependencies = 10
-[debug] Non matching revision detected when sorting.  org.springframework#spring-core depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Sort done for : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Sort dependencies of : joda-time#joda-time;2.0 / Number of dependencies = 2
-[debug] Sort dependencies of : org.joda#joda-convert;1.1 / Number of dependencies = 1
-[debug] Sort done for : org.joda#joda-convert;1.1
-[debug] Sort done for : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Sort dependencies of : javassist#javassist;3.12.1.GA / Number of dependencies = 1
-[debug] Sort done for : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : commons-lang#commons-lang;2.6 / Number of dependencies = 1
-[debug] Sort done for : commons-lang#commons-lang;2.6
-[debug] Sort dependencies of : com.ning#async-http-client;1.7.0 / Number of dependencies = 17
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on org.slf4j#slf4j-api;1.6.2, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on ch.qos.logback#logback-classic;0.9.26, doesn't match ch.qos.logback#logback-classic;1.0.0
-[debug] Sort dependencies of : commons-io#commons-io;2.0.1 / Number of dependencies = 1
-[debug] Sort done for : commons-io#commons-io;2.0.1
-[debug] Module descriptor is processed : commons-httpclient#commons-httpclient;3.1
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-lang#commons-lang;2.4, doesn't match commons-lang#commons-lang;2.6
-[debug] Non matching revision detected when sorting.  com.ning#async-http-client depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : com.ning#async-http-client;1.7.0
-[debug] Sort dependencies of : oauth.signpost#signpost-core;1.2.1.1 / Number of dependencies = 3
-[debug] Non matching revision detected when sorting.  oauth.signpost#signpost-core depends on commons-codec#commons-codec;1.3, doesn't match commons-codec#commons-codec;1.2
-[debug] Sort dependencies of : commons-codec#commons-codec;1.3 / Number of dependencies = 1
-[debug] Sort done for : commons-codec#commons-codec;1.3
-[debug] Sort done for : oauth.signpost#signpost-core;1.2.1.1
-[debug] Sort dependencies of : com.codahale#jerkson_2.9.1;0.5.0 / Number of dependencies = 4
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-core-asl;1.9.9 / Number of dependencies = 0
-[debug] Sort done for : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort dependencies of : org.codehaus.jackson#jackson-mapper-asl;1.9.9 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Sort done for : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Sort done for : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Sort dependencies of : org.reflections#reflections;0.9.6 / Number of dependencies = 9
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on com.google.guava#guava;10.0, doesn't match com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  org.reflections#reflections depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : org.reflections#reflections;0.9.6
-[debug] Sort dependencies of : javax.servlet#javax.servlet-api;3.0.1 / Number of dependencies = 0
-[debug] Sort done for : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Sort dependencies of : tyrex#tyrex;1.0.1 / Number of dependencies = 0
-[debug] Sort done for : tyrex#tyrex;1.0.1
-[debug] Sort dependencies of : jaxen#jaxen;1.1.3 / Number of dependencies = 7
-[debug] Sort done for : jaxen#jaxen;1.1.3
-[debug] Sort dependencies of : net.sf.ehcache#ehcache-core;2.5.0 / Number of dependencies = 19
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on org.slf4j#slf4j-api;1.6.1, doesn't match org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on javassist#javassist;3.4.GA, doesn't match javassist#javassist;3.12.1.GA
-[debug] Non matching revision detected when sorting.  net.sf.ehcache#ehcache-core depends on commons-logging#commons-logging;1.1.1, doesn't match commons-logging#commons-logging;1.0.4
-[debug] Sort done for : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Sort done for : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Sort dependencies of : play#console_2.9.1;2.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Sort done for : play#console_2.9.1;2.0.3
-[debug] Sort dependencies of : com.typesafe.config#config;0.2.1 / Number of dependencies = 3
-[debug] Sort done for : com.typesafe.config#config;0.2.1
-[debug] Sort dependencies of : rhino#js;1.7R2 / Number of dependencies = 0
-[debug] Sort done for : rhino#js;1.7R2
-[debug] Sort dependencies of : com.google.javascript#closure-compiler;r2079 / Number of dependencies = 9
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Sort done for : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Sort dependencies of : org.pegdown#pegdown;1.1.0 / Number of dependencies = 4
-[debug] Sort dependencies of : org.parboiled#parboiled-core;1.0.2 / Number of dependencies = 0
-[debug] Sort done for : org.parboiled#parboiled-core;1.0.2
-[debug] Sort dependencies of : org.parboiled#parboiled-java;1.0.2 / Number of dependencies = 5
-[debug] Sort dependencies of : asm#asm;3.3.1 / Number of dependencies = 0
-[debug] Sort done for : asm#asm;3.3.1
-[debug] Sort dependencies of : asm#asm-util;3.3.1 / Number of dependencies = 1
-[debug] Sort dependencies of : asm#asm-tree;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Sort done for : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort dependencies of : asm#asm-analysis;3.3.1 / Number of dependencies = 1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Sort done for : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Sort done for : org.parboiled#parboiled-java;1.0.2
-[debug] Sort done for : org.pegdown#pegdown;1.1.0
-[debug] Sort dependencies of : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2 / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort dependencies of : org.scalaz#scalaz-core_2.9.1;6.0.3 / Number of dependencies = 1
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Sort done for : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Sort done for : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Sort dependencies of : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE / Number of dependencies = 3
-[debug] Module descriptor is processed : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Sort done for : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Sort done for : play#sbt-plugin;2.0.3
-[debug] Module descriptor is processed : play#play_2.9.1;2.0.3
-[debug] Module descriptor is processed : play#templates_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-file_2.9.1;0.4.0
-[debug] Module descriptor is processed : com.github.scala-incubator.io#scala-io-core_2.9.1;0.4.0
-[debug] Module descriptor is processed : org.scala-lang#scala-library;2.9.1
-[debug] Module descriptor is processed : com.github.jsuereth.scala-arm#scala-arm_2.9.1;1.1
-[debug] Module descriptor is processed : com.typesafe.akka#akka-actor;2.0.2
-[debug] Module descriptor is processed : play#anorm_2.9.1;2.0.3
-[debug] Module descriptor is processed : io.netty#netty;3.5.0.Final
-[debug] Module descriptor is processed : org.slf4j#slf4j-api;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jul-to-slf4j;1.6.4
-[debug] Module descriptor is processed : org.slf4j#jcl-over-slf4j;1.6.4
-[debug] Module descriptor is processed : ch.qos.logback#logback-core;1.0.0
-[debug] Module descriptor is processed : ch.qos.logback#logback-classic;1.0.0
-[debug] Module descriptor is processed : com.typesafe.akka#akka-slf4j;2.0.2
-[debug] Module descriptor is processed : com.google.guava#guava;10.0.1
-[debug] Module descriptor is processed : com.google.code.findbugs#jsr305;1.3.9
-[debug] Module descriptor is processed : org.avaje#ebean;2.7.3
-[debug] Module descriptor is processed : org.hibernate.javax.persistence#hibernate-jpa-2.0-api;1.0.1.Final
-[debug] Module descriptor is processed : com.h2database#h2;1.3.158
-[debug] Module descriptor is processed : org.scala-tools#scala-stm_2.9.1;0.5
-[debug] Module descriptor is processed : com.jolbox#bonecp;0.7.1.RELEASE
-[debug] Module descriptor is processed : org.yaml#snakeyaml;1.9
-[debug] Module descriptor is processed : org.hibernate#hibernate-validator;4.2.0.Final
-[debug] Module descriptor is processed : javax.validation#validation-api;1.0.0.GA
-[debug] Module descriptor is processed : org.springframework#spring-context;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-core;3.0.7.RELEASE
-[debug] Module descriptor is processed : org.springframework#spring-beans;3.0.7.RELEASE
-[debug] Module descriptor is processed : joda-time#joda-time;2.0
-[debug] Module descriptor is processed : org.joda#joda-convert;1.1
-[debug] Module descriptor is processed : javassist#javassist;3.12.1.GA
-[debug] Module descriptor is processed : commons-lang#commons-lang;2.6
-[debug] Module descriptor is processed : com.ning#async-http-client;1.7.0
-[debug] Module descriptor is processed : oauth.signpost#signpost-core;1.2.1.1
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.3
-[debug] Module descriptor is processed : com.codahale#jerkson_2.9.1;0.5.0
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-core-asl;1.9.9
-[debug] Module descriptor is processed : org.codehaus.jackson#jackson-mapper-asl;1.9.9
-[debug] Module descriptor is processed : org.reflections#reflections;0.9.6
-[debug] Module descriptor is processed : javax.servlet#javax.servlet-api;3.0.1
-[debug] Module descriptor is processed : javax.transaction#jta;1.1
-[debug] Module descriptor is processed : tyrex#tyrex;1.0.1
-[debug] Module descriptor is processed : jaxen#jaxen;1.1.3
-[debug] Module descriptor is processed : net.sf.ehcache#ehcache-core;2.5.0
-[debug] Module descriptor is processed : play#console_2.9.1;2.0.3
-[debug] Module descriptor is processed : com.typesafe.config#config;0.2.1
-[debug] Module descriptor is processed : rhino#js;1.7R2
-[debug] Module descriptor is processed : com.google.javascript#closure-compiler;r2079
-[debug] Module descriptor is processed : org.pegdown#pegdown;1.1.0
-[debug] Module descriptor is processed : org.parboiled#parboiled-core;1.0.2
-[debug] Module descriptor is processed : org.parboiled#parboiled-java;1.0.2
-[debug] Module descriptor is processed : asm#asm;3.3.1
-[debug] Module descriptor is processed : asm#asm-util;3.3.1
-[debug] Module descriptor is processed : asm#asm-tree;3.3.1
-[debug] Module descriptor is processed : asm#asm-analysis;3.3.1
-[debug] Module descriptor is processed : com.typesafe.sbteclipse#sbteclipse-core;2.1.0-M2
-[debug] Module descriptor is processed : org.scalaz#scalaz-core_2.9.1;6.0.3
-[debug] Module descriptor is processed : com.github.mpeltonen#sbt-idea;1.1.0-M2-TYPESAFE
-[debug] Module descriptor is processed : commons-io#commons-io;2.0.1
-[debug] Module descriptor is processed : org.scala-sbt#sbt_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#main_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#actions_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classfile_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#io_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#control_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#logging_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#process_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#classpath_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#launcher-interface_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-lang#scala-compiler;2.9.1
-[debug] Module descriptor is processed : org.scala-sbt#incremental-compiler_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#collections_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#api_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#persist_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-tools.sbinary#sbinary_2.9.0;0.4.0
-[debug] Module descriptor is processed : org.scala-sbt#compile_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#ivy_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.apache.ivy#ivy;2.2.0
-[debug] Module descriptor is processed : com.jcraft#jsch;0.1.46
-[debug] Module descriptor is processed : commons-httpclient#commons-httpclient;3.1
-[debug] Module descriptor is processed : commons-logging#commons-logging;1.0.4
-[debug] Module descriptor is processed : commons-codec#commons-codec;1.2
-[debug] Module descriptor is processed : org.scala-sbt#completion_2.9.1;0.11.3
-[debug] Module descriptor is processed : jline#jline;0.9.94
-[debug] Module descriptor is processed : org.scala-sbt#run_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#task-system_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tasks_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#tracking_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#cache_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#testing_2.9.1;0.11.3
-[debug] Module descriptor is processed : org.scala-tools.testing#test-interface;0.5
-[debug] Module descriptor is processed : org.scala-sbt#compiler-interface;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_8_2;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_8_1;0.11.3
-[debug] Module descriptor is processed : org.scala-sbt#precompiled-2_9_2;0.11.3
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT test-internal produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-test-internal.xml
-[debug] Nbr of module to sort : 0
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT plugin produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-plugin.xml
-[debug] Nbr of module to sort : 0
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT sources produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-sources.xml
-[debug] Nbr of module to sort : 0
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT docs produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-docs.xml
-[debug] Nbr of module to sort : 0
-[debug] 	report for default#default-d02bd6;0.1-SNAPSHOT pom produced in /Users/aotokage/opt/play/framework/../repository/cache/default-default-d02bd6-pom.xml
-[debug] 	resolve done (4894ms resolve - 93ms download)
-[info] Done updating.
--- a/project/target/streams/compile/compile/$global/out	Mon Oct 01 17:11:46 2012 +0900
+++ b/project/target/streams/compile/compile/$global/out	Mon Oct 01 18:51:30 2012 +0900
@@ -1,27 +1,15 @@
 [debug] 
 [debug] Initial source changes: 
 [debug] 	removed:Set()
-[debug] 	added: Set(/Users/aotokage/workspace/Consensus/project/Build.scala)
+[debug] 	added: Set()
 [debug] 	modified: Set()
 [debug] Removed products: Set()
 [debug] Modified external sources: Set()
 [debug] Modified binary dependencies: Set()
-[debug] Initial directly invalidated sources: Set(/Users/aotokage/workspace/Consensus/project/Build.scala)
+[debug] Initial directly invalidated sources: Set()
 [debug] 
 [debug] Sources indirectly invalidated by:
 [debug] 	product: Set()
 [debug] 	binary dep: Set()
 [debug] 	external source: Set()
-[debug] Initially invalidated: Set(/Users/aotokage/workspace/Consensus/project/Build.scala)
-[info] Compiling 1 Scala source to /Users/aotokage/workspace/Consensus/project/target/scala-2.9.1/sbt-0.11.3/classes...
-[debug] Interfacing (CompilerInterface) with Scala compiler version 2.9.1.final
-[debug] Calling Scala compiler with arguments  (CompilerInterface):
-[debug] 	-d
-[debug] 	/Users/aotokage/workspace/Consensus/project/target/scala-2.9.1/sbt-0.11.3/classes
-[debug] 	-bootclasspath
-[debug] 	/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar:/Users/aotokage/opt/play/framework/sbt/boot/scala-2.9.1/lib/scala-library.jar
-[debug] 	-classpath
-[debug] 	/Users/aotokage/workspace/Consensus/project/target/scala-2.9.1/sbt-0.11.3/classes:/Users/aotokage/opt/play/repository/cache/scala_2.9.1/sbt_0.11.3/play/sbt-plugin/jars/sbt-plugin-2.0.3.jar:/Users/aotokage/opt/play/repository/local/play/play_2.9.1/2.0.3/jars/play_2.9.1.jar:/Users/aotokage/opt/play/repository/local/play/templates_2.9.1/2.0.3/jars/templates_2.9.1.jar:/Users/aotokage/opt/play/repository/local/com.github.scala-incubator.io/scala-io-file_2.9.1/0.4.0/jars/scala-io-file_2.9.1.jar:/Users/aotokage/opt/play/repository/local/com.github.scala-incubator.io/scala-io-core_2.9.1/0.4.0/jars/scala-io-core_2.9.1.jar:/Users/aotokage/opt/play/repository/local/com.github.jsuereth.scala-arm/scala-arm_2.9.1/1.1/jars/scala-arm_2.9.1.jar:/Users/aotokage/opt/play/repository/local/com.typesafe.akka/akka-actor/2.0.2/jars/akka-actor.jar:/Users/aotokage/opt/play/repository/local/play/anorm_2.9.1/2.0.3/jars/anorm_2.9.1.jar:/Users/aotokage/opt/play/repository/local/io.netty/netty/3.5.0.Final/bundles/netty.jar:/Users/aotokage/opt/play/repository/local/org.slf4j/slf4j-api/1.6.4/jars/slf4j-api.jar:/Users/aotokage/opt/play/repository/local/org.slf4j/jul-to-slf4j/1.6.4/jars/jul-to-slf4j.jar:/Users/aotokage/opt/play/repository/local/org.slf4j/jcl-over-slf4j/1.6.4/jars/jcl-over-slf4j.jar:/Users/aotokage/opt/play/repository/local/ch.qos.logback/logback-core/1.0.0/jars/logback-core.jar:/Users/aotokage/opt/play/repository/local/ch.qos.logback/logback-classic/1.0.0/jars/logback-classic.jar:/Users/aotokage/opt/play/repository/local/com.typesafe.akka/akka-slf4j/2.0.2/jars/akka-slf4j.jar:/Users/aotokage/opt/play/repository/local/com.google.guava/guava/10.0.1/jars/guava.jar:/Users/aotokage/opt/play/repository/local/com.google.code.findbugs/jsr305/1.3.9/jars/jsr305.jar:/Users/aotokage/opt/play/repository/local/org.avaje/ebean/2.7.3/jars/ebean.jar:/Users/aotokage/opt/play/repository/local/org.hibernate.javax.persistence/hibernate-jpa-2.0-api/1.0.1.Final/jars/hibernate-jpa-2.0-api.jar:/Users/aotokage/opt/play/repository/local/com.h2database/h2/1.3.158/jars/h2.jar:/Users/aotokage/opt/play/repository/local/org.scala-tools/scala-stm_2.9.1/0.5/jars/scala-stm_2.9.1.jar:/Users/aotokage/opt/play/repository/local/com.jolbox/bonecp/0.7.1.RELEASE/bundles/bonecp.jar:/Users/aotokage/opt/play/repository/local/org.yaml/snakeyaml/1.9/bundles/snakeyaml.jar:/Users/aotokage/opt/play/repository/local/org.hibernate/hibernate-validator/4.2.0.Final/jars/hibernate-validator.jar:/Users/aotokage/opt/play/repository/local/javax.validation/validation-api/1.0.0.GA/jars/validation-api.jar:/Users/aotokage/opt/play/repository/local/org.springframework/spring-context/3.0.7.RELEASE/jars/spring-context.jar:/Users/aotokage/opt/play/repository/local/org.springframework/spring-core/3.0.7.RELEASE/jars/spring-core.jar:/Users/aotokage/opt/play/repository/local/org.springframework/spring-beans/3.0.7.RELEASE/jars/spring-beans.jar:/Users/aotokage/opt/play/repository/local/joda-time/joda-time/2.0/jars/joda-time.jar:/Users/aotokage/opt/play/repository/local/org.joda/joda-convert/1.1/jars/joda-convert.jar:/Users/aotokage/opt/play/repository/local/javassist/javassist/3.12.1.GA/jars/javassist.jar:/Users/aotokage/opt/play/repository/local/commons-lang/commons-lang/2.6/jars/commons-lang.jar:/Users/aotokage/opt/play/repository/local/com.ning/async-http-client/1.7.0/jars/async-http-client.jar:/Users/aotokage/opt/play/repository/local/oauth.signpost/signpost-core/1.2.1.1/jars/signpost-core.jar:/Users/aotokage/opt/play/repository/local/commons-codec/commons-codec/1.3/jars/commons-codec.jar:/Users/aotokage/opt/play/repository/local/com.codahale/jerkson_2.9.1/0.5.0/jars/jerkson_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.codehaus.jackson/jackson-core-asl/1.9.9/jars/jackson-core-asl.jar:/Users/aotokage/opt/play/repository/local/org.codehaus.jackson/jackson-mapper-asl/1.9.9/jars/jackson-mapper-asl.jar:/Users/aotokage/opt/play/repository/local/org.reflections/reflections/0.9.6/jars/reflections.jar:/Users/aotokage/opt/play/repository/local/javax.servlet/javax.servlet-api/3.0.1/jars/javax.servlet-api.jar:/Users/aotokage/opt/play/repository/local/javax.transaction/jta/1.1/jars/jta.jar:/Users/aotokage/opt/play/repository/local/tyrex/tyrex/1.0.1/jars/tyrex.jar:/Users/aotokage/opt/play/repository/local/jaxen/jaxen/1.1.3/jars/jaxen.jar:/Users/aotokage/opt/play/repository/local/net.sf.ehcache/ehcache-core/2.5.0/jars/ehcache-core.jar:/Users/aotokage/opt/play/repository/local/play/console_2.9.1/2.0.3/jars/console_2.9.1.jar:/Users/aotokage/opt/play/repository/local/com.typesafe.config/config/0.2.1/jars/config.jar:/Users/aotokage/opt/play/repository/local/rhino/js/1.7R2/jars/js.jar:/Users/aotokage/opt/play/repository/local/com.google.javascript/closure-compiler/r2079/jars/closure-compiler.jar:/Users/aotokage/opt/play/repository/local/org.pegdown/pegdown/1.1.0/jars/pegdown.jar:/Users/aotokage/opt/play/repository/local/org.parboiled/parboiled-core/1.0.2/jars/parboiled-core.jar:/Users/aotokage/opt/play/repository/local/org.parboiled/parboiled-java/1.0.2/jars/parboiled-java.jar:/Users/aotokage/opt/play/repository/local/asm/asm/3.3.1/jars/asm.jar:/Users/aotokage/opt/play/repository/local/asm/asm-util/3.3.1/jars/asm-util.jar:/Users/aotokage/opt/play/repository/local/asm/asm-tree/3.3.1/jars/asm-tree.jar:/Users/aotokage/opt/play/repository/local/asm/asm-analysis/3.3.1/jars/asm-analysis.jar:/Users/aotokage/opt/play/repository/cache/scala_2.9.1/sbt_0.11.3/com.typesafe.sbteclipse/sbteclipse-core/jars/sbteclipse-core-2.1.0-M2.jar:/Users/aotokage/opt/play/repository/local/org.scalaz/scalaz-core_2.9.1/6.0.3/jars/scalaz-core_2.9.1.jar:/Users/aotokage/opt/play/repository/cache/scala_2.9.1/sbt_0.11.3/com.github.mpeltonen/sbt-idea/jars/sbt-idea-1.1.0-M2-TYPESAFE.jar:/Users/aotokage/opt/play/repository/local/commons-io/commons-io/2.0.1/jars/commons-io.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/sbt_2.9.1/0.11.3/jars/sbt_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/main_2.9.1/0.11.3/jars/main_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/actions_2.9.1/0.11.3/jars/actions_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/classfile_2.9.1/0.11.3/jars/classfile_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/io_2.9.1/0.11.3/jars/io_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/control_2.9.1/0.11.3/jars/control_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/interface/0.11.3/jars/interface.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/logging_2.9.1/0.11.3/jars/logging_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/process_2.9.1/0.11.3/jars/process_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/classpath_2.9.1/0.11.3/jars/classpath_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/launcher-interface_2.9.1/0.11.3/jars/launcher-interface_2.9.1.jar:/Users/aotokage/opt/play/framework/sbt/boot/scala-2.9.1/lib/scala-compiler.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/incremental-compiler_2.9.1/0.11.3/jars/incremental-compiler_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/collections_2.9.1/0.11.3/jars/collections_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/api_2.9.1/0.11.3/jars/api_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/persist_2.9.1/0.11.3/jars/persist_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-tools.sbinary/sbinary_2.9.0/0.4.0/jars/sbinary_2.9.0.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/compile_2.9.1/0.11.3/jars/compile_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/ivy_2.9.1/0.11.3/jars/ivy_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.apache.ivy/ivy/2.2.0/jars/ivy.jar:/Users/aotokage/opt/play/repository/local/com.jcraft/jsch/0.1.46/jars/jsch.jar:/Users/aotokage/opt/play/repository/local/commons-httpclient/commons-httpclient/3.1/jars/commons-httpclient.jar:/Users/aotokage/opt/play/repository/local/commons-logging/commons-logging/1.0.4/jars/commons-logging.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/completion_2.9.1/0.11.3/jars/completion_2.9.1.jar:/Users/aotokage/opt/play/repository/local/jline/jline/0.9.94/jars/jline.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/run_2.9.1/0.11.3/jars/run_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/task-system_2.9.1/0.11.3/jars/task-system_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/tasks_2.9.1/0.11.3/jars/tasks_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/tracking_2.9.1/0.11.3/jars/tracking_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/cache_2.9.1/0.11.3/jars/cache_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/testing_2.9.1/0.11.3/jars/testing_2.9.1.jar:/Users/aotokage/opt/play/repository/local/org.scala-tools.testing/test-interface/0.5/jars/test-interface.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/compiler-interface/0.11.3/jars/compiler-interface-bin.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/compiler-interface/0.11.3/jars/compiler-interface-src.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/precompiled-2_8_2/0.11.3/jars/compiler-interface-bin.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/precompiled-2_8_1/0.11.3/jars/compiler-interface-bin.jar:/Users/aotokage/opt/play/repository/local/org.scala-sbt/precompiled-2_9_2/0.11.3/jars/compiler-interface-bin.jar
-[debug] 	/Users/aotokage/workspace/Consensus/project/Build.scala
-[debug] 	Invalidated direct: Set()
-[debug] Incrementally invalidated: Set()
+[debug] Initially invalidated: Set()
--- a/target/.history	Mon Oct 01 17:11:46 2012 +0900
+++ b/target/.history	Mon Oct 01 18:51:30 2012 +0900
@@ -1,2 +1,4 @@
 compile
 ~ run
+run
+~ run 
Binary file target/scala-2.9.1/cache/compile/compile has changed
Binary file target/scala-2.9.1/cache/compile/copy-resources has changed
Binary file target/scala-2.9.1/cache/update/output has changed
Binary file target/scala-2.9.1/classes/Routes$.class has changed
Binary file target/scala-2.9.1/classes/controllers/Application.class has changed
--- a/target/scala-2.9.1/classes/routes	Mon Oct 01 17:11:46 2012 +0900
+++ b/target/scala-2.9.1/classes/routes	Mon Oct 01 18:51:30 2012 +0900
@@ -5,7 +5,7 @@
 # Home page
 GET		/							controllers.Application.index()
 POST	/db/data/node				controllers.Application.hello()
-GET		/users/create/:name			controllers.User.create(name: String)
+PUT		/users/create/:name			controllers.User.create(name: String)
 
 
 # Map static resources from the /public folder to the /assets URL path
Binary file target/scala-2.9.1/classes_managed/Routes$.class has changed
--- a/target/scala-2.9.1/src_managed/main/controllers/routes.java	Mon Oct 01 17:11:46 2012 +0900
+++ b/target/scala-2.9.1/src_managed/main/controllers/routes.java	Mon Oct 01 18:51:30 2012 +0900
@@ -1,6 +1,6 @@
 // @SOURCE:/Users/aotokage/workspace/Consensus/conf/routes
-// @HASH:22974fd16cc93a09bd1194651704cb9528e9acfd
-// @DATE:Mon Oct 01 17:09:21 JST 2012
+// @HASH:9ae2edd0f778289ab8b7e3e21d5b4aa0915c955d
+// @DATE:Mon Oct 01 17:13:28 JST 2012
 
 package controllers;
 
--- a/target/scala-2.9.1/src_managed/main/routes_reverseRouting.scala	Mon Oct 01 17:11:46 2012 +0900
+++ b/target/scala-2.9.1/src_managed/main/routes_reverseRouting.scala	Mon Oct 01 18:51:30 2012 +0900
@@ -1,6 +1,6 @@
 // @SOURCE:/Users/aotokage/workspace/Consensus/conf/routes
-// @HASH:22974fd16cc93a09bd1194651704cb9528e9acfd
-// @DATE:Mon Oct 01 17:09:21 JST 2012
+// @HASH:9ae2edd0f778289ab8b7e3e21d5b4aa0915c955d
+// @DATE:Mon Oct 01 17:13:28 JST 2012
 
 import play.core._
 import play.core.Router._
@@ -67,7 +67,7 @@
  
 // @LINE:8
 def create(name:String) = {
-   Call("GET", "/users/create/" + implicitly[PathBindable[String]].unbind("name", name))
+   Call("PUT", "/users/create/" + implicitly[PathBindable[String]].unbind("name", name))
 }
                                                         
 
@@ -152,7 +152,7 @@
    "controllers.User.create",
    """
       function(name) {
-      return _wA({method:"GET", url:"/users/create/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("name", name)})
+      return _wA({method:"PUT", url:"/users/create/" + (""" + implicitly[PathBindable[String]].javascriptUnbind + """)("name", name)})
       }
    """
 )
--- a/target/scala-2.9.1/src_managed/main/routes_routing.scala	Mon Oct 01 17:11:46 2012 +0900
+++ b/target/scala-2.9.1/src_managed/main/routes_routing.scala	Mon Oct 01 18:51:30 2012 +0900
@@ -1,6 +1,6 @@
 // @SOURCE:/Users/aotokage/workspace/Consensus/conf/routes
-// @HASH:22974fd16cc93a09bd1194651704cb9528e9acfd
-// @DATE:Mon Oct 01 17:09:21 JST 2012
+// @HASH:9ae2edd0f778289ab8b7e3e21d5b4aa0915c955d
+// @DATE:Mon Oct 01 17:13:28 JST 2012
 
 import play.core._
 import play.core.Router._
@@ -23,13 +23,13 @@
                     
 
 // @LINE:8
-val controllers_User_create2 = Route("GET", PathPattern(List(StaticPart("/users/create/"),DynamicPart("name", """[^/]+"""))))
+val controllers_User_create2 = Route("PUT", PathPattern(List(StaticPart("/users/create/"),DynamicPart("name", """[^/]+"""))))
                     
 
 // @LINE:12
 val controllers_Assets_at3 = Route("GET", PathPattern(List(StaticPart("/assets/"),DynamicPart("file", """.+"""))))
                     
-def documentation = List(("""GET""","""/""","""controllers.Application.index()"""),("""POST""","""/db/data/node""","""controllers.Application.hello()"""),("""GET""","""/users/create/$name<[^/]+>""","""controllers.User.create(name:String)"""),("""GET""","""/assets/$file<.+>""","""controllers.Assets.at(path:String = "/public", file:String)"""))
+def documentation = List(("""GET""","""/""","""controllers.Application.index()"""),("""POST""","""/db/data/node""","""controllers.Application.hello()"""),("""PUT""","""/users/create/$name<[^/]+>""","""controllers.User.create(name:String)"""),("""GET""","""/assets/$file<.+>""","""controllers.Assets.at(path:String = "/public", file:String)"""))
              
     
 def routes:PartialFunction[RequestHeader,Handler] = {        
--- a/target/streams/compile/compile/$global/out	Mon Oct 01 17:11:46 2012 +0900
+++ b/target/streams/compile/compile/$global/out	Mon Oct 01 18:51:30 2012 +0900
@@ -1,1 +0,0 @@
-[info] Compiling 1 Java source to /Users/aotokage/workspace/Consensus/target/scala-2.9.1/classes...