OMERO client library for QBiC's web portal - A Java-based library to access an OMERO server.
For technical details see the OMERO Java API .
To build this library use Maven and Java 8:
First compile the project and build an executable java archive:
mvn clean packageNote that you will need java 8. The JAR file will be created in the /target folder:
|-target
|---omero-client-lib-<version>.jar
|---...This library can be tested locally using:
mvn clean install -UNote that this will install the package locally as the version specified in the pom.xml. See the following extract:
<groupId>life.qbic</groupId>
<artifactId>omero-client-lib</artifactId>
<version>1.3.0</version>
<name>OMERO client library</name>This is a library and the most common way to use this library in particular is by including it in your pom.xml as a dependency:
<dependency>
<groupId>life.qbic</groupId>
<artifactId>omero-client-lib</artifactId>
<version>X.Y.Z</version>
</dependency>This work is licensed under the MIT license. Note: This work uses the Open Microscopy Environment Framework and derivatives from the Omero framework family, which are licensed under GNU General Public License (GPL).