Skip to content

Commit

Permalink
Merge pull request #244 from 2m/wip/doc-ordering-fixes/2m
Browse files Browse the repository at this point in the history
Fix alphabetical ordering in the docs
  • Loading branch information
2m authored Mar 31, 2017
2 parents 1e57642 + 2d31e87 commit 221b51c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
32 changes: 16 additions & 16 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
lazy val alpakka = project
.in(file("."))
.enablePlugins(PublishUnidoc)
.aggregate(amqp, cassandra, dynamodb, files, ftp, googleCloudPubSub, hbase, jms, mqtt, s3, simpleCodecs, sqs, sse, awslambda)
.aggregate(amqp, awslambda, cassandra, dynamodb, files, ftp, googleCloudPubSub, hbase, jms, mqtt, s3, simpleCodecs, sqs, sse)

lazy val amqp = project
.enablePlugins(AutomateHeaderPlugin)
Expand All @@ -10,6 +10,13 @@ lazy val amqp = project
Dependencies.Amqp
)

lazy val awslambda = project
.enablePlugins(AutomateHeaderPlugin)
.settings(
name := "akka-stream-alpakka-awslambda",
Dependencies.AwsLambda
)

lazy val cassandra = project
.enablePlugins(AutomateHeaderPlugin)
.settings(
Expand Down Expand Up @@ -40,6 +47,14 @@ lazy val ftp = project
parallelExecution in Test := false
)

lazy val googleCloudPubSub = project
.in(file("google-cloud-pub-sub"))
.enablePlugins(AutomateHeaderPlugin)
.settings(
name := "akka-stream-alpakka-google-cloud-pub-sub",
Dependencies.GooglePubSub
)

lazy val hbase = project
.enablePlugins(AutomateHeaderPlugin)
.settings(
Expand Down Expand Up @@ -92,14 +107,6 @@ lazy val sse = project
Dependencies.Sse
)

lazy val googleCloudPubSub = project
.in(file("google-cloud-pub-sub"))
.enablePlugins(AutomateHeaderPlugin)
.settings(
name := "akka-stream-alpakka-google-cloud-pub-sub",
Dependencies.GooglePubSub
)

val Local = config("local")
val defaultParadoxSettings: Seq[Setting[_]] = Seq(
paradoxTheme := Some(builtinParadoxTheme("generic")),
Expand All @@ -115,13 +122,6 @@ val defaultParadoxSettings: Seq[Setting[_]] = Seq(
sourceDirectory := baseDirectory.value / "src" / "main"
)

lazy val awslambda = project
.enablePlugins(AutomateHeaderPlugin)
.settings(
name := "akka-stream-alpakka-awslambda",
Dependencies.AwsLambda
)

lazy val docs = project
.enablePlugins(ParadoxPlugin, NoPublish)
.disablePlugins(BintrayPlugin)
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/paradox/connectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

* [AMQP Connector](amqp.md)
* [AWS DynamoDB Connector](dynamodb.md)
* [AWS SQS Connector](sqs.md)
* [AWS Lambda Connector](awslambda.md)
* [AWS S3 Connector](s3.md)
* [AWS SQS Connector](sqs.md)
* [Cassandra Connector](cassandra.md)
* [File Connectors](file.md)
* [FTP Connector](ftp.md)
* [Google Cloud Pub/Sub Connector](google-cloud-pub-sub.md)
* [HBase Connectors](hbase.md)
* [JMS Connectors](jms.md)
* [MQTT Connector](mqtt.md)
* [S3 Connector](s3.md)
* [Server-sent Events (SSE)](sse.md)

@@@
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/paradox/s3.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# S3 Connector
# AWS S3 Connector

The S3 connector provides Akka Stream sources and sinks to connect to [Amazon S3](https://aws.amazon.com/s3/).
The AWS S3 connector provides Akka Stream sources and sinks to connect to [Amazon S3](https://aws.amazon.com/s3/).
S3 stands for Simple Storage Service and is an object storage service with a web service interface.

## Artifacts
Expand Down

0 comments on commit 221b51c

Please sign in to comment.