├── .gitignore ├── COPYING ├── LICENSE ├── activator.properties ├── project └── build.properties ├── src ├── main │ ├── java │ │ └── HelloAkkaJava.java │ └── scala │ │ └── HelloAkkaScala.scala └── test │ ├── java │ └── HelloAkkaTest.java │ └── scala │ └── HelloAkkaSpec.scala └── tutorial └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka/HEAD/LICENSE -------------------------------------------------------------------------------- /activator.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka/HEAD/activator.properties -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.11 2 | -------------------------------------------------------------------------------- /src/main/java/HelloAkkaJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka/HEAD/src/main/java/HelloAkkaJava.java -------------------------------------------------------------------------------- /src/main/scala/HelloAkkaScala.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka/HEAD/src/main/scala/HelloAkkaScala.scala -------------------------------------------------------------------------------- /src/test/java/HelloAkkaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka/HEAD/src/test/java/HelloAkkaTest.java -------------------------------------------------------------------------------- /src/test/scala/HelloAkkaSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka/HEAD/src/test/scala/HelloAkkaSpec.scala -------------------------------------------------------------------------------- /tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka/HEAD/tutorial/index.html --------------------------------------------------------------------------------