Skip to content
This repository was archived by the owner on Jun 23, 2021. It is now read-only.

Commit 021a4c6

Browse files
committed
Update pom, update README
1 parent 2a30769 commit 021a4c6

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ public class MyBot {
9090

9191
## Installation
9292

93+
Since version 1.2.2, you can install `jda-slash-commands` from the central repository.
94+
95+
<details>
96+
<summary>Before 1.2.2</summary>
97+
9398
**Maven**
9499

95100
``` xml
@@ -123,4 +128,35 @@ dependencies {
123128
implementation 'com.github.cerus:jda-slash-commands:TAG'
124129
}
125130
131+
```
132+
133+
</details>
134+
135+
**Maven**
136+
137+
```xml
138+
139+
<dependencies>
140+
<dependency>
141+
<groupId>dev.cerus</groupId>
142+
<artifactId>jda-slash-commands</artifactId>
143+
<version>1.2.2</version> <!-- Replace with latest version -->
144+
<scope>compile</scope>
145+
</dependency>
146+
</dependencies>
147+
```
148+
149+
**Gradle**
150+
151+
```
152+
allprojects {
153+
repositories {
154+
...
155+
mavenCentral()
156+
}
157+
}
158+
159+
dependencies {
160+
implementation 'dev.cerus:jda-slash-commands:1.2.2'
161+
}
126162
```

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,11 @@
178178
<goals>
179179
<goal>sign</goal>
180180
</goals>
181+
<configuration>
182+
<executable>${gpg.executable}</executable>
183+
<keyname>${gpg.keyname}</keyname>
184+
<passphrase>${gpg.passphrase}</passphrase>
185+
</configuration>
181186
</execution>
182187
</executions>
183188
</plugin>

0 commit comments

Comments
 (0)