aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2021-12-18 23:38:46 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2021-12-18 23:38:46 +0100
commit796b19da1b9ef6c1721faa2ddf35100eb01a8a28 (patch)
tree44c4edf40e73b11d09535d011de95be71d0fdec0 /README.md
parent8bbc9c1a04177dc0bc0082cc59d98d57eead4c1f (diff)
POM: Split into -bom, -core, -parent, -bundle.
Change-Id: I1fd4cc766b60266ef9dcc40e943b45d067dd7b90
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")
...
}