Skip to content
Open
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
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ licenses += ( "MIT" -> url("http://opensource.org/licenses/MIT") )
unmanagedSourceDirectories in Compile += baseDirectory.value / "examples"

libraryDependencies ++= Seq(
"com.amazonaws" % "aws-java-sdk" % "1.9.23",
"org.mockito" % "mockito-all" % "1.10.8" % "test"
"com.amazonaws" % "aws-java-sdk-kinesis" % "1.11.128",
"com.amazonaws" % "aws-java-sdk-core" % "1.11.128",
"org.mockito" % "mockito-all" % "1.10.8" % "test"
)

def scalatestDependency(scalaVersion: String) = scalaVersion match {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ object CredentialsProvider {
/**
* Provides an instance of the `InstanceProfile` provider
*/
lazy val InstanceProfile = new InstanceProfileCredentialsProvider()
lazy val InstanceProfile = new InstanceProfileCredentialsProvider(false)

/**
* Provides an instance of the `Container` provider
*/
lazy val Container = new ContainerCredentialsProvider()

/**
* Provides an instance of the default `ClasspathPropertiesFileCredentialsProvider` provider.
Expand Down