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

use asf giter8 templates #372

Merged
merged 2 commits into from
Dec 14, 2023
Merged
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
8 changes: 4 additions & 4 deletions docs/src/main/paradox/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,20 +48,20 @@ You can bootstrap a new project with Apache Pekko HTTP already configured using
@@@ div { .group-scala }
For Scala (sbt)
: ```sh
sbt new theiterators/pekko-http-quickstart-scala.g8
sbt new apache/incubator-pekko-http-quickstart-scala.g8
```
@@@
@@@ div { .group-java }
For Java (Maven or Gradle)
: ```sh
sbt new theiterators/pekko-http-quickstart-java.g8
sbt new apache/incubator-pekko-http-quickstart-java.g8
```
From there on the prepared project can be built using Gradle or Maven.
@@@

More instructions can be found on the @scala[[template
project](https://github.com/theiterators/pekko-http-quickstart-scala.g8)]@java[[template
project](https://github.com/theiterators/pekko-http-quickstart-java.g8)].
project](https://github.com/apache/incubator-pekko-http-quickstart-scala.g8)]@java[[template
project](https://github.com/apache/incubator-pekko-http-quickstart-java.g8)].

## Routing DSL for HTTP servers

Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/paradox/routing-dsl/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ the Routing DSL will look like:

## Getting started

The project template in @scala[[Apache Pekko HTTP Quickstart for Scala](https://github.com/theiterators/pekko-http-quickstart-scala.g8)]@java[[Apache Pekko HTTP Quickstart for Java](https://github.com/theiterators/pekko-http-quickstart-java.g8)] will help you to get a working Apache Pekko HTTP server running.
The project template in @scala[[Apache Pekko HTTP Quickstart for Scala](https://github.com/apache/incubator-pekko-http-quickstart-scala.g8)]@java[[Apache Pekko HTTP Quickstart for Java](https://github.com/apache/incubator-pekko-http-quickstart-java.g8)] will help you to get a working Apache Pekko HTTP server running.

## Compared with Play framework routes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import java.util.concurrent.atomic.AtomicReference;

/**
* DEPRECATED, consider https://github.com/theiterators/pekko-http-quickstart-java.g8 instead
* DEPRECATED, consider https://github.com/apache/incubator-pekko-http-quickstart-java.g8 instead
*
* <p>Bootstrap trait for Http Server. It helps booting up a pekko-http server by only defining the
* desired routes. It offers additional hooks to modify the default behavior.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import scala.io.StdIn
import scala.util.{ Failure, Success, Try }

/**
* DEPRECATED, consider https://github.com/theiterators/pekko-http-quickstart-scala.g8 instead
* DEPRECATED, consider https://github.com/apache/incubator-pekko-http-quickstart-scala.g8 instead
*
* Bootstrap trait for Http Server. It helps booting up a pekko-http server by only defining the desired routes.
* It offers additional hooks to modify the default behavior.
Expand Down
Loading