Skip to content

Commit 69b6977

Browse files
authored
Merge branch 'main' into api
2 parents a184a91 + b70edfc commit 69b6977

File tree

24 files changed

+59
-25
lines changed

24 files changed

+59
-25
lines changed

.github/CODEOWNERS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Salesforce Open Source project configuration
2+
# Learn more: https://github.com/salesforce/oss-template
3+
#ECCN:Open Source
4+
#GUSINFO:Open Source,Open Source Workflow
5+
6+
# @slackapi/slack-platform-java
7+
# are code reviewers for all changes in this repo.
8+
* @slackapi/slack-platform-java
9+
10+
# @slackapi/developer-education
11+
# are code reviewers for changes in the `/docs` directory.
12+
/docs/ @slackapi/developer-education

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ appConfig_*.json
2929
verificationToken.txt
3030

3131
*.hprof
32+
.vscode

bolt-aws-lambda/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
</parent>
1111

1212
<name>${project.groupId}:${project.artifactId}</name>
13-
<url>${project.url}</url>
13+
<description>An adapter for running Slack Bolt for Java applications on AWS Lambda.</description>
14+
<url>https://docs.slack.dev/tools/java-slack-sdk</url>
1415

1516
<properties>
1617
<aws-lambda-core.version>1.2.3</aws-lambda-core.version>

bolt-google-cloud-functions/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
<packaging>jar</packaging>
2222

2323
<name>${project.groupId}:${project.artifactId}</name>
24-
<url>${project.url}</url>
24+
<description>An adapter for running Slack Bolt for Java applications on Google cloud functions.</description>
25+
<url>https://docs.slack.dev/tools/java-slack-sdk</url>
2526

2627
<dependencies>
2728
<dependency>

bolt-helidon/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
</parent>
1111

1212
<name>${project.groupId}:${project.artifactId}</name>
13-
<url>${project.url}</url>
13+
<description>An adapter for running Slack Bolt for Java applications on Helidon.</description>
14+
<url>https://docs.slack.dev/tools/java-slack-sdk</url>
1415

1516
<properties>
1617
<!-- TODO: Upgrade to Helidon v3 (requires a new minor release) -->

bolt-http4k/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
</parent>
1111

1212
<name>${project.groupId}:${project.artifactId}</name>
13-
<url>${project.url}</url>
13+
<description>An adapter for running Slack Bolt for Java applications on http4k.</description>
14+
<url>https://docs.slack.dev/tools/java-slack-sdk</url>
1415

1516
<properties>
1617
<!-- TODO: upgrade to 6.x -->

bolt-jakarta-jetty/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
<packaging>jar</packaging>
1515

1616
<name>${project.groupId}:${project.artifactId}</name>
17-
<url>${project.url}</url>
17+
<description>A handy way to run Slack Bolt apps on Jakarta EE compatible Jetty HTTP server.</description>
18+
<url>https://docs.slack.dev/tools/java-slack-sdk</url>
1819

1920
<dependencies>
2021
<dependency>

bolt-jakarta-servlet/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
<packaging>jar</packaging>
1515

1616
<name>${project.groupId}:${project.artifactId}</name>
17-
<url>${project.url}</url>
17+
<description>A handy way to run Slack Bolt apps on the Jakarta EE Servlet environments.</description>
18+
<url>https://docs.slack.dev/tools/java-slack-sdk</url>
1819

1920
<dependencies>
2021
<dependency>

bolt-jakarta-socket-mode/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
<packaging>jar</packaging>
2020

2121
<name>${project.groupId}:${project.artifactId}</name>
22-
<url>${project.url}</url>
22+
<description>Provides WebSocket connectivity to the Slack API using Socket Mode, compatible with Jakarta EE.</description>
23+
<url>https://docs.slack.dev/tools/java-slack-sdk</url>
2324

2425
<dependencies>
2526
<dependency>

bolt-jetty/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
<packaging>jar</packaging>
1919

2020
<name>${project.groupId}:${project.artifactId}</name>
21-
<url>${project.url}</url>
21+
<description>A handy way to run Slack Bolt apps on the Java EE compatible Jetty HTTP server.</description>
22+
<url>https://docs.slack.dev/tools/java-slack-sdk</url>
2223

2324
<dependencies>
2425
<dependency>

0 commit comments

Comments
 (0)