mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-27 13:36:38 +08:00
- Create project build scripts and configuration files - Define module paths and project flags - Set up Kotlin and Spring Boot plugins - Configure Maven publishing and semantic versioning plugins - Add a source code packaging task - Set up the project dependency repositories - Initialize gradle-wrapper
26 lines
703 B
Plaintext
26 lines
703 B
Plaintext
// This file is used to define the repositories used by the project.
|
|
repositories {
|
|
mavenLocal()
|
|
maven {
|
|
url = uri("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev")
|
|
}
|
|
maven {
|
|
url = uri("https://raw.githubusercontent.com/eurotech/kura_addons/mvn-repo/")
|
|
}
|
|
maven {
|
|
url = uri("https://maven.aliyun.com/repository/public/")
|
|
}
|
|
maven {
|
|
url = uri("https://maven.aliyun.com/repository/spring/")
|
|
}
|
|
maven {
|
|
url = uri("https://maven.aliyun.com/repository/spring-plugin/")
|
|
}
|
|
maven {
|
|
url = uri("https://maven.aliyun.com/repository/gradle-plugin/")
|
|
}
|
|
mavenCentral()
|
|
google()
|
|
gradlePluginPortal()
|
|
}
|