2020-01-20 14:51:20 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven { url = 'https://files.minecraftforge.net/maven/' }
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
|
|
|
2020-03-30 02:34:18 +02:00
|
|
|
minecraft {
|
|
|
|
mappings channel: 'snapshot', version: '20190719-1.14.3'
|
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
compile.extendsFrom include
|
|
|
|
}
|
2020-01-20 14:51:20 +01:00
|
|
|
|
|
|
|
dependencies {
|
2020-03-30 02:34:18 +02:00
|
|
|
minecraft 'net.minecraftforge:forge:1.15.2-31.1.0'
|
2020-04-06 17:55:35 +02:00
|
|
|
|
|
|
|
include (project(':BlueMapCommon')) {
|
|
|
|
//exclude dependencies provided by forge
|
|
|
|
exclude group: 'com.google.guava', module: 'guava'
|
|
|
|
exclude group: 'com.google.code.gson', module: 'gson'
|
|
|
|
exclude group: 'org.apache.commons', module: 'commons-lang3'
|
|
|
|
exclude group: 'commons-io', module: 'commons-io'
|
|
|
|
}
|
2020-01-20 14:51:20 +01:00
|
|
|
}
|
|
|
|
|
2020-03-30 02:34:18 +02:00
|
|
|
build.dependsOn shadowJar {
|
2020-04-09 15:35:52 +02:00
|
|
|
destinationDir = file '../build/unsupported'
|
2020-03-30 02:34:18 +02:00
|
|
|
archiveFileName = "BlueMap-${version}-forge.jar"
|
|
|
|
|
|
|
|
configurations = [project.configurations.include]
|
|
|
|
|
2020-04-06 17:55:35 +02:00
|
|
|
relocate 'com.flowpowered.math', 'de.bluecolored.shadow.flowpowered.math'
|
|
|
|
relocate 'com.typesafe.config', 'de.bluecolored.shadow.typesafe.config'
|
|
|
|
relocate 'net.querz.nbt', 'de.bluecolored.shadow.querz.nbt'
|
|
|
|
relocate 'ninja.leaping.configurate', 'de.bluecolored.shadow.ninja.leaping.configurate'
|
|
|
|
relocate 'org.yaml.snakeyaml', 'de.bluecolored.shadow.yaml.snakeyaml'
|
2020-03-30 02:34:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
2020-04-04 16:05:56 +02:00
|
|
|
include 'mcmod.info','META-INF/mods.toml'
|
2020-03-30 02:34:18 +02:00
|
|
|
|
|
|
|
expand (
|
|
|
|
version: project.version
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2020-04-04 16:05:56 +02:00
|
|
|
|
|
|
|
afterEvaluate {
|
|
|
|
reobf {
|
|
|
|
shadowJar {
|
|
|
|
mappings = createMcpToSrg.output
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|