HexCasting/settings.gradle

20 lines
468 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/'
}
}
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-04-25 16:40:32 +02:00
include("Common", "Fabric", "Forge")