Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.

Update dependency org and version in docs #39

Merged
merged 1 commit into from
Oct 24, 2016
Merged
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ Knobs
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.verizon.knobs/core_2.11/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.verizon.knobs/core_2.11)
[![codecov](https://codecov.io/gh/Verizon/knobs/branch/master/graph/badge.svg)](https://codecov.io/gh/Verizon/knobs)

Please [view the documentation](http://oncue.github.io/knobs/) for more information, and go to [our Bintray site](https://bintray.com/oncue/releases/knobs/) for the latest releases.

Please [view the documentation](http://oncue.github.io/knobs/) for more information, and go to [Maven Central]((http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.verizon.knobs%22) for the latest releases.
10 changes: 2 additions & 8 deletions docs/src/main/tut/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,10 @@ section: "usage"
First you need to add the dependency for Knobs to your `build.scala` or your `build.sbt` file:

````
libraryDependencies += "oncue.knobs" %% "core" % "x.x.+"
libraryDependencies += "io.verizon.knobs" %% "core" % "x.x.+"
````

Where `x.x` is the desired Knobs version. (Check for the latest release [on Bintray](https://bintray.com/oncue/releases/knobs/view).)

You will probably need to add a resolver entry so SBT can find the jar:

````
resolvers += "Oncue Bintray Repo" at "http://dl.bintray.com/oncue/releases"
````
Where `x.x` is the desired Knobs version. (Check for the latest release [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.verizon.knobs%22).)

Once you have the dependency added to your project and SBT `update` has downloaded the JAR, you're ready to start adding configuration knobs to your project!

Expand Down