import com.github.jengelman.gradle.plugins.shadow.ShadowPlugin plugins { `java-library` `maven-publish` } allprojects { group = "com.viaversion" version = "3.3.0-21w07a" description = "Allow older clients to join newer server versions." } subprojects { 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, "url" to "https://github.com/ViaVersion/ViaBackwards") } } withType { options.encoding = Charsets.UTF_8.name() } withType { options.encoding = Charsets.UTF_8.name() options.compilerArgs.addAll(listOf("-nowarn", "-Xlint:-unchecked", "-Xlint:-deprecation")) } } val platforms = listOf( "bukkit", "bungee", "sponge", "velocity", "fabric" ).map { "viabackwards-$it" } if (platforms.contains(project.name)) { configureShadowJar() } if (project.name == "viabackwards") { apply() } repositories { maven("https://oss.sonatype.org/content/repositories/snapshots/") 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://repo.maven.apache.org/maven2/") mavenLocal() } java { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 withSourcesJar() withJavadocJar() } publishing { publications { create("mavenJava") { groupId = rootProject.group as String artifactId = project.name version = rootProject.version as String if (plugins.hasPlugin(ShadowPlugin::class.java)) { artifact(tasks["shadowJar"]) } else { from(components["java"]) } } } repositories.maven { name = "Via" url = uri("https://repo.viaversion.com/") credentials(PasswordCredentials::class) authentication { create("basic") } } } } tasks { withType { onlyIf { false } } }