From b7a1150b18508602afda76676c483bfa716be0e2 Mon Sep 17 00:00:00 2001 From: "Blue (Lukas Rieger)" Date: Thu, 9 Apr 2020 22:15:08 +0200 Subject: [PATCH] Add BlueMapAPI submodule --- .gitmodules | 3 +++ BlueMapAPI | 1 + BlueMapCommon/build.gradle | 1 + README.md | 2 +- settings.gradle | 4 +++- 5 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .gitmodules create mode 160000 BlueMapAPI diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..206668b2 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "BlueMapAPI"] + path = BlueMapAPI + url = https://github.com/BlueMap-Minecraft/BlueMapAPI diff --git a/BlueMapAPI b/BlueMapAPI new file mode 160000 index 00000000..982f01cc --- /dev/null +++ b/BlueMapAPI @@ -0,0 +1 @@ +Subproject commit 982f01cc47beaf446d4baea47eb167dd642c40fc diff --git a/BlueMapCommon/build.gradle b/BlueMapCommon/build.gradle index d8406125..de0ea2ca 100644 --- a/BlueMapCommon/build.gradle +++ b/BlueMapCommon/build.gradle @@ -1,3 +1,4 @@ dependencies { compile project(':BlueMapCore') + compile project(':BlueMapAPI') } diff --git a/README.md b/README.md index 39316a6d..2c4968c6 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/settings.gradle b/settings.gradle index 44af695d..fd1b97fc 100644 --- a/settings.gradle +++ b/settings.gradle @@ -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 \ No newline at end of file +project(':BlueMapForge').projectDir = "$rootDir/BlueMapForge" as File +project(':BlueMapAPI').projectDir = "$rootDir/BlueMapAPI" as File