In this official doc they use 2.2-SNAPSHOT version.
http://doc.akka.io/docs/akka/snapshot/intro/getting-started.html
If try to resolve it - it does not work.
If try to add typesafe repo:
<repositories>
<repository>
<id>java.net</id>
<url>http://repo.typesafe.com/typesafe/releases/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-actor_2.10</artifactId>
<version>2.2-SNAPSHOT</version>
</dependency>
</dependencies>
It does not work neither. Edit: Even if I use snapshot repo in "< repository >"
Is there some repo I can use to make official sample working?
If I use previous version, then that example does not resolve some methods (like this: Props.create
). So I need last one then.
Normally people don't publish snapshots to the releases repository (there's almost always a snapshots repository), in Akka's case, it's: repo.akka.io/snapshots/
And I definitely recommend to choose one of the timestamped ones and not the snapshot.
Can't you use the M3?
If so, please use the above. It's available on the standard Maven repo.