Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct BETA15 -> BETA14, and add instructions for 0.7.x series of SBT #55

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ And then the Metrics library like this:
<dependency>
<groupId>com.yammer.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>2.0.0-BETA15-SNAPSHOT</version>
<version>2.0.0-BETA14-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.yammer.metrics</groupId>
<artifactId>metrics-scala_${scala.version}</artifactId>
<version>2.0.0-BETA15-SNAPSHOT</version>
<version>2.0.0-BETA14-SNAPSHOT</version>
</dependency>
</dependencies>
~~~~
Expand All @@ -43,7 +43,18 @@ The next time you use Maven, it should download the Metrics JAR.

### Using Simple Build Tool

**TODO**
If you're using the 0.7.x series of SBT, add the repository to your project file like so:

~~~~ { .scala }
val codaHaleRepo = "Code Hale Repo" at "http://repo.codahale.com"
~~~~

Then add the Metric library like this:

~~~~ { .scala }
lazy val metrics = "com.yammer.metrics" % "metrics-core" % "2.0.0-BETA14-SNAPSHOT"
lazy val metricsScala = "com.yammer.metrics" %% "metrics-scala" % "2.0.0-BETA14-SNAPSHOT"
~~~~


### Raw-doggin' It
Expand Down