Skip to content

AquaticInformatics/aquarius-sdk-java

Repository files navigation

AQUARIUS SDK for Java

Build status

The AQUARIUS SDK for Java enables JAVA developers to easily work with the AQUARIUS Platform of environmental monitoring products.

AQUARIUS Platform

View the Release Notes here.

Consuming the SDK

  • Requires Java 8

Maven

To use this project as a dependency with Maven, add the following dependency to your project's pom.xml:

<dependency>
  <groupId>com.aquaticinformatics</groupId>
  <artifactId>aquarius.sdk</artifactId>
  <version>23.2.0</version>
</dependency>

sbt

To use this project as a dependency with sbt add the following dependency to your project's build.sbt:

libraryDependencies += "com.aquaticinformatics" % "aquarius.sdk" % "23.2.0"

Gradle

To use this project as a dependency with Gradle, add the following dependency to your project's build.gradle:

compile "com.aquaticinformatics:aquarius.sdk:23.2.0"

Others

To use this project as a dependency of another build system, a JAR can be created by running the following commands:

git clone --branch v23.2.0 https://github.com/AquaticInformatics/aquarius-sdk-java.git
cd aquarius-sdk-java
mvn package

The generated JAR file will be at target/aquarius-sdk-23.2.0.jar.

Getting Help

See the Wiki for basic SDK concepts and examples.

Contributing

Contributions are always welcome, no matter how large or small. Before contributing, please read the code of conduct.

See Contributing.