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

doc: dependency fixes #156

Merged
merged 1 commit into from
Nov 28, 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
2 changes: 1 addition & 1 deletion src/main/docs/guide/basecamp/basecampAzure.adoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
If you want to deploy to an [https://docs.microsoft.com/azure](Azure) function, you can use the following dependency:

dependency:io.micronaut.chatbots:micronaut-chatbots-basecamp-azure-function[]
dependency:micronaut-chatbots-basecamp-azure-function[groupId=io.micronaut.chatbots]
2 changes: 1 addition & 1 deletion src/main/docs/guide/basecamp/basecampGcp.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
If you want to deploy to https://cloud.google.com/functions[Google Cloud Functions], you can use the following dependency:

dependency:io.micronaut.chatbots:micronaut-chatbots-basecamp-gcp-function[]
dependency:micronaut-chatbots-basecamp-gcp-function[groupId=io.micronaut.chatbots]

You can use the following entry point:

Expand Down
2 changes: 1 addition & 1 deletion src/main/docs/guide/basecamp/basecampHttp.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
If you want to configure one endpoint as the Basecamp chatbot webhook while using a runtime such as Netty or Servlet, you can include the following dependency:

dependency:io.micronaut.chatbots:micronaut-chatbots-basecamp-http[]
dependency:micronaut-chatbots-basecamp-http[groupId=io.micronaut.chatbots]

You can configure the path with:

Expand Down
2 changes: 1 addition & 1 deletion src/main/docs/guide/basecamp/basecampLambda.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
If you want to deploy to https://aws.amazon.com/lambda/[AWS Lambda], you can use the following dependency:

dependency:io.micronaut.chatbots:micronaut-chatbots-basecamp-lambda[]
dependency:micronaut-chatbots-basecamp-lambda[groupId=io.micronaut.chatbots]

Use the class `io.micronaut.chatbots.basecamp.lambda.Handler`
as the https://docs.aws.amazon.com/lambda/latest/dg/java-handler.html[AWS Lambda function handler].
2 changes: 1 addition & 1 deletion src/main/docs/guide/telegram/telegramGcp.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
If you want to deploy to https://cloud.google.com/functions[Google Cloud Functions], you can use the following dependency:

dependency:io.micronaut.chatbots:micronaut-chatbots-telegram-gcp-function[]
dependency:micronaut-chatbots-telegram-gcp-function[groupId=io.micronaut.chatbots]

You can use the following entry point:

Expand Down
2 changes: 1 addition & 1 deletion src/main/docs/guide/telegram/telegramHttp.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
If you want to configure one endpoint as the Telegram chatbot webhook while using a runtime such as Netty or Servlet, you can include the following dependency:

dependency:io.micronaut.chatbots:chatbots-telegram-http[]
dependency:mironaut-chatbots-telegram-http[groupId=io.micronaut.chatbots]

You can configure the path with the following:

Expand Down
2 changes: 1 addition & 1 deletion src/main/docs/guide/telegram/telegramLambda.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
If you want to deploy to https://aws.amazon.com/lambda/[AWS Lambda], you can use the following dependency:

dependency:io.micronaut.chatbots:chatbots-telegram-lambda[]
dependency:micronaut-chatbots-telegram-lambda[groupId=io.micronaut.chatbots]

Use the class `io.micronaut.chatbots.telegram.lambda.Handler`
as the https://docs.aws.amazon.com/lambda/latest/dg/java-handler.html[AWS Lambda function handler].
Loading