Skip to content

Commit

Permalink
Add dependency information for including in project.
Browse files Browse the repository at this point in the history
Added dependency information for Maven and SBT so that it is easier for the developers who are new to the library.
  • Loading branch information
Satendra kumar committed Sep 25, 2015
1 parent 7263aaa commit 9633048
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ Note: this branch targets Scala 2.11.x, support for Scala 2.10.x has been moved

## Quick start

To include scala-async in an existing project use the library published on Maven Central.
For sbt projects add the following to your build definition - build.sbt or project/Build.scala:

```scala
libraryDependencies += "org.scala-lang.modules" %% "scala-async" % "0.9.5"
```

For Maven projects add the following to your <dependencies> (make sure to use the correct Scala version prefix, _2.10 or _2.11,
to match your project’s Scala version):

```scala
<dependency>
<groupId>org.scala-lang.modules</groupId>
<artifactId>scala-async_2.11</artifactId>
<version>0.9.5</version>
</dependency>
```

After adding a scala-async to your classpath, write your first `async` block:

```scala
Expand Down

0 comments on commit 9633048

Please sign in to comment.