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

Updating aws SDK and restricting to necessary packages #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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