This repository was archived by the owner on Jun 23, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,11 @@ public class MyBot {
90
90
91
91
## Installation
92
92
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
+
93
98
** Maven**
94
99
95
100
``` xml
@@ -123,4 +128,35 @@ dependencies {
123
128
implementation 'com.github.cerus:jda-slash-commands:TAG'
124
129
}
125
130
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
+ }
126
162
```
Original file line number Diff line number Diff line change 178
178
<goals >
179
179
<goal >sign</goal >
180
180
</goals >
181
+ <configuration >
182
+ <executable >${gpg.executable} </executable >
183
+ <keyname >${gpg.keyname} </keyname >
184
+ <passphrase >${gpg.passphrase} </passphrase >
185
+ </configuration >
181
186
</execution >
182
187
</executions >
183
188
</plugin >
You can’t perform that action at this time.
0 commit comments