blob: 39e91b8e0f7b2ad9bde6c4d190997062be92a6a7 [file] [log] [blame]
Matthias Andreas Benkard4c32c392021-12-12 21:23:53 +01001/**
2 * Provides a parser for the <a href="https://docs.gtk.org/glib/struct.Variant.html">GVariant</a>
3 * serialization format.
4 *
Matthias Andreas Benkard55c34812021-12-14 21:51:10 +01005 * <p>The {@link eu.mulk.jgvariant.core} package contains the {@link eu.mulk.jgvariant.core.Decoder}
6 * type. which forms the foundation of this library.
Matthias Andreas Benkard4c32c392021-12-12 21:23:53 +01007 */
Matthias Andreas Benkard261532a2021-12-12 20:09:27 +01008module eu.mulk.jgvariant.core {
Matthias Andreas Benkard261532a2021-12-12 20:09:27 +01009 requires com.google.errorprone.annotations;
10 requires org.jetbrains.annotations;
11
12 exports eu.mulk.jgvariant.core;
13}