├── .gitignore ├── LICENSE ├── activator.properties ├── project └── build.properties ├── src └── main │ └── java │ └── HelloAkka.java └── tutorial └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka-java8/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka-java8/HEAD/LICENSE -------------------------------------------------------------------------------- /activator.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka-java8/HEAD/activator.properties -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.1 2 | -------------------------------------------------------------------------------- /src/main/java/HelloAkka.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka-java8/HEAD/src/main/java/HelloAkka.java -------------------------------------------------------------------------------- /tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-hello-akka-java8/HEAD/tutorial/index.html --------------------------------------------------------------------------------