Skip to content

Commit 0f03f83

Browse files
committed
chore(gradle): 更新 TabooLib 仓库地址及版本
更新 TabooLib 仓库地址至官方地址,并更新插件版本号。 - 修改 TabooLib 仓库地址为 `https://repo.tabooproject.org/repository/releases`。 - 移除 `allowInsecureProtocol` 配置,因为新地址使用 HTTPS。 - 更新插件版本号至 2.0.23。
1 parent 2a02f0b commit 0f03f83

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "io.izzel.taboolib"
11-
version = "2.0.22"
11+
version = "2.0.23"
1212

1313
configurations {
1414
create("embed") {

src/main/groovy/io/izzel/taboolib/gradle/Env.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Env {
1313
String repoCentral = "https://maven.aliyun.com/repository/central"
1414

1515
/** TabooLib 仓库地址 */
16-
String repoTabooLib = "http://sacredcraft.cn:8081/repository/releases"
16+
String repoTabooLib = "https://repo.tabooproject.org/repository/releases"
1717

1818
/** Library 文件 */
1919
String fileLibs = "libraries"

src/main/groovy/io/izzel/taboolib/gradle/TabooLibPlugin.groovy

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ class TabooLibPlugin implements Plugin<Project> {
1313
void apply(Project project) {
1414
// 添加仓库
1515
project.repositories.maven {
16-
url project.uri("http://sacredcraft.cn:8081/repository/releases/")
17-
allowInsecureProtocol true
16+
url project.uri("https://repo.tabooproject.org/repository/releases/")
1817
}
1918
project.repositories.maven {
2019
url project.uri("https://repo.spongepowered.org/maven")

0 commit comments

Comments
 (0)