Skip to content

Latest commit

 

History

History
executable file
·
39 lines (29 loc) · 1.06 KB

File metadata and controls

executable file
·
39 lines (29 loc) · 1.06 KB

Utilities (utils) library

Several utilities and common algorithms used in my remaining projects and libraries. It includes Basic Linear Algebra (bla) library, which provides multiple Vector and Matrix operations. A simple JSON parser, several structures and generic utilities.

Prerequisites

Currently, it requires Java 8.

Installation

The whole project was done in Maven, as such to install this library just run:

mvn install

In order to generate the documentation for the project just run:

mvn javadoc:javadoc

To use this library just add the following code to your Maven project:

<dependency>
  <groupId>pt.it.av.atnog</groupId>
  <artifactId>utils</artifactId>
  <version>1.2</version>
</dependency>

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Status

Build Status