For the complete documentation index, see llms.txt. This page is also available as Markdown.

Environment

Does MicroStream work with the Java Module System (Jigsaw)?

Yes, since version 2.2 we provide an all-in-one multi-release jar which is compatible with Jigsaw projects. This single jar solution was necessary because different MicroStream modules use the same packages, but the module system doesn't allow that multiple modules declare the same exports.

<dependency>
    <groupId>one.microstream</groupId>
    <artifactId>all</artifactId>
    <version>02.02.01-MS-GA</version>
</dependency>

Last updated