Skip to content

Commit

Permalink
Add comments to BOM explaining several "odd" dependencies (#142)
Browse files Browse the repository at this point in the history
* Add comments explaining why a few dependencies were added to
  resolve dependency convergence errors

Closes #135
  • Loading branch information
sleberknight authored Apr 10, 2022
1 parent 76991e1 commit 560c95a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,11 @@
<version>${jackson.version}</version>
</dependency>

<!--
This is here to resolve dependency conflicts between the version used by
com.sun.xml.ws:jaxws-rt and com.sun.mail:jakarta.mail. It should be
re-evaluated from time-to-time.
-->
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
Expand Down Expand Up @@ -487,6 +492,10 @@
<version>${jersey.version}</version>
</dependency>

<!--
This is here due to dropwizard (testing, client, etc.) being stuck on Jersey 2.33. At Dropwizard 2.1.0
they've moved to Jersey 2.35, so we can probably remove at that point.
-->
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
Expand Down Expand Up @@ -649,6 +658,10 @@
<version>${netty.version}</version>
</dependency>

<!--
This was added to resolve conflicts with mongo-java-server.
It should be re-evaluated from time-to-time.
-->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
Expand Down

0 comments on commit 560c95a

Please sign in to comment.