blob: a1830f60c2f77d6bfd4dd68a095c076c493619b6 [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 Benkard8bbc9c12021-12-18 22:57:27 +01005 * <ul>
6 * <li><a href="#sect-overview">Overview</a>
7 * <li><a href="#sect-installation">Installation</a>
8 * </ul>
9 *
10 * <h2 id="sect-overview">Overview</h2>
11 *
Matthias Andreas Benkard55c34812021-12-14 21:51:10 +010012 * <p>The {@link eu.mulk.jgvariant.core} package contains the {@link eu.mulk.jgvariant.core.Decoder}
Matthias Andreas Benkard8bbc9c12021-12-18 22:57:27 +010013 * type, which contains classes to parse and represent serialized <a
14 * href="https://docs.gtk.org/glib/struct.Variant.html">GVariant</a> values.
15 *
16 * <h2 id="sect-installation">Installation</h2>
17 *
18 * <ul>
19 * <li><a href="#sect-installation-maven">Usage with Maven</a>
20 * <li><a href="#sect-installation-gradle">Usage with Gradle</a>
21 * </ul>
22 *
23 * <h3 id="sect-installation-maven">Usage with Maven</h3>
24 *
25 * <pre>{@code
26 * <project>
27 * ...
28 *
Matthias Andreas Benkard796b19d2021-12-18 23:38:46 +010029 * <dependencyManagement>
30 * ...
31 *
32 * <dependencies>
33 * <dependency>
34 * <groupId>eu.mulk.jgvariant</groupId>
35 * <artifactId>jgvariant-bom</artifactId>
36 * <version>0.1.4</version>
37 * <type>pom</type>
38 * <scope>import</scope>
39 * </dependency>
40 * </dependencies>
41 *
42 * ...
43 * </dependencyManagement>
44 *
Matthias Andreas Benkard8bbc9c12021-12-18 22:57:27 +010045 * <dependencies>
46 * ...
47 *
48 * <dependency>
49 * <groupId>eu.mulk.jgvariant</groupId>
50 * <artifactId>jgvariant-core</artifactId>
Matthias Andreas Benkard8bbc9c12021-12-18 22:57:27 +010051 * </dependency>
52 *
53 * ...
54 * </dependencies>
55 *
56 * ...
57 * </project>
58 * }</pre>
59 *
60 * <h3 id="sect-installation-gradle">Usage with Gradle</h3>
61 *
62 * <pre>{@code
63 * dependencies {
64 * ...
65 *
Matthias Andreas Benkard796b19d2021-12-18 23:38:46 +010066 * implementation(platform("eu.mulk.jgvariant:jgvariant-bom:0.1.4")
67 * implementation("eu.mulk.jgvariant:jgvariant-core")
Matthias Andreas Benkard8bbc9c12021-12-18 22:57:27 +010068 *
69 * ...
70 * }
71 * }</pre>
Matthias Andreas Benkard4c32c392021-12-12 21:23:53 +010072 */
Matthias Andreas Benkard261532a2021-12-12 20:09:27 +010073module eu.mulk.jgvariant.core {
Matthias Andreas Benkard261532a2021-12-12 20:09:27 +010074 requires com.google.errorprone.annotations;
75 requires org.jetbrains.annotations;
Matthias Andreas Benkard25b7f902021-12-17 06:02:11 +010076 requires org.apiguardian.api;
Matthias Andreas Benkard261532a2021-12-12 20:09:27 +010077
78 exports eu.mulk.jgvariant.core;
79}