File tree 3 files changed +46
-2
lines changed
3 files changed +46
-2
lines changed Original file line number Diff line number Diff line change
1
+ ** 组件更新:**
2
+
3
+ 由于此版本存在大面积不兼容更新,因此下列各组件会以当前版本为目标在三日内进行同步更新。
4
+
5
+ * [ mirai组件] ( https://github.com/simple-robot/simbot-component-mirai )
6
+ * [ Kook组件] ( https://github.com/simple-robot/simbot-component-kook )
7
+ * [ QQ频道组件] ( https://github.com/simple-robot/simbot-component-tencent-guild )
8
+
9
+ ** 仓库参考:**
10
+
11
+ | ** 模块** | ** repo1.maven** | ** search.maven** |
12
+ | ----------------------------------| ----------------------------------------------------------------------------------------------------------------------------------------------------------| -----------------------------------------------------------------------------------------------------------------------------------------------------------------|
13
+ | simbot-api | [ simbot-api: v3.0.0-beta-M3] ( https://repo1.maven.org/maven2/love/forte/simbot/simbot-api/3.0.0-beta-M3 ) | [ simbot-api: v3.0.0-beta-M3] ( https://search.maven.org/artifact/love.forte.simbot/simbot-api/3.0.0-beta-M3/jar ) |
14
+ | simbot-core | [ simbot-core: v3.0.0-beta-M3] ( https://repo1.maven.org/maven2/love/forte/simbot/simbot-core/3.0.0-beta-M3 ) | [ simbot-core: v3.0.0-beta-M3] ( https://search.maven.org/artifact/love.forte.simbot/simbot-core/3.0.0-beta-M3/jar ) |
15
+ | simbot-logger | [ simbot-logger: v3.0.0-beta-M3] ( https://repo1.maven.org/maven2/love/forte/simbot/simbot-logger/3.0.0-beta-M3 ) | [ simbot-logger: v3.0.0-beta-M3] ( https://search.maven.org/artifact/love.forte.simbot/simbot-logger/3.0.0-beta-M3/jar ) |
16
+ | simboot-api | [ simboot-api: v3.0.0-beta-M3] ( https://repo1.maven.org/maven2/love/forte/simbot/boot/simboot-api/3.0.0-beta-M3 ) | [ simboot-api: v3.0.0-beta-M3] ( https://search.maven.org/artifact/love.forte.simbot.boot/simboot-api/3.0.0-beta-M3/jar ) |
17
+ | simboot-core | [ simboot-core: v3.0.0-beta-M3] ( https://repo1.maven.org/maven2/love/forte/simbot/boot/simboot-core/3.0.0-beta-M3 ) | [ simboot-core: v3.0.0-beta-M3] ( https://search.maven.org/artifact/love.forte.simbot.boot/simboot-core/3.0.0-beta-M3/jar ) |
18
+ | simboot-core-annotation | [ simboot-core-annotation: v3.0.0-beta-M3] ( https://repo1.maven.org/maven2/love/forte/simbot/boot/simboot-core-annotation/3.0.0-beta-M3 ) | [ simboot-core-annotation: v3.0.0-beta-M3] ( https://search.maven.org/artifact/love.forte.simbot.boot/simboot-core-annotation/3.0.0-beta-M3/jar ) |
19
+ | simboot-core-spring-boot-starter | [ simboot-core-spring-boot-starter: v3.0.0-beta-M3] ( https://repo1.maven.org/maven2/love/forte/simbot/boot/simboot-core-spring-boot-starter/3.0.0-beta-M3 ) | [ simboot-core-spring-boot-starter: v3.0.0-beta-M3] ( https://search.maven.org/artifact/love.forte.simbot.boot/simboot-core-spring-boot-starter/3.0.0-beta-M3/jar ) |
20
+
21
+
22
+
Original file line number Diff line number Diff line change
1
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
+
1
3
plugins {
2
4
`kotlin- dsl`
3
5
}
@@ -19,4 +21,10 @@ dependencies {
19
21
20
22
// see https://github.com/gradle-nexus/publish-plugin
21
23
implementation(" io.github.gradle-nexus:publish-plugin:1.1.0" )
24
+ }
25
+
26
+ val compileKotlin: KotlinCompile by tasks
27
+
28
+ compileKotlin.kotlinOptions {
29
+ freeCompilerArgs = listOf (" -Xinline-classes" )
22
30
}
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2022 ForteScarlet <[email protected] >
3
+ *
4
+ * 本文件是 simply-robot (或称 simple-robot 3.x 、simbot 3.x ) 的一部分。
5
+ *
6
+ * simply-robot 是自由软件:你可以再分发之和/或依照由自由软件基金会发布的 GNU 通用公共许可证修改之,无论是版本 3 许可证,还是(按你的决定)任何以后版都可以。
7
+ *
8
+ * 发布 simply-robot 是希望它能有用,但是并无保障;甚至连可销售和符合某个特定的目的都不保证。请参看 GNU 通用公共许可证,了解详情。
9
+ *
10
+ * 你应该随程序获得一份 GNU 通用公共许可证的复本。如果没有,请看:
11
+ * https://www.gnu.org/licenses
12
+ * https://www.gnu.org/licenses/gpl-3.0-standalone.html
13
+ * https://www.gnu.org/licenses/lgpl-3.0-standalone.html
14
+ *
15
+ */
16
+
1
17
object Env {
2
18
const val IS_SNAPSHOT = " SIMBOT_IS_SNAPSHOT"
3
19
const val SNAPSHOT_ONLY = " SIMBOT_SNAPSHOT_ONLY"
4
20
const val RELEASES_ONLY = " SIMBOT_RELEASES_ONLY"
5
-
6
-
7
21
}
You can’t perform that action at this time.
0 commit comments