Skip to content

Commit

Permalink
NMS-16675: Exclude all jackson-databind versions below 2.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
christianpape committed Nov 28, 2024
1 parent 1ce90b3 commit 4735205
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dependencies/activemq/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
<version>${activemqVersion}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<!-- Exclude org.apache.velocity:velocity as the 2.x version is at org.apache.velocity:velocity-engine-core -->
<exclusion>
<groupId>org.apache.velocity</groupId>
Expand Down Expand Up @@ -107,6 +111,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson2Version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-jaas</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions opennms-full-assembly/src/assembly/components/osgi.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
<exclude>**/sshd-*/2.8.0/*</exclude>
<exclude>**/*xstream*/1.4.8_1</exclude>
<exclude>**/*xstream*/1.4.8_1/*</exclude>
<exclude>**/jackson-databind/2.5.4</exclude>
<exclude>**/jackson-databind/2.5.4/*</exclude>
<exclude>**/jackson-databind/2.9.10.8</exclude>
<exclude>**/jackson-databind/2.9.10.8/*</exclude>
<exclude>**/jackson-databind/2.9.8</exclude>
<exclude>**/jackson-databind/2.9.8/*</exclude>
<exclude>%regex[.*org\/bouncycastle\/(bcprov|bctls|bcutil|bcpkix)-jdk18on\/1.7[56]\/?.*]</exclude>
</excludes>
</fileSet>
Expand Down

0 comments on commit 4735205

Please sign in to comment.