HexCasting/settings.gradle

22 lines
522 B
Groovy
Raw Normal View History

2022-04-25 16:40:32 +02:00
pluginManagement {
repositories {
gradlePluginPortal()
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
maven {
name = 'Sponge Snapshots'
url = 'https://repo.spongepowered.org/repository/maven-public/'
}
maven { url 'https://maven.blamejared.com' }
2022-04-25 16:40:32 +02:00
}
2022-05-15 23:48:18 +02:00
plugins {
id "org.jetbrains.kotlin.jvm" version kotlinVersion
}
2022-04-25 16:40:32 +02:00
}
2022-05-14 22:15:25 +02:00
rootProject.name = 'Hex Casting'
2022-11-06 20:02:53 +01:00
include("Common", "Fabric", "Forge")