2019-02-07 16:09:35 -08:00
|
|
|
/*
|
|
|
|
* This file was generated by the Gradle 'init' task.
|
|
|
|
*
|
|
|
|
* The settings file is used to specify which projects to include in your build.
|
|
|
|
*
|
|
|
|
* Detailed information about configuring a multi-project build in Gradle can be found
|
|
|
|
* in the user guide at https://docs.gradle.org/4.9/userguide/multi_project_builds.html
|
|
|
|
*/
|
|
|
|
rootProject.name = "mcMMO"
|
2019-02-07 19:55:52 -08:00
|
|
|
include(
|
|
|
|
// Core abstraction layer of mcMMO
|
|
|
|
"core",
|
|
|
|
|
|
|
|
// Bukkit/Spigot versions, core bukkit has plugin class
|
|
|
|
"bukkit",
|
|
|
|
"bukkit:1_13",
|
|
|
|
"bukkit:1_12",
|
|
|
|
"bukkit:1_8_8",
|
|
|
|
|
|
|
|
// Sponge Projects - SpongeAPI follows semver, so API versions can change
|
|
|
|
"sponge", // Generic plugin class contains references to load specific listeners and registrations between APIs.
|
|
|
|
"sponge:api7" // API 7 is special for MC 1.12.2
|
|
|
|
)
|
2019-02-07 17:10:08 -08:00
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
maven("https://repo.spongepowered.org/maven/")
|
2019-02-16 18:39:44 -08:00
|
|
|
maven("https://files.minecraftforge.net/maven/")
|
2019-02-07 17:10:08 -08:00
|
|
|
gradlePluginPortal()
|
|
|
|
}
|
|
|
|
}
|