mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-22 10:35:16 +01:00
Fix a few issues with building on windows
This commit is contained in:
parent
cebe8b93ad
commit
989e4253f2
@ -39,6 +39,7 @@ task zipWebroot(type: Zip) {
|
||||
|
||||
// removes tmp build directory, build project with webpack, zip contents for the shaded jar
|
||||
task buildWebroot {
|
||||
dependsOn 'npmInstall'
|
||||
dependsOn 'cleanWebroot'
|
||||
dependsOn 'webpackWebroot'
|
||||
dependsOn 'zipWebroot'
|
||||
|
@ -1,9 +1,7 @@
|
||||
{
|
||||
"name": "bluemap",
|
||||
"version": "1.0.0",
|
||||
"description": "BlueMap is a tool that generates 3d-maps of your Minecraft worlds and displays them in your browser.",
|
||||
"private": true,
|
||||
"main": "bluemap.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/BlueMap-Minecraft/BlueMap.git"
|
||||
@ -24,6 +22,7 @@
|
||||
"devDependencies": {
|
||||
"css-loader": "^3.4.2",
|
||||
"fibers": "^4.0.2",
|
||||
"file-loader": "^5.0.2",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"node-sass": "^4.13.0",
|
||||
|
@ -1,5 +1,5 @@
|
||||
dependencies {
|
||||
shadow "org.spongepowered:spongeapi:7.1.0-SNAPSHOT"
|
||||
compile "org.spongepowered:spongeapi:7.1.0-SNAPSHOT"
|
||||
compile group: 'org.bstats', name: 'bstats-sponge-lite', version: '1.5'
|
||||
compile project(':BlueMapCore')
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ Easy:
|
||||
`git clone https://github.com/BlueMap-Minecraft/BlueMap.git`
|
||||
|
||||
### Build
|
||||
In order to build BlueMap you simply need to run the `./gradlew shadowJar` command.
|
||||
In order to build BlueMap you simply need to run the `./gradlew build` command.
|
||||
You can find the compiled JAR file in `./build/libs`
|
||||
|
||||
### Issues / Suggestions
|
||||
|
@ -1,6 +1,6 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'com.github.johnrengelman.shadow' version '5.1.0'
|
||||
id 'com.github.johnrengelman.shadow' version '1.2.4'
|
||||
}
|
||||
|
||||
allprojects {
|
||||
@ -31,7 +31,7 @@ dependencies {
|
||||
//compile project(':BlueMapSponge')
|
||||
}
|
||||
|
||||
shadowJar {
|
||||
assemble.dependsOn shadowJar {
|
||||
baseName = 'BlueMap'
|
||||
version = null
|
||||
classifier = null
|
||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
Loading…
Reference in New Issue
Block a user