Skip to content

Commit

Permalink
fix(deps): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jgiovaresco committed Mar 17, 2023
1 parent 30c5dd3 commit c60db5a
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 48 deletions.
6 changes: 0 additions & 6 deletions gravitee-node-certificates/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@
<version>${project.version}</version>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
Expand Down
4 changes: 0 additions & 4 deletions gravitee-node-cluster/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down
4 changes: 0 additions & 4 deletions gravitee-node-container/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,6 @@
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down
4 changes: 0 additions & 4 deletions gravitee-node-kubernetes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,6 @@
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down
6 changes: 0 additions & 6 deletions gravitee-node-license/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,6 @@
<artifactId>license3j</artifactId>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Spring dependencies -->
<dependency>
<groupId>org.springframework</groupId>
Expand Down
6 changes: 0 additions & 6 deletions gravitee-node-management/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@
<artifactId>vertx-web</artifactId>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Jackson dependencies -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
package io.gravitee.node.monitoring;

import static org.mockito.Mockito.verifyZeroInteractions;
import static org.mockito.Mockito.verifyNoInteractions;
import static org.mockito.Mockito.when;

import io.gravitee.node.api.Monitoring;
Expand Down Expand Up @@ -99,7 +99,7 @@ public void shouldNotCreateOrUpdateIfNotRepository() throws InterruptedException
obs.await();
obs.assertValue(monitoring);

verifyZeroInteractions(repository);
verifyNoInteractions(repository);
}

@Test
Expand Down
6 changes: 0 additions & 6 deletions gravitee-node-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,6 @@
<artifactId>gravitee-common</artifactId>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
Expand Down
6 changes: 0 additions & 6 deletions gravitee-node-reporter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,6 @@
<artifactId>gravitee-reporter-api</artifactId>
</dependency>

<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
Expand Down
7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,11 +247,10 @@
</dependencies>

<properties>
<gravitee-bom.version>4.0.0-alpha.1</gravitee-bom.version>
<gravitee-common.version>1.25.0</gravitee-common.version>
<gravitee-bom.version>4.0.0</gravitee-bom.version>
<gravitee-common.version>2.1.0</gravitee-common.version>
<gravitee-plugin.version>1.25.0</gravitee-plugin.version>
<gravitee-expression-language.version>1.9.2</gravitee-expression-language.version>
<gravitee-reporter-api.version>1.25.0-alpha.4</gravitee-reporter-api.version>
<gravitee-reporter-api.version>1.25.0</gravitee-reporter-api.version>
<gravitee-tracing-api.version>1.0.0</gravitee-tracing-api.version>
<gravitee-kubernetes.version>2.0.1</gravitee-kubernetes.version>
<snakeyaml.version>1.31</snakeyaml.version>
Expand Down

0 comments on commit c60db5a

Please sign in to comment.