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 {
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```
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments