Skip to content

Instantly share code, notes, and snippets.

@blt
Created April 5, 2011 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blt/904060 to your computer and use it in GitHub Desktop.
Save blt/904060 to your computer and use it in GitHub Desktop.
import akka.actor.Actor._
import sbt._
class ChatServerProject(info: ProjectInfo)
extends DefaultProject(info)
with AkkaProject
{
val akkaStm = akkaModule("stm")
val akkaTypedActor = akkaModule("typed-actor")
}
@blt
Copy link
Author

blt commented Apr 5, 2011

My compilation results:

> compile
[info] 
[info] == compile ==
[info]   Source analysis: 1 new/modified, 0 indirectly invalidated, 0 removed.
[info] Compiling main sources...
[error] /home/blt/projects/chatserver/src/main/scala/ChatServer.scala:1: not found: value akka
[error] import akka.actor.Actor._
[error]        ^
[error] one error found
[info] == compile ==
[error] Error running compile: Compilation failed
[info] 
[info] Total time: 1 s, completed Apr 5, 2011 1:28:21 PM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment