This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-pekko-site.git
commit dfd14875209ba8616164fe58dc9005c308fe2a95 Author: Johannes Rudolph <[email protected]> AuthorDate: Wed Mar 1 11:52:03 2023 +0100 simple paradox-based homepage setup --- .gitignore | 2 ++ build.sbt | 5 +++++ project/build.properties | 1 + project/plugins.sbt | 4 ++++ src/main/paradox/how-to-contribute.md | 1 + src/main/paradox/index.md | 11 +++++++++++ src/main/paradox/modules.md | 1 + src/main/paradox/what-is-pekko.md | 1 + 8 files changed, 26 insertions(+) diff --git a/.gitignore b/.gitignore index 9f11b755..d58a36e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .idea/ +target +.bsp diff --git a/build.sbt b/build.sbt new file mode 100644 index 00000000..b9789ba1 --- /dev/null +++ b/build.sbt @@ -0,0 +1,5 @@ +enablePlugins(ParadoxPlugin, PekkoParadoxPlugin) + +resolvers += "Apache Nexus Snapshots".at("https://repository.apache.org/content/repositories/snapshots/") + +pekkoParadoxGithub := "https://github.com/apache/incubator-pekko-site" diff --git a/project/build.properties b/project/build.properties new file mode 100644 index 00000000..46e43a97 --- /dev/null +++ b/project/build.properties @@ -0,0 +1 @@ +sbt.version=1.8.2 diff --git a/project/plugins.sbt b/project/plugins.sbt new file mode 100644 index 00000000..12d67af8 --- /dev/null +++ b/project/plugins.sbt @@ -0,0 +1,4 @@ +// allow access to snapshots for pekko-sbt-paradox +resolvers += "Apache Nexus Snapshots".at("https://repository.apache.org/content/repositories/snapshots/") + +addSbtPlugin("org.apache.pekko" % "pekko-sbt-paradox" % "0.0.0+28-a1dda63b-SNAPSHOT") diff --git a/src/main/paradox/how-to-contribute.md b/src/main/paradox/how-to-contribute.md new file mode 100644 index 00000000..5785200e --- /dev/null +++ b/src/main/paradox/how-to-contribute.md @@ -0,0 +1 @@ +# How to Contribute \ No newline at end of file diff --git a/src/main/paradox/index.md b/src/main/paradox/index.md new file mode 100644 index 00000000..6c8f4174 --- /dev/null +++ b/src/main/paradox/index.md @@ -0,0 +1,11 @@ +# Apache Pekko + +@@toc { depth=2 } + +@@@ index + + * [what is pekko](what-is-pekko.md) + * [modules](modules.md) + * [how to contribute](how-to-contribute.md) + +@@@ diff --git a/src/main/paradox/modules.md b/src/main/paradox/modules.md new file mode 100644 index 00000000..857b555c --- /dev/null +++ b/src/main/paradox/modules.md @@ -0,0 +1 @@ +# Pekko Modules \ No newline at end of file diff --git a/src/main/paradox/what-is-pekko.md b/src/main/paradox/what-is-pekko.md new file mode 100644 index 00000000..1b921769 --- /dev/null +++ b/src/main/paradox/what-is-pekko.md @@ -0,0 +1 @@ +# What is Pekko? \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
