Skip to content

Commit

Permalink
Bump org.kiwiproject:kiwi-bom from 2.0.14 to 2.0.15 (#301)
Browse files Browse the repository at this point in the history
* Bump org.kiwiproject:kiwi-bom from 2.0.14 to 2.0.15

Bumps [org.kiwiproject:kiwi-bom](https://github.com/kiwiproject/kiwi-bom) from 2.0.14 to 2.0.15.
- [Release notes](https://github.com/kiwiproject/kiwi-bom/releases)
- [Commits](kiwiproject/kiwi-bom@v2.0.14...v2.0.15)

---
updated-dependencies:
- dependency-name: org.kiwiproject:kiwi-bom
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Add commons-lang3, guava, and jackson-core as explicit dependencies

During the upgrade to kiwi-bom 2.0.15, dropwizard-db removed
a dependency on jackson, and we got a compilation failure.
Went through the imports and added the libraries that are
usually necessary.

Closes #305 

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Scott Leberknight <174812+sleberknight@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and sleberknight authored Sep 2, 2024
1 parent 7b4f1a4 commit 6617753
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<properties>
<!-- Versions for required dependencies -->
<kiwi.version>4.4.0</kiwi.version>
<kiwi-bom.version>2.0.14</kiwi-bom.version>
<kiwi-bom.version>2.0.15</kiwi-bom.version>

<!-- Versions for test dependencies -->
<kiwi-test.version>3.6.1</kiwi-test.version>
Expand Down Expand Up @@ -70,6 +70,21 @@

<!-- required dependencies -->

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</dependency>

<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>kiwi</artifactId>
Expand Down Expand Up @@ -101,7 +116,7 @@
<artifactId>kiwi-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down

0 comments on commit 6617753

Please sign in to comment.