Sets of units to use within Java.
You can directly register our repository if you want always the latest version. The central can be versions behind.
<repositories>
<repository>
<id>central</id>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<id>echocat</id>
<url>https://packages.echocat.org/maven</url>
</repository>
</repositories>
repositories {
mavenCentral()
maven {
url "https://packages.echocat.org/maven"
}
}
Find your desired version you want to install (usually the latest one) by looking it up in our repository or directly at the Maven Central.
<dependency>
<groupId>org.echocat.units4j</groupId>
<artifactId>units4j</artifactId>
<version><!-- THE VERSION --></version>
</dependency>
compile 'org.echocat.units4j:units4j:<THE VERSION>'
units4j is an open source project of echocat. So if you want to make this project even better, you can contribute to this project on GitHub by fork us.
If you commit code to this project you have to accept that this code will be released under the license of this project.
See LICENSE file.