blob: 403cf1fc0040abd94faa9872b7381f00ca0bef61 [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 *
5 * <p>The {@link eu.mulk.jgvariant.core} package contains the {@link eu.mulk.jgvariant.core.Value}
6 * and {@link eu.mulk.jgvariant.core.Decoder} types. which form the foundation of this library.
7 */
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}