micronaut-utils-lib - Encapsulation of third party classes that need to be used in the QBiC service environment, using Micronaut (micronaut.io).
Created by Sven Fillinger ([email protected]).
A small collection of classes, that are shared between projects that make use of the Micronaut framework.
Make sure to configure Maven such that it searches in the QBiC repos as well:
<repositories>
...
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
<id>nexus-snapshots</id>
<name>QBiC Snapshots</name>
<url>https://qbic-repo.am10.uni-tuebingen.de/repository/maven-snapshots</url>
</repository>
<repository>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>nexus-releases</id>
<name>QBiC Releases</name>
<url>https://qbic-repo.am10.uni-tuebingen.de/repository/maven-releases</url>
</repository>
</repositories>
Add the library to your dependencies in the project's pom.xml:
<dependency>
<groupId>life.qbic</groupId>
<artifactId>micronaut-utils-lib</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>