-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jacques
committed
May 23, 2017
1 parent
d8941f8
commit 0ff83ec
Showing
17 changed files
with
196 additions
and
517 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Changelog | ||
|
||
This file summarizes the main changes for each release. | ||
|
||
### <a name="0.11.0"></a>Version 0.11.0 | ||
|
||
- Remove dependency to the unmaintained `dwhjames/aws-wrap` by including the necessary code. | ||
- Split the project in three : `commons-aws-cloudwatch`, `commons-aws-s3` and `commons-aws-sqs` | ||
- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
import sbtunidoc.Plugin._ | ||
import bintray.Plugin._ | ||
|
||
|
||
organization in ThisBuild := "com.mfglabs" | ||
|
||
scalaVersion in ThisBuild := "2.11.7" | ||
scalaVersion in ThisBuild := "2.11.11" | ||
|
||
version in ThisBuild := "0.11.0" | ||
|
||
|
@@ -68,12 +66,8 @@ lazy val all = (project in file(".")) | |
.aggregate(s3) | ||
.aggregate(sqs) | ||
.settings(name := "commons-aws-all") | ||
.settings(site.settings ++ ghpages.settings: _*) | ||
.settings( | ||
name := "commons-aws-all", | ||
site.addMappingsToSiteDir(mappings in (ScalaUnidoc, packageDoc), "api/" + version), | ||
git.remoteRepo := "[email protected]:MfgLabs/commons-aws.git" | ||
) | ||
.enablePlugins(ScalaUnidocPlugin) | ||
.settings(name := "commons-aws-all") | ||
.settings(noPublishSettings) | ||
|
||
lazy val commons = project.in(file("commons")) | ||
|
@@ -110,7 +104,7 @@ lazy val s3 = project.in(file("s3")) | |
), | ||
commonSettings, | ||
publishSettings | ||
) | ||
).dependsOn(commons) | ||
|
||
lazy val sqs = project.in(file("sqs")) | ||
.settings ( | ||
|
Oops, something went wrong.