Merge branch 'master' of git@github.com:jboner/akka

This commit is contained in:
Jonas Bonér 2010-08-12 14:28:57 +02:00
commit 4dc1eaece4
3 changed files with 7 additions and 5 deletions

View file

@ -34,6 +34,7 @@ trait ThreadPoolBuilder {
def buildThreadPool(): Unit = synchronized {
ensureNotActive
inProcessOfBuilding = false
threadPoolBuilder.allowCoreThreadTimeOut(true)
if (boundedExecutorBound > 0) {
val boundedExecutor = new BoundedExecutorDecorator(threadPoolBuilder, boundedExecutorBound)
boundedExecutorBound = -1

View file

@ -269,16 +269,17 @@ class AkkaParentProject(info: ProjectInfo) extends DefaultProject(info) {
" dist/akka-jta_%s-%s.jar".format(buildScalaVersion, version)
)
override def runClasspath = super.runClasspath +++
descendents(info.projectPath / "config", "*")
//Exclude slf4j1.5.11 from the classpath, it's conflicting...
override def fullClasspath(config: Configuration): PathFinder = {
super.fullClasspath(config) --- (super.fullClasspath(config) ** "slf4j*1.5.11.jar")
super.fullClasspath(config) ---
(super.fullClasspath(config) ** "slf4j*1.5.11.jar")
}
override def mainResources = super.mainResources +++
descendents(info.projectPath / "config", "*")
descendents(info.projectPath / "config", "*") ---
(info.projectPath / "config" / "logback-test.xml")
override def testResources = super.testResources +++ (info.projectPath / "config" / "logback-test.xml")
// ------------------------------------------------------------
// publishing