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"
|
2019-04-24 21:43:19 +02:00
|
|
|
id("fabric-loom") version "0.2.2-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
|
2019-04-29 01:33:18 +02:00
|
|
|
version = "0.1.0-SNAPSHOT+" + try {
|
|
|
|
gitVersion()
|
|
|
|
} catch (e: Exception) {
|
|
|
|
"unknown"
|
|
|
|
}
|
2019-03-20 23:39:34 +01:00
|
|
|
extra.set("archivesBaseName", "ViaFabric")
|
|
|
|
description = "Client-side and server-side ViaVersion for Fabric"
|
|
|
|
|
|
|
|
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/")
|
|
|
|
maven(url = "http://server.bbkr.space:8081/artifactory/libs-snapshot")
|
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 {
|
|
|
|
// transitive = false, viabackwards-core because Guava is conflicting on runClient
|
2019-04-24 20:59:00 +02:00
|
|
|
compile("us.myles:viaversion:2.0.2-SNAPSHOT") { isTransitive = false }
|
|
|
|
include("us.myles:viaversion:2.0.2-SNAPSHOT")
|
2019-04-08 19:37:46 +02:00
|
|
|
compile("de.gerrygames:viarewind-core:1.4.0") { isTransitive = false }
|
|
|
|
include("de.gerrygames:viarewind-core:1.4.0")
|
|
|
|
compile("nl.matsv:viabackwards-core:3.0.0-19w11b") { isTransitive = false } // todo update
|
|
|
|
include("nl.matsv:viabackwards-core:3.0.0-19w11b")
|
2019-03-20 23:39:34 +01:00
|
|
|
|
|
|
|
compileOnly("com.google.code.findbugs:jsr305:3.0.2")
|
|
|
|
|
2019-04-23 20:13:23 +02:00
|
|
|
minecraft("com.mojang:minecraft:1.14")
|
2019-04-26 20:07:08 +02:00
|
|
|
mappings("net.fabricmc:yarn:1.14+build.3")
|
2019-04-29 01:37:05 +02:00
|
|
|
modCompile("net.fabricmc:fabric-loader:0.4.5+build.140")
|
2019-03-20 23:39:34 +01:00
|
|
|
|
2019-04-22 20:05:34 +02:00
|
|
|
modCompile("net.fabricmc:fabric:0.2.7+build.127")
|
2019-04-26 21:35:25 +02:00
|
|
|
|
2019-04-30 19:48:22 +02:00
|
|
|
modCompile("io.github.cottonmc:cotton-client-commands:0.3.0+1.14-SNAPSHOT")
|
|
|
|
include("io.github.cottonmc:cotton-client-commands:0.3.0+1.14-SNAPSHOT")
|
2019-03-20 23:39:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
minecraft {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
|
|
|
|
// if it is present.
|
|
|
|
// If you remove this task, sources will not be generated.
|
|
|
|
tasks.register<Jar>("sourcesJar") {
|
|
|
|
dependsOn(tasks.getByName("classes"))
|
2019-04-05 19:55:59 +02:00
|
|
|
archiveClassifier.set("sources")
|
2019-03-20 23:39:34 +01:00
|
|
|
from(sourceSets.getByName("main").allSource)
|
2019-04-08 02:49:15 +02:00
|
|
|
}
|