Skip to content

Commit

Permalink
Merge pull request #72 from Comcast/fix-aws-java-sdk
Browse files Browse the repository at this point in the history
Fix AWS SDK module
  • Loading branch information
paulcleary committed May 27, 2016
2 parents b7139fc + c43ec9f commit 6c4f77c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
8 changes: 0 additions & 8 deletions money-aws-java-sdk/README.md
Expand Up @@ -22,14 +22,6 @@ Add a dependency as follows for maven:
</dependency>
```

And here is a dependency for SBT:

```scala
resolvers += "CIM Nexus Repository" at "http://repo.dev.cim.comcast.net/nexus/content/repositories/releases"

libraryDependencies += "com.comcast.money" %% "money-aws-java-sdk" % "0.8.14"
```

Then in your application, when you instantiate the AmazonDynamoDBClient, add one line of code:

```java
Expand Down
5 changes: 3 additions & 2 deletions project/MoneyBuild.scala
Expand Up @@ -207,7 +207,8 @@ object MoneyBuild extends Build {
junit
)
},
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v")
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v"),
javacOptions in doc := Seq("-source", "1.6")
)
.dependsOn(moneyCore)

Expand Down Expand Up @@ -236,7 +237,7 @@ object MoneyBuild extends Build {
"-Xlint:unchecked",
"-Xlint:deprecation",
"-Xlint:-options"),
javacOptions in doc := Seq("-source", "1.6"),
javacOptions in (Compile, doc) := Seq("-source", "1.6"),
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
Expand Down

0 comments on commit 6c4f77c

Please sign in to comment.