Updated to latest config lib and changed how reference config files are loaded.

* Config lib 4f3a91f
* All reference files named reference.conf, all will be loaded
* Usage of ConfigFactor.load as default way
* Extensions use same config as ActorSystem.settings.config
This commit is contained in:
Patrik Nordwall 2011-11-29 11:50:22 +01:00
parent 8ab25a23ac
commit b56201ab7f
72 changed files with 2361 additions and 977 deletions

View file

@ -11,7 +11,6 @@ import akka.actor.{ ActorSystem, ActorSystemImpl }
import java.io.{ ObjectInputStream, ByteArrayInputStream, ByteArrayOutputStream, ObjectOutputStream }
import akka.actor.DeadLetterActorRef
import com.typesafe.config.ConfigFactory
import com.typesafe.config.ConfigParseOptions
object SerializeSpec {
@ -32,7 +31,7 @@ object SerializeSpec {
}
}
}
""", ConfigParseOptions.defaults)
""")
@BeanInfo
case class Address(no: String, street: String, city: String, zip: String) { def this() = this("", "", "", "") }