Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.3 KB

installation.rst

File metadata and controls

36 lines (24 loc) · 1.3 KB

Maven

The Lablink plotter's compiled Java package is available on the Maven Central Repository. Use it in your local Maven setup by including the following dependency into your pom.xml:

<dependency>
  <groupId>at.ac.ait.lablink.clients</groupId>
  <artifactId>plotter</artifactId>
  <version>0.0.2</version>
</dependency>

Note

You may have to adapt this snippet to use the latest version, please check the Maven Central Repository.

Building from source

Installation from source requires a local Java Development Kit installation, for instance the Oracle Java SE Development Kit 13 or the OpenJDK.

Check out the project and compile it with Maven:

git clone https://github.com/AIT-Lablink/lablink-plotter.git
cd lablink-plotter
mvnw clean package

This should create JAR file plotter-<VERSION>-jar-with-dependencies.jar in subdirectory target/assembly. Also, all additional Lablink resources needed for running the :doc:`examples <examples>` will be copied to directory target/dependency.