Add BlueMapAPI submodule

This commit is contained in:
Blue (Lukas Rieger) 2020-04-09 22:15:08 +02:00
parent 05cfe7bd09
commit b7a1150b18
5 changed files with 9 additions and 2 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "BlueMapAPI"]
path = BlueMapAPI
url = https://github.com/BlueMap-Minecraft/BlueMapAPI

1
BlueMapAPI Submodule

@ -0,0 +1 @@
Subproject commit 982f01cc47beaf446d4baea47eb167dd642c40fc

View File

@ -1,3 +1,4 @@
dependencies {
compile project(':BlueMapCore')
compile project(':BlueMapAPI')
}

View File

@ -19,7 +19,7 @@ BlueMap can be used on the command-line, or as a plugin for your Sponge/Spigot/P
If you have a question, help others using BlueMap or get the latest news and info you are welcome to join us [on Discord](https://discord.gg/zmkyJa3)!
### Clone
If you have git installed, simply use the command `git clone https://github.com/BlueMap-Minecraft/BlueMap.git` to clone BlueMap.
If you have git installed, simply use the command `git clone --recursive https://github.com/BlueMap-Minecraft/BlueMap.git` to clone BlueMap.
### Build
In order to build BlueMap you simply need to run the `./gradlew clean build` command in BlueMap's root directory.

View File

@ -5,10 +5,12 @@ include ':BlueMapCommon'
include ':BlueMapSponge'
include ':BlueMapBukkit'
include ':BlueMapForge'
include ':BlueMapAPI'
project(':BlueMapCore').projectDir = "$rootDir/BlueMapCore" as File
project(':BlueMapCLI').projectDir = "$rootDir/BlueMapCLI" as File
project(':BlueMapCommon').projectDir = "$rootDir/BlueMapCommon" as File
project(':BlueMapSponge').projectDir = "$rootDir/BlueMapSponge" as File
project(':BlueMapBukkit').projectDir = "$rootDir/BlueMapBukkit" as File
project(':BlueMapForge').projectDir = "$rootDir/BlueMapForge" as File
project(':BlueMapForge').projectDir = "$rootDir/BlueMapForge" as File
project(':BlueMapAPI').projectDir = "$rootDir/BlueMapAPI" as File