From d5130abb0eed8e878ca0f65f164de50967dccdbd Mon Sep 17 00:00:00 2001 From: Anand Singh Date: Sat, 17 Sep 2016 08:34:51 +0530 Subject: [PATCH] SBT Dependencies Update Added SBT Dependencies for released and SNAPSHOTS builds --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a0e5dae5a0a..fdcb0e0cd19a 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,11 @@ or Gradle: compile group: 'com.microsoft.azure', name: 'azure', version: '1.0.0-beta2' +or SBT: + + // https://mvnrepository.com/artifact/com.microsoft.azure/azure + libraryDependencies += "com.microsoft.azure" % "azure" % "1.0.0-beta2" + **Snapshots builds for this repo** If you are using snapshots builds for this repo, add the following repository and dependency to your POM file: @@ -155,8 +160,12 @@ repositories { } ``` - compile group: 'com.microsoft.azure', name: 'azure', version: '1.0.0-SNAPSHOTS' + +or SBT: + + resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" + libraryDependencies += "com.microsoft.azure" % "azure" % "1.0.0-SNAPSHOTS" #Pre-requisites