From 61a7dd37f4f5d7b7504104c12f784e2114134c6b Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Thu, 14 Dec 2023 09:51:46 +0100 Subject: [PATCH] use asf giter8 templates (#372) * use asf giter8 templates * Update examples-and-extensions.md --- docs/src/main/paradox/introduction.md | 8 ++++---- docs/src/main/paradox/routing-dsl/index.md | 2 +- .../org/apache/pekko/http/javadsl/server/HttpApp.java | 2 +- .../org/apache/pekko/http/scaladsl/server/HttpApp.scala | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/src/main/paradox/introduction.md b/docs/src/main/paradox/introduction.md index 5d8c306ef..45b069f84 100644 --- a/docs/src/main/paradox/introduction.md +++ b/docs/src/main/paradox/introduction.md @@ -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 diff --git a/docs/src/main/paradox/routing-dsl/index.md b/docs/src/main/paradox/routing-dsl/index.md index eed402344..3a545830a 100644 --- a/docs/src/main/paradox/routing-dsl/index.md +++ b/docs/src/main/paradox/routing-dsl/index.md @@ -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 diff --git a/http/src/main/java/org/apache/pekko/http/javadsl/server/HttpApp.java b/http/src/main/java/org/apache/pekko/http/javadsl/server/HttpApp.java index 0b7b09946..c37f35d11 100644 --- a/http/src/main/java/org/apache/pekko/http/javadsl/server/HttpApp.java +++ b/http/src/main/java/org/apache/pekko/http/javadsl/server/HttpApp.java @@ -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 * *

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. diff --git a/http/src/main/scala/org/apache/pekko/http/scaladsl/server/HttpApp.scala b/http/src/main/scala/org/apache/pekko/http/scaladsl/server/HttpApp.scala index a55895df8..974829b07 100644 --- a/http/src/main/scala/org/apache/pekko/http/scaladsl/server/HttpApp.scala +++ b/http/src/main/scala/org/apache/pekko/http/scaladsl/server/HttpApp.scala @@ -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.