The AQUARIUS SDK for Java enables JAVA developers to easily work with the AQUARIUS Platform of environmental monitoring products.
- AQUARIUS Time-Series
- AQUARIUS Samples
- AQUARIUS WebPortal (coming soon!)
View the Release Notes here.
- Requires Java 8
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>
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"
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"
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
.
See the Wiki for basic SDK concepts and examples.
Contributions are always welcome, no matter how large or small. Before contributing, please read the code of conduct.
See Contributing.