ViaFabric/build.gradle.kts

66 lines
2.0 KiB
Plaintext
Raw Normal View History

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-05-29 19:57:17 +02:00
id("fabric-loom") version "0.2.4-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-10-27 13:26:40 +01:00
version = "0.2.0-SNAPSHOT+" + try {
gitVersion()
} catch (e: Exception) {
"unknown"
}
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/")
maven(url = "http://server.bbkr.space:8081/artifactory/libs-snapshot")
2019-03-20 23:39:34 +01:00
}
tasks.named<ProcessResources>("processResources") {
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 because Guava is conflicting on runClient
2019-10-27 13:26:40 +01:00
compile("us.myles:viaversion:3.0.0-SNAPSHOT") { isTransitive = false }
//include("us.myles:viaversion:3.0.0-SNAPSHOT")
2019-03-20 23:39:34 +01:00
compileOnly("com.google.code.findbugs:jsr305:3.0.2")
2019-10-24 21:46:50 +02:00
minecraft("com.mojang:minecraft:19w42a")
mappings("net.fabricmc:yarn:19w42a+build.1")
2019-10-05 23:51:35 +02:00
modCompile("net.fabricmc:fabric-loader:0.6.3+build.167")
2019-03-20 23:39:34 +01:00
2019-10-24 21:46:50 +02:00
modCompile("net.fabricmc.fabric-api:fabric-api:0.4.8+build.255-1.15")
modCompile("io.github.cottonmc:cotton-client-commands:0.4.2+1.14.3-SNAPSHOT")
include("io.github.cottonmc:cotton-client-commands:0.4.2+1.14.3-SNAPSHOT")
2019-03-20 23:39:34 +01:00
}
minecraft {
2019-05-27 19:46:26 +02:00
}