Skip to content

Commit

Permalink
Update java dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernard31 committed Jul 20, 2022
1 parent 1e4d7b9 commit 7917c00
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
1 change: 0 additions & 1 deletion leshan-server-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ Contributors:
<dependency>
<groupId>org.jmdns</groupId>
<artifactId>jmdns</artifactId>
<version>3.5.7</version>
</dependency>
<dependency>
<groupId>org.eclipse.leshan</groupId>
Expand Down
2 changes: 0 additions & 2 deletions leshan-server-redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ Contributors:
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<!-- stuck to 3.5.x for java7 compliance -->
<version>4.0.1</version>
</dependency>

<!-- test dependencies -->
Expand Down
22 changes: 16 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ Contributors:
<!-- we use properties for version when there are used more than once -->
<!-- dependencies version -->
<californium.version>3.6.0</californium.version>
<logback.version>1.2.10</logback.version>
<slf4j.api.version>1.7.32</slf4j.api.version>
<logback.version>1.2.11</logback.version>
<slf4j.api.version>1.7.36</slf4j.api.version>
<!-- stuck to 9.4.x for java8 compliance -->
<jetty.version>9.4.44.v20210927</jetty.version>
<jackson.version>2.13.2.1</jackson.version>
<jetty.version>9.4.48.v20220622</jetty.version>
<jackson.version>2.13.3</jackson.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -209,6 +209,11 @@ Contributors:
<artifactId>cbor</artifactId>
<version>4.5.2</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>4.2.3</version>
</dependency>

<!-- Demos, examples and tests dependencies -->
<dependency>
Expand All @@ -229,12 +234,12 @@ Contributors:
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>4.6.2</version>
<version>4.6.3</version>
</dependency>
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli-shell-jline2</artifactId>
<version>4.6.2</version>
<version>4.6.3</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand All @@ -246,6 +251,11 @@ Contributors:
<artifactId>jetty-servlets</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.jmdns</groupId>
<artifactId>jmdns</artifactId>
<version>3.5.8</version>
</dependency>

<!-- test dependencies -->
<dependency>
Expand Down

0 comments on commit 7917c00

Please sign in to comment.