mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-27 17:00:14 +08:00
2.0-RC
This commit is contained in:
parent
70f28fd653
commit
fe151a90fd
@ -12,7 +12,7 @@
|
|||||||
import org.gradle.api.attributes.Attribute
|
import org.gradle.api.attributes.Attribute
|
||||||
|
|
||||||
object Versions {
|
object Versions {
|
||||||
const val project = "2.0-RC-dev-9"
|
const val project = "2.0-RC"
|
||||||
|
|
||||||
const val kotlinCompiler = "1.4.21"
|
const val kotlinCompiler = "1.4.21"
|
||||||
const val kotlinStdlib = "1.4.21"
|
const val kotlinStdlib = "1.4.21"
|
||||||
|
@ -11,12 +11,10 @@
|
|||||||
|
|
||||||
| 版本类型 | 版本号 |
|
| 版本类型 | 版本号 |
|
||||||
|:------:|:------------------------------:|
|
|:------:|:------------------------------:|
|
||||||
| 稳定 | 1.3.3 |
|
| 稳定 | 2.0-RC |
|
||||||
| 预览 | 2.0-M2-2 |
|
| 预览 | - |
|
||||||
| 开发 | [![Version]][Bintray Download] |
|
| 开发 | [![Version]][Bintray Download] |
|
||||||
|
|
||||||
**即使 2.0 还没有稳定,也建议使用 2.0 预览版本,因 1.x 版本将不会收到任何更新。**
|
|
||||||
|
|
||||||
### 配置项目
|
### 配置项目
|
||||||
|
|
||||||
- 如果你熟悉 Gradle,只需要添加 `jcenter` 仓库和依赖 `net.mamoe:mirai-core:VERSION` 即可而不需要继续阅读。下文将详细解释其他方法。
|
- 如果你熟悉 Gradle,只需要添加 `jcenter` 仓库和依赖 `net.mamoe:mirai-core:VERSION` 即可而不需要继续阅读。下文将详细解释其他方法。
|
||||||
@ -45,7 +43,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api("net.mamoe", "mirai-core", "1.3.3") // 替换为你需要的版本号
|
api("net.mamoe", "mirai-core", "2.0-RC") // 替换为你需要的版本号
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -65,7 +63,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api('net.mamoe', 'mirai-core', '1.3.3') // 替换为你需要的版本号
|
api('net.mamoe', 'mirai-core', '2.0-RC') // 替换为你需要的版本号
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -74,7 +72,7 @@ dependencies {
|
|||||||
mirai 在开发时需要 `net.mamoe:mirai-core-api`, 在运行时需要 `net.mamoe:mirai-core`。可以在开发和编译时只依赖 `mirai-core-api`。
|
mirai 在开发时需要 `net.mamoe:mirai-core-api`, 在运行时需要 `net.mamoe:mirai-core`。可以在开发和编译时只依赖 `mirai-core-api`。
|
||||||
```kotlin
|
```kotlin
|
||||||
dependencies {
|
dependencies {
|
||||||
val miraiVersion = "1.3.3" // 替换为你需要的版本号
|
val miraiVersion = "2.0-RC" // 替换为你需要的版本号
|
||||||
api("net.mamoe", "mirai-core-api", miraiVersion) // 编译代码使用
|
api("net.mamoe", "mirai-core-api", miraiVersion) // 编译代码使用
|
||||||
runtimeOnly("net.mamoe", "mirai-core", miraiVersion) // 运行时使用
|
runtimeOnly("net.mamoe", "mirai-core", miraiVersion) // 运行时使用
|
||||||
}
|
}
|
||||||
@ -102,7 +100,7 @@ dependencies {
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.mamoe</groupId>
|
<groupId>net.mamoe</groupId>
|
||||||
<artifactId>mirai-core-jvm</artifactId>
|
<artifactId>mirai-core-jvm</artifactId>
|
||||||
<version>1.3.3</version> <!-- 替换版本为你需要的版本 -->
|
<version>2.0-RC</version> <!-- 替换版本为你需要的版本 -->
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user