Update docs

This commit is contained in:
Him188 2021-08-25 16:05:22 +08:00
parent b41ee54f6c
commit 2a33fed3a1

View File

@ -13,8 +13,8 @@
| 版本类型 | 版本号 |
|:------:|:------------------------------:|
| 稳定 | 2.6.7 |
| 预览 | 2.7.0 |
| 稳定 | 2.7.0 |
| 预览 | - |
| 开发 | [![Version]][Central Download] |
### 配置项目
@ -34,11 +34,11 @@
```kotlin
plugins {
kotlin("jvm") version "1.4.32" // 确保添加 Kotlin
kotlin("jvm") version "1.5.10" // 确保添加 Kotlin
}
dependencies {
api("net.mamoe", "mirai-core", "2.6.7")
api("net.mamoe", "mirai-core", "2.7.0")
}
```
@ -54,11 +54,11 @@ dependencies {
```groovy
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.32' // 确保添加 Kotlin
id 'org.jetbrains.kotlin.jvm' version '1.5.10' // 确保添加 Kotlin
}
dependencies {
implementation 'net.mamoe:mirai-core:2.6.7'
implementation 'net.mamoe:mirai-core:2.7.0'
}
```
@ -71,7 +71,7 @@ dependencies {
mirai 在开发时需要 `net.mamoe:mirai-core-api`, 在运行时需要 `net.mamoe:mirai-core`。可以在开发和编译时只依赖 `mirai-core-api`,会减轻对 IDE 的负担。
```kotlin
dependencies {
val miraiVersion = "2.6.7"
val miraiVersion = "2.7.0"
api("net.mamoe", "mirai-core-api", miraiVersion) // 编译代码使用
runtimeOnly("net.mamoe", "mirai-core", miraiVersion) // 运行时使用
}
@ -87,7 +87,7 @@ dependencies {
<dependency>
<groupId>net.mamoe</groupId>
<artifactId>mirai-core-jvm</artifactId>
<version>2.6.7</version>
<version>2.7.0</version>
</dependency>
</dependencies>
```
@ -95,11 +95,11 @@ dependencies {
> 注意在 MavenartifactId 要使用带 `-jvm` 后缀的
通常 mirai 可以直接使用。但 mirai 使用的 Kotlin 1.4 可能与你的项目使用的其他库依赖的 Kotlin 版本冲突Maven 有时候无法正确处理这种冲突。此时请手动添加 Kotlin 标准库依赖。
通常 mirai 可以直接使用。但 mirai 使用的 Kotlin 1.5 可能与你的项目使用的其他库依赖的 Kotlin 版本冲突Maven 有时候无法正确处理这种冲突。此时请手动添加 Kotlin 标准库依赖。
```xml
<properties>
<kotlin.version>1.4.32</kotlin.version>
<kotlin.version>1.5.10</kotlin.version>
</properties>
```
```xml