mirror of
https://github.com/sys-32Dev/TACZ.git
synced 2026-08-08 20:06:25 +00:00
24 lines
698 B
Groovy
24 lines
698 B
Groovy
pluginManagement {
|
|
repositories {
|
|
maven { url = 'https://maven.parchmentmc.org' }
|
|
maven {
|
|
// 阿里云镜像,方便国内开发
|
|
url = uri("https://maven.aliyun.com/repository/public/")
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url = 'https://maven.minecraftforge.net/' }
|
|
}
|
|
}
|
|
|
|
sourceControl {
|
|
gitRepository(URI.create("https://github.com/FiguraMC/luaj.git")) {
|
|
producesModule("com.github.FiguraMC.luaj:luaj-jse-figura")
|
|
}
|
|
|
|
gitRepository(URI.create("https://github.com/FiguraMC/luaj.git")) {
|
|
producesModule("com.github.FiguraMC.luaj:luaj-core-figura")
|
|
}
|
|
}
|
|
|
|
rootProject.name = "tacz" |