Skip to content

Commit

Permalink
Merge pull request #443 from gruelbox/dependabot/maven/com.google.inj…
Browse files Browse the repository at this point in the history
…ect-guice-7.0.0

Bump guice from 5.1.0 to 6.0.0
  • Loading branch information
badgerwithagun authored Dec 23, 2023
2 parents 87b96ef + d82a0fa commit 7f637ee
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions transactionoutbox-guice/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>transactionoutbox-parent</artifactId>
<groupId>com.gruelbox</groupId>
Expand All @@ -9,7 +10,8 @@
<name>Transaction Outbox Guice</name>
<packaging>jar</packaging>
<artifactId>transactionoutbox-guice</artifactId>
<description>A safe implementation of the transactional outbox pattern for Java (Guice extension library)</description>
<description>A safe implementation of the transactional outbox pattern for Java (Guice extension library)
</description>
<properties>
<guice.version>5.2.4.RELEASE</guice.version>
</properties>
Expand All @@ -23,7 +25,21 @@
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>5.1.0</version>
<version>6.0.0</version>
<exclusions>
<!-- There's a vulnerability in the version provided by Guice 6.0.0 -->
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- There's a vulnerability in the version provided by Guice 6.0.0 -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.0.0-jre</version>
<scope>test</scope>
</dependency>
<!-- Compile time -->
<dependency>
Expand Down

0 comments on commit 7f637ee

Please sign in to comment.