Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
shaiyallin committed Feb 20, 2014
2 parents d52809a + 312d955 commit 6b14b3d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,23 @@ We chose to use Twitter's Future implementation rather than Scala's native Futur

Getting Started
===============
Future Perfect 0.1.3 is available on Maven Central Repository. The next milestone is 0.1.4-SNAPSHOT and is available from the Sonatype snapshots repository.
Future Perfect 0.1.4 is available on Maven Central Repository. The next milestone is 0.1.5-SNAPSHOT and is available from the Sonatype snapshots repository.

SBT
---

Simply add the `future-perfect` module to your build settings:

```scala
libraryDependencies += "com.wix" %% "future-perfect" % "0.1.3"
libraryDependencies += "com.wix" %% "future-perfect" % "0.1.4"
```

If you want to evaluate the upcoming snapshot release, add the Sonatype snapshot repository to your resolvers; typically this means adding the following to your `build.sbt` file:

```scala
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies += "com.wix" %% "future-perfect" % "0.1.4-SNAPSHOT"
libraryDependencies += "com.wix" %% "future-perfect" % "0.1.5-SNAPSHOT"
```

Maven
Expand All @@ -58,7 +58,7 @@ Simply add the appropriate dependency to your POM:
<dependency>
<groupId>com.wix</groupId>
<artifactId>future-perfect_${scala.tools.version}</artifactId>
<version>0.1.3</version>
<version>0.1.4</version>
</dependency>
</dependencies>
```
Expand All @@ -80,7 +80,7 @@ To use the snapshot version, add the Sonatype snapshot repository and a dependen
<dependency>
<groupId>com.wix</groupId>
<artifactId>future-perfect_${scala.tools.version}</artifactId>
<version>0.1.4-SNAPSHOT</version>
<version>0.1.5-SNAPSHOT</version>
</dependency>
</dependencies>
```
Expand Down

0 comments on commit 6b14b3d

Please sign in to comment.