Skip to content

Commit

Permalink
fix: upgrade multiple dependencies with Snyk
Browse files Browse the repository at this point in the history
Snyk has created this PR to upgrade:
  - commons-cli:commons-cli from 1.5.0 to 1.9.0.
    See this package in maven: https://mvnrepository.com/artifact/commons-cli/commons-cli/
  - commons-io:commons-io from 2.11.0 to 2.16.1.
    See this package in maven: https://mvnrepository.com/artifact/commons-io/commons-io/
  - org.apache.cxf:cxf-rt-frontend-jaxws from 3.5.5 to 3.6.4.
    See this package in maven: https://mvnrepository.com/artifact/org.apache.cxf/cxf-rt-frontend-jaxws/
  - org.apache.cxf:cxf-rt-transports-http from 3.5.5 to 3.6.4.
    See this package in maven: https://mvnrepository.com/artifact/org.apache.cxf/cxf-rt-transports-http/
  - org.eclipse.jetty:jetty-server from 9.4.50.v20221201 to 9.4.55.v20240627.
    See this package in maven: https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server/
  - org.eclipse.jetty:jetty-servlet from 9.4.50.v20221201 to 9.4.55.v20240627.
    See this package in maven: https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlet/
  - org.glassfish.jersey.core:jersey-server from 2.37 to 2.44.
    See this package in maven: https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-server/
  - org.glassfish.jersey.containers:jersey-container-servlet-core from 2.37 to 2.45.
    See this package in maven: https://mvnrepository.com/artifact/org.glassfish.jersey.containers/jersey-container-servlet-core/
  - org.glassfish.jersey.inject:jersey-hk2 from 2.37 to 2.44.
    See this package in maven: https://mvnrepository.com/artifact/org.glassfish.jersey.inject/jersey-hk2/
  - org.slf4j:slf4j-api from 2.0.6 to 2.0.16.
    See this package in maven: https://mvnrepository.com/artifact/org.slf4j/slf4j-api/
  - org.slf4j:slf4j-simple from 2.0.6 to 2.0.16.
    See this package in maven: https://mvnrepository.com/artifact/org.slf4j/slf4j-simple/

See this project in Snyk:
https://app.snyk.io/org/sunet/project/4f763233-60ce-4daf-873d-855d6c2c60ac?utm_source=github&utm_medium=referral&page=upgrade-pr
  • Loading branch information
snyk-bot committed Sep 23, 2024
1 parent 5f410c3 commit 6cc17c3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<properties>
<project.builder.sourceEncoding>UTF-8</project.builder.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jetty.version>9.4.50.v20221201</jetty.version>
<cxf.version>3.5.5</cxf.version>
<sl4j.version>2.0.6</sl4j.version>
<jetty.version>9.4.55.v20240627</jetty.version>
<cxf.version>3.6.4</cxf.version>
<sl4j.version>2.0.16</sl4j.version>
</properties>

<developers>
Expand Down Expand Up @@ -101,19 +101,19 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<version>2.16.1</version>
</dependency>

<!-- Dependencies for the RESTful service API -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
<version>2.37</version>
<version>2.44</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<version>2.37</version>
<version>2.45</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand All @@ -123,14 +123,14 @@
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<version>2.37</version>
<version>2.44</version>
</dependency>

<!-- Command line option parsing -->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.5.0</version>
<version>1.9.0</version>
</dependency>

<!-- Logging -->
Expand Down

0 comments on commit 6cc17c3

Please sign in to comment.