Skip to content

Commit

Permalink
Merge pull request #33 from RajeshPutta/rabbitmq-vulnerability-fix
Browse files Browse the repository at this point in the history
Rabbitmq vulnerability fix
  • Loading branch information
satish-m authored Aug 21, 2024
2 parents e0f13aa + 6d0741f commit b21864d
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.appdynamics.extensions</groupId>
<artifactId>rabbitmq-monitoring-extension</artifactId>
<version>2.0.7</version>
<version>2.0.8</version>
<packaging>jar</packaging>
<name>rabbitmq-monitoring-extension</name>
<url>http://maven.apache.org</url>
Expand All @@ -30,7 +30,27 @@
<dependency>
<groupId>com.appdynamics</groupId>
<artifactId>appd-exts-commons</artifactId>
<version>2.2.6</version>
<version>2.2.11</version>
<exclusions>
<exclusion>
<groupId>org.eclipse.jetty</groupId> <!-- Exclude Project-D from Project-B -->
<artifactId>jetty-server</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty</groupId> <!-- Exclude Project-D from Project-B -->
<artifactId>jetty-servlet</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>12.0.10</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>11.0.21</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
Expand All @@ -41,19 +61,19 @@
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.5.6</version>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.5.6</version>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit b21864d

Please sign in to comment.