Skip to content
This repository has been archived by the owner on May 24, 2019. It is now read-only.

Latest commit

 

History

History
112 lines (86 loc) · 4.35 KB

README.md

File metadata and controls

112 lines (86 loc) · 4.35 KB

License Maven Central GitHub Release CircleCI

Mango

A collection of useful utilities - Packaged in little boxes for your development pleasure

Table of Contents

Usage

Artifact Coordinates: com.torchmind.mango:<module>:1.0
JavaDoc: Concurrency | Event

<dependency>
  <groupId>com.torchmind.mango</groupId>
  <artifactId><!-- DESIRED MODULE HERE --></artifactId>
  <version>2.0</version>
</dependency>

<!-- For unstable releases: -->
<repository>
  <id>ossrh</id>
  <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  
  <snapshots>
    <enabled>true</enabled>
  </snapshots>
</repository>

<dependency>
  <groupId>com.torchmind.mango</groupId>
  <artifactId><!-- DESIRED MODULE HERE --></artifactId>
  <version>2.0-SNAPSHOT</version>
</dependency>

Building

  1. Clone this repository via git clone https://github.com/Torchmind/Mango.git or download a zip
  2. Build the library by running mvn clean install
  3. The resulting jars can be found in their respective target directories as well as your local maven repository

Contact

Issues

You encountered problems with the library or have a suggestion? Create an issue!

  1. Make sure your issue has not been fixed in a newer version (check the list of closed issues
  2. Create a new issue from the issues page
  3. Enter your issue's title (something that summarizes your issue) and create a detailed description containing:
    • What is the expected result?
    • What problem occurs?
    • How to reproduce the problem?
    • Crash Log (Please use a Pastebin service)
  4. Click "Submit" and wait for further instructions

Contributing

Before you add any major changes to the library you may want to discuss them with us (see Contact) as we may choose to reject your changes for various reasons. All contributions are applied via Pull-Requests. Patches will not be accepted. Also be aware that all of your contributions are made available under the terms of the Apache License 2.0. Please read the Contribution Guidelines for more information.

License

This project is released under the terms of the Apache License, Version 2.0.

The following note shall be replicated by all contributors within their respective newly created files (variables are to be replaced; E-Mail address or URL are optional):

Copyright <year> <first name> <surname <[email address/url]>
and other copyright owners as documented in the project's IP log.

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.