Skip to content

Commit c2b46f0

Browse files
authored
Update version numbers in README.md
1 parent ae7e650 commit c2b46f0

1 file changed

Lines changed: 25 additions & 7 deletions

File tree

README.md

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ Specifically:
3333

3434
## Branches
3535

36-
`master` branch is for developing the next major Jackson version -- 3.0 -- but there
37-
are active maintenance branches in which much of development happens:
36+
`3.x` branch is for developing the next major Jackson version -- 3.2 -- but there
37+
are active maintenance branches for LTS releases:
3838

39-
* `2.19` is for developing the next minor 2.x version
40-
* `2.18` is for backported fixes to include in 2.18.x patch versions
41-
* `2.17` is for backported fixes to include in 2.17.x patch versions
39+
* `3.1`
40+
* `2.21`
41+
* `2.18`
4242

4343
Older branches are usually not changed but are available for historic reasons.
4444
All released versions have matching git tags (`jackson-dataformat-xml-2.17.1`).
@@ -49,21 +49,39 @@ All modules are licensed under [Apache License 2.0](http://www.apache.org/licens
4949

5050
## Maven dependency
5151

52+
To use Jackson 3.x compatible version of this extension on Maven-based projects, use following dependency:
53+
54+
Maven:
55+
```xml
56+
<dependency>
57+
<groupId>tools.jackson.dataformat</groupId>
58+
<artifactId>jackson-dataformat-xml</artifactId>
59+
<version>3.1.1</version>
60+
</dependency>
61+
```
62+
63+
Gradle:
64+
```groovy
65+
dependencies {
66+
implementation 'tools.jackson.dataformat:jackson-dataformat-xml:3.1.1'
67+
}
68+
```
69+
5270
To use Jackson 2.x compatible version of this extension on Maven-based projects, use following dependency:
5371

5472
Maven:
5573
```xml
5674
<dependency>
5775
<groupId>com.fasterxml.jackson.dataformat</groupId>
5876
<artifactId>jackson-dataformat-xml</artifactId>
59-
<version>2.18.1</version>
77+
<version>2.21.2</version>
6078
</dependency>
6179
```
6280

6381
Gradle:
6482
```groovy
6583
dependencies {
66-
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.18.1'
84+
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.21.2'
6785
}
6886
```
6987

0 commit comments

Comments
 (0)