Skip to content

Commit 61a7dd3

Browse files
authored
use asf giter8 templates (apache#372)
* use asf giter8 templates * Update examples-and-extensions.md
1 parent 38aa25e commit 61a7dd3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/src/main/paradox/introduction.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,20 @@ You can bootstrap a new project with Apache Pekko HTTP already configured using
4848
@@@ div { .group-scala }
4949
For Scala (sbt)
5050
: ```sh
51-
sbt new theiterators/pekko-http-quickstart-scala.g8
51+
sbt new apache/incubator-pekko-http-quickstart-scala.g8
5252
```
5353
@@@
5454
@@@ div { .group-java }
5555
For Java (Maven or Gradle)
5656
: ```sh
57-
sbt new theiterators/pekko-http-quickstart-java.g8
57+
sbt new apache/incubator-pekko-http-quickstart-java.g8
5858
```
5959
From there on the prepared project can be built using Gradle or Maven.
6060
@@@
6161

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

6666
## Routing DSL for HTTP servers
6767

docs/src/main/paradox/routing-dsl/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ the Routing DSL will look like:
5555

5656
## Getting started
5757

58-
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.
58+
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.
5959

6060
## Compared with Play framework routes
6161

http/src/main/java/org/apache/pekko/http/javadsl/server/HttpApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import java.util.concurrent.atomic.AtomicReference;
3030

3131
/**
32-
* DEPRECATED, consider https://github.com/theiterators/pekko-http-quickstart-java.g8 instead
32+
* DEPRECATED, consider https://github.com/apache/incubator-pekko-http-quickstart-java.g8 instead
3333
*
3434
* <p>Bootstrap trait for Http Server. It helps booting up a pekko-http server by only defining the
3535
* desired routes. It offers additional hooks to modify the default behavior.

http/src/main/scala/org/apache/pekko/http/scaladsl/server/HttpApp.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import scala.io.StdIn
3030
import scala.util.{ Failure, Success, Try }
3131

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

0 commit comments

Comments
 (0)