Skip to content

Commit b70edfc

Browse files
fix: improve the packages metadata (#1536)
* fix: improve the packages metadata * Update slack-api-client-kotlin-extension/pom.xml Co-authored-by: Michael Brooks <mbrooks@slack-corp.com> * Update bolt-kotlin-examples/pom.xml Co-authored-by: Michael Brooks <mbrooks@slack-corp.com> --------- Co-authored-by: Michael Brooks <mbrooks@slack-corp.com>
1 parent bb338d8 commit b70edfc

File tree

23 files changed

+47
-25
lines changed

23 files changed

+47
-25
lines changed

.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>

bolt-kotlin-examples/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>Examples of using Slack Bolt for Java applications with Kotlin.</description>
18+
<url>https://docs.slack.dev/tools/java-slack-sdk</url>
1819

1920
<dependencies>
2021
<dependency>

0 commit comments

Comments
 (0)