Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
  • Loading branch information
mcchampions committed Aug 18, 2023
1 parent 6012670 commit fef952a
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 54 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Dodo开放平台的JavaSDK

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

JavaDoc:https://mcchampions.github.io/
JavaDoc:https://qscraft.top/javadoc

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

Expand Down Expand Up @@ -48,43 +48,43 @@ permissions: 763KB
<dependency>
<groupId>top.qscraft.dodoopenjava</groupId>
<artifactId>core</artifactId>
<version>2.5.2</version>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>top.qscraft.dodoopenjava</groupId>
<artifactId>command</artifactId>
<version>2.5.2</version>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>top.qscraft.dodoopenjava</groupId>
<artifactId>configuration</artifactId>
<version>2.5.2</version>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>top.qscraft.dodoopenjava</groupId>
<artifactId>event-core</artifactId>
<version>2.5.2</version>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>top.qscraft.dodoopenjava</groupId>
<artifactId>event-websocket</artifactId>
<version>2.5.2</version>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>top.qscraft.dodoopenjava</groupId>
<artifactId>event-webhook</artifactId>
<version>2.5.2</version>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>top.qscraft.dodoopenjava</groupId>
<artifactId>permissions</artifactId>
<version>2.5.2</version>
<version>2.5.6</version>
</dependency>
<!--又或者直接合成一个依赖项-->
<dependency>
<groupId>top.qscraft</groupId>
<artifactId>dodoopenjava</artifactId>
<version>2.5.2</version>
<version>2.5.6</version>
</dependency>
</dependencies>
```
Expand All @@ -97,15 +97,15 @@ permissions: 763KB
}
dependencies {
implementation 'top.qscraft.dodoopenjava:core:2.5.2'
implementation 'top.qscraft.dodoopenjava:command:2.5.2'
implementation 'top.qscraft.dodoopenjava:configuration:2.5.2'
implementation 'top.qscraft.dodoopenjava:event-core:2.5.2'
implementation 'top.qscraft.dodoopenjava:event-websocket:2.5.2'
implementation 'top.qscraft.dodoopenjava:event-webhook:2.5.2'
implementation 'top.qscraft.dodoopenjava:permissions:2.5.2'
implementation 'top.qscraft.dodoopenjava:core:2.5.6'
implementation 'top.qscraft.dodoopenjava:command:2.5.6'
implementation 'top.qscraft.dodoopenjava:configuration:2.5.6'
implementation 'top.qscraft.dodoopenjava:event-core:2.5.6'
implementation 'top.qscraft.dodoopenjava:event-websocket:2.5.6'
implementation 'top.qscraft.dodoopenjava:event-webhook:2.5.6'
implementation 'top.qscraft.dodoopenjava:permissions:2.5.6'
//又或者直接合成一个依赖项
implementation 'top.qscraft:dodoopenjava:2.5.2'
implementation 'top.qscraft:dodoopenjava:2.5.6'
}
```
### 教程(过于古老,无参考价值,改日重写)
Expand Down
58 changes: 21 additions & 37 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<revision>2.5.5</revision>
<revision>2.5.6</revision>
</properties>

<groupId>io.github.minecraftchampions.dodoopenjava</groupId>
Expand Down Expand Up @@ -55,6 +55,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand All @@ -71,23 +84,6 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
Expand Down Expand Up @@ -154,11 +150,6 @@
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id> lss233-minecraft </id>
<name> Lss233's Minecraft Repository </name>
<url>https://lss233.littleservice.cn/repositories/minecraft</url>
</repository>
</repositories>

<dependencyManagement>
Expand All @@ -169,7 +160,6 @@
<version>4.11.0</version>
<scope>compile</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.squareup.okio/okio -->
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
Expand All @@ -179,13 +169,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cloud.commandframework</groupId>
<artifactId>cloud-core</artifactId>
<version>1.8.3</version>
<version>3.13.0</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -197,24 +181,25 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<version>2.13.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.0</version>
<version>2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
<version>32.1.2-jre</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</version>
<version>1.16.0</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -232,7 +217,7 @@
<dependency>
<groupId>com.github.mcchampions</groupId>
<artifactId>JSON-java</artifactId>
<version>qs-fork-1.0</version>
<version>qs-fork-1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -301,7 +286,6 @@
<version>15.2</version>
<scope>compile</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-reload4j -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
Expand Down

0 comments on commit fef952a

Please sign in to comment.