Skip to content

SparklingComet/java-mojang-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Mojang API

This repository provides a full Java-wrapper for the Mojang Web-API.
More information on the API may be found on the Wiki page.

Getting Started

  • Clone the repository and compile it with Maven and add it to your build path.
$    git clone https://github.com/SparklingComet/java-mojang-api.git
$    mvn clean install
  • Alternatively, you can use Maven to include the dependency in your project:
<project>
    <!-- Your stuff here... -->
    <repositories>
        <!-- More repositories... -->
	<repository>
	    <id>jitpack.io</id>
	    <url>https://jitpack.io</url>
	</repository>
    </repositories>
	
    <dependencies>
	<!-- More dependencies... -->
	<dependency>
    	    <groupId>com.github.SparklingComet</groupId>
    	    <artifactId>java-mojang-api</artifactId>
    	    <version>-SNAPSHOT</version>
    	</dependency>
    </dependencies>
</project>
  • You can also use Gradle as a dependency manager:
allprojects {
    repositories {
	...
	maven { url 'https://jitpack.io' }
    }
}
	
dependencies {
    compile 'com.github.SparklingComet:java-mojang-api:-SNAPSHOT'
}
  • More information on using dependency managers with this repository may be found on Jitpack.
  • Precompiled binaries will be made available on our CI server soon.

Usage

Once you have imported the library, use the following to establish a connection with Mojang's servers.

Mojang api = new Mojang().connect();

Documentation

  • Generated HTML-Javadoc files are available for download in HTML-format in the docs/ directory.
  • You may also use the live version (click)

License

The project is licensed under the Apache License v2.0 (view).

To license your own project with it, add the file its root and prefix your source files with

/*
 *     Copyright 2016-2017 SparklingComet @ http://shanerx.org
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *          http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */