diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2021-12-18 23:38:46 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2021-12-18 23:38:46 +0100 |
commit | 796b19da1b9ef6c1721faa2ddf35100eb01a8a28 (patch) | |
tree | 44c4edf40e73b11d09535d011de95be71d0fdec0 /README.md | |
parent | 8bbc9c1a04177dc0bc0082cc59d98d57eead4c1f (diff) |
POM: Split into -bom, -core, -parent, -bundle.
Change-Id: I1fd4cc766b60266ef9dcc40e943b45d067dd7b90
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -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") ... } |