aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 18 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7671374..56afd9e 100644
--- a/README.md
+++ b/README.md
@@ -38,13 +38,28 @@ pairs of [String][] and `int`, you can use the following code:
<project>
...
+ <dependencyManagement>
+ ...
+
+ <dependencies>
+ <dependency>
+ <groupId>eu.mulk.jgvariant</groupId>
+ <artifactId>jgvariant-bom</artifactId>
+ <version>0.1.4</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ </dependencies>
+
+ ...
+ </dependencyManagement>
+
<dependencies>
...
<dependency>
<groupId>eu.mulk.jgvariant</groupId>
<artifactId>jgvariant-core</artifactId>
- <version>0.1.3</version>
</dependency>
...
@@ -59,7 +74,8 @@ pairs of [String][] and `int`, you can use the following code:
dependencies {
...
- implementation("eu.mulk.jgvariant:jgvariant-core:0.1.3")
+ implementation(platform("eu.mulk.jgvariant:jgvariant-bom:0.1.4")
+ implementation("eu.mulk.jgvariant:jgvariant-core")
...
}