0
votes
2answers
46 views

setting up akka sbt file

I am trying to use scala -akka from sbt my sbt file looks like this: name := "hello" version := "1.0" scalaVersion := "2.9.1" resolvers += "akka" at "http://repo.akka.io/snapshots" ...
0
votes
1answer
37 views

akka.dispatch.Future not found

I am trying to import akka.dispatch.Future in my class but the compiler is unable to find that particular package. The one that it's able to find is akka.dispatch.Futures. Can somebody point out what ...
0
votes
0answers
115 views

Simplest way to run spray.io spray-can on Heroku

I'm new in Scala and SBT. I want to run simple hello-world http server on Heroku with Spray and Akka. Spray-can's documentation at http://spray.io/documentation/spray-can/examples/ tells that simple ...
1
vote
1answer
146 views

Setting up Akka project in Eclispe

I am trying to create a new Akka project in Eclipse. I followed the steps here But I am receiving errors about Akka dependencies not being found. Would appreciate your help. This is the output. ...
1
vote
0answers
163 views

Creating an Akka fat Jar

I need to create a Nutch plugin that communicate with some external applications using Akka. In order to do this, I need to package the plugin as a fat Jar - I am using sbt-assembly version 0.8.3. ...
0
votes
1answer
75 views

akka-sbt-plugin specifying outputDirectory in build.sbt

I have a build.sbt with the following settings import akka.sbt.AkkaKernelPlugin import ...
2
votes
1answer
167 views

Akka app-specific settings in SBT sub project

I have an SBT project with a sub project (which is a library) that does something with akka actors. Just like in the akka docs, I am trying to load an application specific configuration from the sub ...
3
votes
2answers
705 views

Setting up Akka with Eclipse

I am trying to get a simple Akka program building with Eclipse and Scala. I used g8 to create the sbt project with Akka(g8 typesafehub/akka-scala-sbt) and then sbteclispe to create the Eclipse ...
0
votes
2answers
101 views

Missing build.scala in base directory

i am trying my hands on the sbt version 12 with the tutorials from GitHub. I intalled the sbt from the sbt windows installer package but any time I run the sbt the project runs but i cannot find the ...
1
vote
0answers
224 views

Brew installed Scala and Play with Akka throwing an exception

I'm getting a really awful error with my application. I suspect it may be because the default play version, the default akka version and the default scala version are in conflict. There seem to be ...
1
vote
1answer
141 views

new to scala & sbt - trying to compile a project that imports akka.stm._

I'm new to Scala & sbt, and I'm trying to compile a project that imports akka.stm._. When I try running sbt compile the compilation fails with a message point to that point. I tried using ...
0
votes
0answers
104 views

How can I add router in remote actors?

I already included this in my application.conf but it's not working: akka { actor { provider = "akka.remote.RemoteActorRefProvider" deployment { /messageSender { ...
0
votes
0answers
95 views

I can't send a JSON file using remote actors

I have this sbt project using scala and akka. I created a Json file using scala.util.parsing.json, and i want to send this json using remote actors. When I tried to send the json, it throws this ...
2
votes
2answers
159 views

Running SBT (Scala) on several (cluster) machines at the same time

So I've been playing with Akka Actors for a while now, and have written some code that can distribute computation across several machines in a cluster. Before I run the "main" code, I need to have an ...
2
votes
1answer
1k views

application.conf for Scala SBT Akka Actors

I was wondering.. where do you put the application.conf file that configures actors in a file? I'm trying to do what is being done here but SBT is not picking up on the file - I was under the ...
1
vote
1answer
406 views

Cannot Access Play! Internal Actor System

I'm following the documentation here as I would like to add Actors to the application-provided actor system. I try to import the application actor system with: import play.libs.concurrent.Akka I'm ...
5
votes
1answer
692 views

IntelliJ, Akka and Configuration files

When using akka, I place akka.conf in src/main/resources. When I run through sbt, the akka.conf is correctly recognized. But not when I run through IntelliJ (even after a gen-idea). What is the ...
3
votes
2answers
1k views

Building akka fails on “Error: could not retrieve JNA”

I tried to build akka as described on the website (http://akka.io/docs/akka/1.2/dev/building-akka.html) but was unsuccessful. I'm running Windows 7 with cygwin, sbt 0.11.0 and scala 2.9.1. Here is ...
2
votes
2answers
128 views

Errors when compiling AKKA code under 2.7.7

I am a very new bie for scala. So I download the source code AKKA and install the plugin for eclipse (2.7.7 final). When I open the project, it shows 29 compile errors. I know it may be version ...
6
votes
1answer
3k views

How to add sbteclipse plugin to SBT 0.10.x

I want to view the source code of akka, and it seems using the 0.7.x version of sbt. I transform the project configuration to the 0.10.x version. When i add sbteclipse in the libraray-dependencies and ...