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

Commit fef952a

Browse files
committed
更新
1 parent 6012670 commit fef952a

File tree

2 files changed

+38
-54
lines changed

2 files changed

+38
-54
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Dodo开放平台的JavaSDK
66

77
目前还新增了权限系统以及命令系统
88

9-
JavaDoc:https://mcchampions.github.io/
9+
JavaDoc:https://qscraft.top/javadoc
1010

1111
Dodo开放平台:https://open.imdodo.com/
1212

@@ -48,43 +48,43 @@ permissions: 763KB
4848
<dependency>
4949
<groupId>top.qscraft.dodoopenjava</groupId>
5050
<artifactId>core</artifactId>
51-
<version>2.5.2</version>
51+
<version>2.5.6</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>top.qscraft.dodoopenjava</groupId>
5555
<artifactId>command</artifactId>
56-
<version>2.5.2</version>
56+
<version>2.5.6</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>top.qscraft.dodoopenjava</groupId>
6060
<artifactId>configuration</artifactId>
61-
<version>2.5.2</version>
61+
<version>2.5.6</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>top.qscraft.dodoopenjava</groupId>
6565
<artifactId>event-core</artifactId>
66-
<version>2.5.2</version>
66+
<version>2.5.6</version>
6767
</dependency>
6868
<dependency>
6969
<groupId>top.qscraft.dodoopenjava</groupId>
7070
<artifactId>event-websocket</artifactId>
71-
<version>2.5.2</version>
71+
<version>2.5.6</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>top.qscraft.dodoopenjava</groupId>
7575
<artifactId>event-webhook</artifactId>
76-
<version>2.5.2</version>
76+
<version>2.5.6</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>top.qscraft.dodoopenjava</groupId>
8080
<artifactId>permissions</artifactId>
81-
<version>2.5.2</version>
81+
<version>2.5.6</version>
8282
</dependency>
8383
<!--又或者直接合成一个依赖项-->
8484
<dependency>
8585
<groupId>top.qscraft</groupId>
8686
<artifactId>dodoopenjava</artifactId>
87-
<version>2.5.2</version>
87+
<version>2.5.6</version>
8888
</dependency>
8989
</dependencies>
9090
```
@@ -97,15 +97,15 @@ permissions: 763KB
9797
}
9898
9999
dependencies {
100-
implementation 'top.qscraft.dodoopenjava:core:2.5.2'
101-
implementation 'top.qscraft.dodoopenjava:command:2.5.2'
102-
implementation 'top.qscraft.dodoopenjava:configuration:2.5.2'
103-
implementation 'top.qscraft.dodoopenjava:event-core:2.5.2'
104-
implementation 'top.qscraft.dodoopenjava:event-websocket:2.5.2'
105-
implementation 'top.qscraft.dodoopenjava:event-webhook:2.5.2'
106-
implementation 'top.qscraft.dodoopenjava:permissions:2.5.2'
100+
implementation 'top.qscraft.dodoopenjava:core:2.5.6'
101+
implementation 'top.qscraft.dodoopenjava:command:2.5.6'
102+
implementation 'top.qscraft.dodoopenjava:configuration:2.5.6'
103+
implementation 'top.qscraft.dodoopenjava:event-core:2.5.6'
104+
implementation 'top.qscraft.dodoopenjava:event-websocket:2.5.6'
105+
implementation 'top.qscraft.dodoopenjava:event-webhook:2.5.6'
106+
implementation 'top.qscraft.dodoopenjava:permissions:2.5.6'
107107
//又或者直接合成一个依赖项
108-
implementation 'top.qscraft:dodoopenjava:2.5.2'
108+
implementation 'top.qscraft:dodoopenjava:2.5.6'
109109
}
110110
```
111111
### 教程(过于古老,无参考价值,改日重写)

pom.xml

Lines changed: 21 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1111
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
12-
<revision>2.5.5</revision>
12+
<revision>2.5.6</revision>
1313
</properties>
1414

1515
<groupId>io.github.minecraftchampions.dodoopenjava</groupId>
@@ -55,6 +55,19 @@
5555
</execution>
5656
</executions>
5757
</plugin>
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-shade-plugin</artifactId>
61+
<version>3.4.1</version>
62+
<executions>
63+
<execution>
64+
<phase>package</phase>
65+
<goals>
66+
<goal>shade</goal>
67+
</goals>
68+
</execution>
69+
</executions>
70+
</plugin>
5871

5972
<plugin>
6073
<groupId>org.codehaus.mojo</groupId>
@@ -71,23 +84,6 @@
7184
</configuration>
7285
</plugin>
7386

74-
<plugin>
75-
<groupId>org.apache.maven.plugins</groupId>
76-
<artifactId>maven-source-plugin</artifactId>
77-
<version>2.4</version>
78-
<configuration>
79-
<attach>true</attach>
80-
</configuration>
81-
<executions>
82-
<execution>
83-
<phase>package</phase>
84-
<goals>
85-
<goal>jar-no-fork</goal>
86-
</goals>
87-
</execution>
88-
</executions>
89-
</plugin>
90-
9187
<plugin>
9288
<groupId>org.apache.maven.plugins</groupId>
9389
<artifactId>maven-site-plugin</artifactId>
@@ -154,11 +150,6 @@
154150
<id>sonatype</id>
155151
<url>https://oss.sonatype.org/content/groups/public/</url>
156152
</repository>
157-
<repository>
158-
<id> lss233-minecraft </id>
159-
<name> Lss233's Minecraft Repository </name>
160-
<url>https://lss233.littleservice.cn/repositories/minecraft</url>
161-
</repository>
162153
</repositories>
163154

164155
<dependencyManagement>
@@ -169,7 +160,6 @@
169160
<version>4.11.0</version>
170161
<scope>compile</scope>
171162
</dependency>
172-
<!-- https://mvnrepository.com/artifact/com.squareup.okio/okio -->
173163
<dependency>
174164
<groupId>com.squareup.okio</groupId>
175165
<artifactId>okio</artifactId>
@@ -179,13 +169,7 @@
179169
<dependency>
180170
<groupId>org.apache.commons</groupId>
181171
<artifactId>commons-lang3</artifactId>
182-
<version>3.12.0</version>
183-
<scope>compile</scope>
184-
</dependency>
185-
<dependency>
186-
<groupId>cloud.commandframework</groupId>
187-
<artifactId>cloud-core</artifactId>
188-
<version>1.8.3</version>
172+
<version>3.13.0</version>
189173
<scope>compile</scope>
190174
</dependency>
191175
<dependency>
@@ -197,24 +181,25 @@
197181
<dependency>
198182
<groupId>commons-io</groupId>
199183
<artifactId>commons-io</artifactId>
200-
<version>2.11.0</version>
184+
<version>2.13.0</version>
185+
<scope>compile</scope>
201186
</dependency>
202187
<dependency>
203188
<groupId>org.yaml</groupId>
204189
<artifactId>snakeyaml</artifactId>
205-
<version>2.0</version>
190+
<version>2.1</version>
206191
<scope>compile</scope>
207192
</dependency>
208193
<dependency>
209194
<groupId>com.google.guava</groupId>
210195
<artifactId>guava</artifactId>
211-
<version>31.1-jre</version>
196+
<version>32.1.2-jre</version>
212197
<scope>compile</scope>
213198
</dependency>
214199
<dependency>
215200
<groupId>commons-codec</groupId>
216201
<artifactId>commons-codec</artifactId>
217-
<version>1.15</version>
202+
<version>1.16.0</version>
218203
<scope>compile</scope>
219204
</dependency>
220205
<dependency>
@@ -232,7 +217,7 @@
232217
<dependency>
233218
<groupId>com.github.mcchampions</groupId>
234219
<artifactId>JSON-java</artifactId>
235-
<version>qs-fork-1.0</version>
220+
<version>qs-fork-1.2</version>
236221
<scope>compile</scope>
237222
</dependency>
238223
<dependency>
@@ -301,7 +286,6 @@
301286
<version>15.2</version>
302287
<scope>compile</scope>
303288
</dependency>
304-
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-reload4j -->
305289
<dependency>
306290
<groupId>org.slf4j</groupId>
307291
<artifactId>slf4j-reload4j</artifactId>

0 commit comments

Comments
 (0)