=doc #15213 snapshot repo for snapshot dependencies

This commit is contained in:
Martynas Mickevicius 2014-05-21 17:19:47 +02:00
parent 713ab14e4c
commit ce0125871b

View file

@ -132,7 +132,7 @@ dependency for akka-actor:
<version>@version@</version>
</dependency>
For snapshot versions, snapshot repository need to be added as well:
For snapshot versions, the snapshot repository needs to be added as well:
.. code-block:: xml
@ -170,8 +170,6 @@ SBT installation instructions on `https://github.com/harrah/xsbt/wiki/Setup <htt
scalaVersion := "@scalaVersion@"
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies +=
"com.typesafe.akka" %% "akka-actor" % "@version@" @crossString@
@ -182,6 +180,12 @@ SBT installation instructions on `https://github.com/harrah/xsbt/wiki/Setup <htt
libraryDependencies +=
"com.typesafe.akka" % "akka-actor_@binVersion@" % "@version@"
For snapshot versions, the snapshot repository needs to be added as well:
.. parsed-literal::
resolvers += "Akka Snapshot Repository" at "http://repo.akka.io/snapshots/"
Using Akka with Gradle
----------------------
@ -210,6 +214,17 @@ Uses the `Scala plugin <http://gradle.org/docs/current/userguide/scala_plugin.ht
compile group: 'org.scala-lang', name: 'scala-library', version: '@scalaVersion@'
}
For snapshot versions, the snapshot repository needs to be added as well:
.. parsed-literal::
repositories {
mavenCentral()
maven {
url "http://repo.akka.io/snapshots/"
}
}
Using Akka with Eclipse
-----------------------