Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 1 | /** |
Matthias Andreas Benkard | aa29484 | 2021-12-28 01:31:56 +0100 | [diff] [blame] | 2 | * {@link eu.mulk.jgvariant.core.Decoder} instances for OSTree repositories. |
Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 3 | * |
| 4 | * <ul> |
| 5 | * <li><a href="#sect-overview">Overview</a> |
| 6 | * <li><a href="#sect-installation">Installation</a> |
| 7 | * </ul> |
| 8 | * |
| 9 | * <h2 id="sect-overview">Overview</h2> |
| 10 | * |
| 11 | * <p>The {@link eu.mulk.jgvariant.ostree} package contains record classes describing the elements |
| 12 | * of <a href="https://ostreedev.github.io/ostree/">OSTree</a> repositories and factory methods to |
| 13 | * create {@link eu.mulk.jgvariant.core.Decoder} instances for them. |
| 14 | * |
| 15 | * <h2 id="sect-installation">Installation</h2> |
| 16 | * |
| 17 | * <ul> |
| 18 | * <li><a href="#sect-installation-maven">Usage with Maven</a> |
| 19 | * <li><a href="#sect-installation-gradle">Usage with Gradle</a> |
| 20 | * </ul> |
| 21 | * |
| 22 | * <h3 id="sect-installation-maven">Usage with Maven</h3> |
| 23 | * |
| 24 | * <pre>{@code |
| 25 | * <project> |
| 26 | * ... |
| 27 | * |
| 28 | * <dependencyManagement> |
| 29 | * ... |
| 30 | * |
| 31 | * <dependencies> |
| 32 | * <dependency> |
| 33 | * <groupId>eu.mulk.jgvariant</groupId> |
| 34 | * <artifactId>jgvariant-bom</artifactId> |
Matthias Andreas Benkard | 2db188d | 2021-12-30 21:07:52 +0100 | [diff] [blame] | 35 | * <version>0.1.5</version> |
Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 36 | * <type>pom</type> |
| 37 | * <scope>import</scope> |
| 38 | * </dependency> |
| 39 | * </dependencies> |
| 40 | * |
| 41 | * ... |
| 42 | * </dependencyManagement> |
| 43 | * |
| 44 | * <dependencies> |
| 45 | * ... |
| 46 | * |
| 47 | * <dependency> |
| 48 | * <groupId>eu.mulk.jgvariant</groupId> |
| 49 | * <artifactId>jgvariant-core</artifactId> |
| 50 | * </dependency> |
| 51 | * <dependency> |
| 52 | * <groupId>eu.mulk.jgvariant</groupId> |
| 53 | * <artifactId>jgvariant-ostree</artifactId> |
| 54 | * </dependency> |
| 55 | * |
| 56 | * ... |
| 57 | * </dependencies> |
| 58 | * |
| 59 | * ... |
| 60 | * </project> |
| 61 | * }</pre> |
| 62 | * |
| 63 | * <h3 id="sect-installation-gradle">Usage with Gradle</h3> |
| 64 | * |
| 65 | * <pre>{@code |
| 66 | * dependencies { |
| 67 | * ... |
| 68 | * |
Matthias Andreas Benkard | 2db188d | 2021-12-30 21:07:52 +0100 | [diff] [blame] | 69 | * implementation(platform("eu.mulk.jgvariant:jgvariant-bom:0.1.5") |
Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 70 | * implementation("eu.mulk.jgvariant:jgvariant-core") |
| 71 | * implementation("eu.mulk.jgvariant:jgvariant-ostree") |
| 72 | * |
| 73 | * ... |
| 74 | * } |
| 75 | * }</pre> |
| 76 | */ |
Matthias Andreas Benkard | a7e9d52 | 2021-12-28 01:37:47 +0100 | [diff] [blame] | 77 | module eu.mulk.jgvariant.ostree { |
Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 78 | requires transitive eu.mulk.jgvariant.core; |
| 79 | requires com.google.errorprone.annotations; |
Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 80 | requires org.apiguardian.api; |
Matthias Andreas Benkard | 50a626d | 2021-12-30 19:13:49 +0100 | [diff] [blame] | 81 | requires org.jetbrains.annotations; |
| 82 | requires org.tukaani.xz; |
Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 83 | |
| 84 | exports eu.mulk.jgvariant.ostree; |
| 85 | } |