Frequentcrasher
Frequentcrasher

Reputation: 271

Building Scala project in Eclipse with Akka

I'm new to Scala and Akka and I was just trying to do one of the sample tutorial projects in Eclipse (Luna) with Scala IDE (4.1.0) and JDK8.

I have added akka-actor (2.11) jar to the build path under properties as instructed by one of these akka walk throughs I found online and the project already had Scala Library Container included when I first went in because the project was created as a Scala Project in Eclipse.

I'm thinking if I was just missing another akka jar since there were a bunch of other ones, it would complain about some akka.* package. Looks like it's looking for com.typesafe and failing so I'm not sure what else I'm missing.

Upvotes: 1

Views: 1562

Answers (3)

Mustapha Raji
Mustapha Raji

Reputation: 11

You should include all the jars in Akka Folder. Even some jars may not be needed in your current project , but dependencies make them necessary

Upvotes: 0

marudhu Pandian
marudhu Pandian

Reputation: 11

Include config-1.2.1.jar(on my system) file in the project. config-1.2.1.jar has com.typesafe.config classes

Upvotes: 1

grd
grd

Reputation: 45

Faced same problem. Add typesafe config jar to the classpath and all akka dependencies. It will work fine.

Upvotes: 1

Related Questions