mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-05 10:29:45 +01:00
79 lines
1.9 KiB
Groovy
79 lines
1.9 KiB
Groovy
plugins {
|
|
id 'com.moowork.node' version '1.3.1'
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.google.guava:guava:21.0'
|
|
compile 'com.google.code.gson:gson:2.8.0'
|
|
compile 'org.apache.commons:commons-lang3:3.6'
|
|
compile group: 'commons-io', name: 'commons-io', version: '2.5'
|
|
compile 'com.flowpowered:flow-math:1.0.3'
|
|
compile 'ninja.leaping.configurate:configurate-hocon:3.3'
|
|
compile 'ninja.leaping.configurate:configurate-gson:3.3'
|
|
compile 'ninja.leaping.configurate:configurate-yaml:3.3'
|
|
compile 'com.github.Querz:NBT:4.0'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
|
|
processResources {
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
include 'core.json'
|
|
|
|
expand (
|
|
version: project.version
|
|
)
|
|
}
|
|
}
|
|
|
|
node {
|
|
version = '12.14.1'
|
|
download = true
|
|
}
|
|
|
|
license {
|
|
exclude('**/AABB.java')
|
|
}
|
|
|
|
task fixPackageLock() {
|
|
if (!file("./package-lock.json").exists()) {
|
|
file("./package-lock.json").text = ""
|
|
}
|
|
}
|
|
|
|
task cleanWebroot(type: Delete) {
|
|
delete 'build/generated/webroot/'
|
|
}
|
|
|
|
// Run WebPack build to generate resources into the generated resources
|
|
task webpackWebroot(type: NpmTask) {
|
|
args = ['run', 'build']
|
|
}
|
|
|
|
task zipWebroot(type: Zip) {
|
|
from fileTree('build/generated/webroot/')
|
|
archiveName 'webroot.zip'
|
|
destinationDir(file('src/main/resources/'))
|
|
outputs.upToDateWhen { false }
|
|
}
|
|
|
|
// removes tmp build directory, build project with webpack, zip contents for the shaded jar
|
|
task buildWebroot {
|
|
dependsOn 'fixPackageLock'
|
|
dependsOn 'npmInstall'
|
|
dependsOn 'cleanWebroot'
|
|
dependsOn 'webpackWebroot'
|
|
dependsOn 'zipWebroot'
|
|
}
|
|
|
|
task zipResourceExtensions(type: Zip) {
|
|
from fileTree('src/main/resourceExtensions')
|
|
archiveName 'resourceExtensions.zip'
|
|
destinationDir(file('src/main/resources/'))
|
|
outputs.upToDateWhen { false }
|
|
}
|
|
|
|
//always update the zip before build
|
|
processResources.dependsOn(buildWebroot)
|
|
processResources.dependsOn(zipResourceExtensions)
|