import net.kyori.indra.IndraPlugin import net.kyori.indra.IndraPublishingPlugin import net.kyori.indra.sonatypeSnapshots plugins { `java-library` `maven-publish` id("net.kyori.indra") } group = "us.myles" version = "3.3.0-21w07a" description = "Allow newer clients to join older server versions." subprojects { apply() apply() apply() apply() tasks { // Variable replacements processResources { filesMatching(listOf("plugin.yml", "mcmod.info", "fabric.mod.json", "bungee.yml")) { expand("version" to project.version, "description" to project.description) } } withType { options.compilerArgs.addAll(listOf("-nowarn", "-Xlint:-unchecked", "-Xlint:-deprecation")) } } val platforms = listOf( "bukkit", "bungee", "fabric", "sponge", "velocity" ).map { "viaversion-$it" } if (platforms.contains(project.name)) { configureShadowJar() } repositories { sonatypeSnapshots() maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots") maven("https://nexus.velocitypowered.com/repository/velocity-artifacts-snapshots/") maven("https://repo.spongepowered.org/maven") maven("https://repo.viaversion.com") maven("https://libraries.minecraft.net") maven("https://repo.maven.apache.org/maven2/") } dependencies { testImplementation("io.netty", "netty-all", Versions.netty) testImplementation("com.google.guava", "guava", Versions.guava) testImplementation("org.junit.jupiter", "junit-jupiter-api", Versions.jUnit) testImplementation("org.junit.jupiter", "junit-jupiter-engine", Versions.jUnit) } indra { javaVersions { target.set(8) testWith(8, 11, 15) } github("ViaVersion", "ViaVersion") { issues = true } mitLicense() } publishing.repositories.maven { name = "Via" url = uri("https://repo.viaversion.com/") credentials(PasswordCredentials::class) } } tasks { // root project has no useful artifacts withType { onlyIf { false } } }