2019-03-20 23:39:34 +01:00
|
|
|
import org.apache.tools.ant.filters.ReplaceTokens
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("java")
|
|
|
|
id("net.minecrell.licenser") version "0.4.1"
|
2020-04-13 19:27:30 +02:00
|
|
|
id("fabric-loom") version "0.2.7-SNAPSHOT"
|
2019-03-20 23:39:34 +01:00
|
|
|
id("com.palantir.git-version") version "0.12.0-rc2"
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "com.github.creeper123123321.viafabric"
|
|
|
|
val gitVersion: groovy.lang.Closure<Any> by extra
|
2020-04-14 16:27:51 +02:00
|
|
|
version = "0.2.1-SNAPSHOT+" + try {
|
2019-04-29 01:33:18 +02:00
|
|
|
gitVersion()
|
|
|
|
} catch (e: Exception) {
|
|
|
|
"unknown"
|
2020-04-14 17:39:09 +02:00
|
|
|
} + "+1.16"
|
2019-03-20 23:39:34 +01:00
|
|
|
extra.set("archivesBaseName", "ViaFabric")
|
2019-10-27 13:26:40 +01:00
|
|
|
description = "Client-side and server-side ViaVersion implementation for Fabric"
|
2019-03-20 23:39:34 +01:00
|
|
|
|
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
extra.set("sourceCompatibility", 1.8)
|
|
|
|
extra.set("targetCompatibility", 1.8)
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
2019-04-08 02:49:15 +02:00
|
|
|
maven(url = "https://repo.viaversion.com/")
|
|
|
|
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
|
|
|
|
maven(url = "https://maven.fabricmc.net/")
|
2020-03-24 12:29:41 +01:00
|
|
|
maven(url = "https://server.bbkr.space/artifactory/libs-snapshot")
|
2020-04-13 19:27:30 +02:00
|
|
|
maven(url = "https://server.bbkr.space/artifactory/libs-release")
|
2019-03-20 23:39:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-30 21:47:01 +01:00
|
|
|
tasks.named<ProcessResources>("processResources") {
|
2019-04-29 01:33:18 +02:00
|
|
|
filesMatching("fabric.mod.json") {
|
|
|
|
filter<ReplaceTokens>("tokens" to mapOf(
|
|
|
|
"version" to project.property("version"),
|
|
|
|
"description" to project.property("description")
|
|
|
|
))
|
|
|
|
}
|
2019-03-20 23:39:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-05-12 16:49:42 +02:00
|
|
|
// transitive = false because Guava is conflicting on runClient
|
2020-04-13 19:27:30 +02:00
|
|
|
implementation("us.myles:viaversion:3.0.0-SNAPSHOT") { isTransitive = false }
|
2019-03-20 23:39:34 +01:00
|
|
|
|
2020-04-14 17:39:09 +02:00
|
|
|
// Use 1.16 snapshot, probably intermediary will make it work on further versions
|
|
|
|
// https://modmuss50.me/fabric.html?&version=20w15a
|
|
|
|
minecraft("com.mojang:minecraft:20w15a")
|
|
|
|
mappings("net.fabricmc:yarn:20w15a+build.7:v2")
|
2020-04-13 19:27:30 +02:00
|
|
|
modImplementation("net.fabricmc:fabric-loader:0.8.2+build.194")
|
2019-03-20 23:39:34 +01:00
|
|
|
|
2020-04-14 17:39:09 +02:00
|
|
|
modImplementation("net.fabricmc.fabric-api:fabric-api:0.5.10+build.320-1.16")
|
2019-04-26 21:35:25 +02:00
|
|
|
|
2020-04-13 19:27:30 +02:00
|
|
|
modImplementation("io.github.cottonmc:cotton-client-commands:1.0.0+1.15.2")
|
|
|
|
include("io.github.cottonmc:cotton-client-commands:1.0.0+1.15.2")
|
2019-03-20 23:39:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
minecraft {
|
2019-05-27 19:46:26 +02:00
|
|
|
}
|
2019-11-13 00:07:33 +01:00
|
|
|
|
|
|
|
license {
|
|
|
|
include("**/*.java")
|
|
|
|
}
|