Skip to content

Commit

Permalink
Add jackson to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
derTobsch committed Jan 12, 2024
1 parent f8c69a6 commit 34ae1a6
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ If you already use one of these libraries in your project than just use the spec

### XML-Binding libraries

Additionally, the XML-Binding library of your choice. At the moment we do only support JAXB,
but in the future there should be more that one.
Additionally, the XML-Binding library of your choice. At the moment we do support JAXB and Jackson,
but in the future there could be more that these.

**Jakarta XML Binding (JAXB)**

Expand All @@ -35,6 +35,16 @@ If you already use one of these libraries in your project than just use the spec
<version>${version}</version>
</dependency>
```

**Jackson**

```xml
<dependency>
<groupId>de.focus-shift</groupId>
<artifactId>jollyday-jackson</artifactId>
<version>${version}</version>
</dependency>
```
</details>

<details>
Expand All @@ -48,14 +58,20 @@ If you already use one of these libraries in your project than just use the spec

### XML-Binding libraries

Additionally, the XML-Binding library of your choice. At the moment we do only support JAXB,
but in the future there should be more that one.
Additionally, the XML-Binding library of your choice. At the moment we do support JAXB and Jackson,
but in the future there could be more that these.

**Jakarta XML Binding (JAXB)**

```gradle
implementation group: 'de.focus-shift', name: 'jollyday-jaxb', version: '${version}'
```

**Jackson**

```gradle
implementation group: 'de.focus-shift', name: 'jollyday-jackson', version: '${version}'
```
</details>

<details>
Expand Down

0 comments on commit 34ae1a6

Please sign in to comment.