mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-10 20:50:11 +01:00
60 lines
1.4 KiB
Groovy
60 lines
1.4 KiB
Groovy
plugins {
|
|
id 'fabric-loom' version '1.1.10'
|
|
}
|
|
|
|
archivesBaseName = "Dynmap"
|
|
version = parent.version
|
|
group = parent.group
|
|
|
|
eclipse {
|
|
project {
|
|
name = "Dynmap(Fabric-1.15.2)"
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
shadow
|
|
implementation.extendsFrom(shadow)
|
|
}
|
|
|
|
dependencies {
|
|
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
|
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
|
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
|
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
|
|
|
compileOnly group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
|
|
|
|
shadow project(path: ':DynmapCore', configuration: 'shadow')
|
|
}
|
|
|
|
processResources {
|
|
filesMatching('fabric.mod.json') {
|
|
expand "version": project.version
|
|
}
|
|
}
|
|
|
|
java {
|
|
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
|
|
// if it is present.
|
|
// If you remove this line, sources will not be generated.
|
|
withSourcesJar()
|
|
}
|
|
|
|
jar {
|
|
from "LICENSE"
|
|
from {
|
|
configurations.shadow.collect { it.toString().contains("guava") ? null : it.isDirectory() ? it : zipTree(it) }
|
|
}
|
|
}
|
|
|
|
remapJar {
|
|
archiveFileName = "${archivesBaseName}-${project.version}-fabric-${project.minecraft_version}.jar"
|
|
destinationDirectory = file '../target'
|
|
}
|
|
|
|
remapJar.doLast {
|
|
task ->
|
|
ant.checksum file: task.archivePath
|
|
}
|