Skip to content

Commit 982f01c

Browse files
committed
Initial commit
0 parents  commit 982f01c

10 files changed

Lines changed: 381 additions & 0 deletions

File tree

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
.gradle/
2+
.gradle/*
3+
*/.gradle/*
4+
5+
build/
6+
build/*
7+
*/build/*
8+
9+
.settings/
10+
.settings/*
11+
*/.settings/*
12+
13+
bin/
14+
bin/*
15+
*/bin/*
16+
17+
.classpath
18+
*/.classpath
19+
20+
.project
21+
*/.project
22+
23+
.idea
24+
*/.idea

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Blue <https://www.bluecolored.de>
4+
Copyright (c) contributors
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
![title-banner](https://bluecolored.de/paste/BluemapBanner.png)
2+
3+
### Using BlueMapAPI
4+
- (TODO) -
5+
6+
### Discord
7+
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)!
8+
9+
### Clone
10+
If you have git installed, simply use the command `git clone https://github.com/BlueMap-Minecraft/BlueMapAPI.git` to clone BlueMapAPI.
11+
12+
### Build
13+
In order to build BlueMap you simply need to run the `./gradlew build` command in BlueMap's root directory.
14+
You can find the compiled JAR files in `./build/libs`.
15+
16+
### Issues / Suggestions
17+
You found a bug, have another issue or a suggestion? Please create an issue [here](https://github.com/BlueMap-Minecraft/BlueMapAPI/issues)!
18+
19+
### Contributing
20+
You are welcome to contribute!
21+
Just create a pull request with your changes :)

build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
repositories {
6+
jcenter()
7+
mavenCentral()
8+
maven {
9+
url 'https://jitpack.io'
10+
}
11+
}
12+
13+
apply plugin: 'java'
14+
15+
group = 'de.bluecolored.bluemap.api'
16+
version = apiVersion

gradle.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
org.gradle.jvmargs=-Xmx3G
2+
org.gradle.daemon=false
3+
4+
apiVersion=1.0.0

gradle/wrapper/gradle-wrapper.jar

54.3 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

Lines changed: 188 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 100 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'BlueMapAPI'

0 commit comments

Comments
 (0)