Despical / Commons

Common utilities needed for Java and Minecraft

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Commons

Commons is a open-source library that provides utilities needed for Java and Minecraft.

Documentation

Using Commons

The project isn't in the Central Repository yet, so specifying a repository is needed.

Maven dependency
<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>
<dependency>
    <groupId>com.github.Despical</groupId>
    <artifactId>Commons</artifactId>
    <version>1.7.6</version>
</dependency>
Gradle dependency
repositories {
    maven { url 'https://jitpack.io' }
}
dependencies {
    implementation 'com.github.Despical:Commons:1.7.6'
}

License

This code is under GPL-3.0 License

See the LICENSE file for required notices and attributions.

Donations

Contributing

I accept Pull Requests via GitHub. There are some guidelines which will make applying PRs easier for me:

  • No spaces! Please use tabs for indentation.
  • Respect the code style.
  • Create minimal diffs. If you feel the source code should be reformatted create a separate PR for this change.

You can learn more about contributing via GitHub in contribution guidelines.

Building from source

To build this project from source code, run the following from Git Bash:

git clone https://www.github.com/Despical/Commons.git && cd Commons
mvn clean package -Dmaven.javadoc.skip=true -DskipTests

Important

Don't forget to install Maven before building.

About

Common utilities needed for Java and Minecraft

License:GNU General Public License v3.0


Languages

Language:Java 100.0%