mirror of
https://github.com/Lucaslah/WeatherChanger.git
synced 2026-01-02 19:47:50 +00:00
- add forge module - github actions build and release - aim for all-in-one jar supporting both fabric and forge **NOTICE** Forge support is not currently working. Signed-off-by: Lucas Petrino <nsx1lucas@gmail.com>
28 lines
528 B
Kotlin
28 lines
528 B
Kotlin
rootProject.name = "WeatherChanger"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
maven {
|
|
name = "Fabric"
|
|
url = uri("https://maven.fabricmc.net/")
|
|
}
|
|
|
|
maven {
|
|
name = "Forge"
|
|
url = uri("https://maven.minecraftforge.net/")
|
|
}
|
|
|
|
maven {
|
|
name = "Architectury"
|
|
url = uri("https://maven.architectury.dev/")
|
|
}
|
|
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
include("common")
|
|
include("fabric")
|
|
include("forge")
|