Skip to content

Commit

Permalink
➖ removed unused or indirect dependencies from client modules
Browse files Browse the repository at this point in the history
Signed-off-by: dseurotech <davide.salvador@eurotech.com>
  • Loading branch information
dseurotech committed May 20, 2024
1 parent d166f3b commit b2857e5
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 43 deletions.
12 changes: 1 addition & 11 deletions client/gateway/profile/kura/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-client-gateway</artifactId>
<version>2.1.0-SNAPSHOT</version>
<relativePath>../..</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>

<name>Eclipse Kapua :: Gateway Client :: Profile :: Eclipse Kura</name>
Expand All @@ -41,16 +41,6 @@
<artifactId>kapua-client-gateway-provider-mqtt</artifactId>
</dependency>

<dependency>
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-client-gateway-spi</artifactId>
</dependency>

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

<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
Expand Down
12 changes: 1 addition & 11 deletions client/gateway/provider/fuse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,7 @@
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-client-gateway-provider-mqtt</artifactId>
</dependency>

<dependency>
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-client-gateway-spi</artifactId>
</dependency>

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


<dependency>
<groupId>org.fusesource.mqtt-client</groupId>
<artifactId>mqtt-client</artifactId>
Expand Down
10 changes: 0 additions & 10 deletions client/gateway/provider/paho/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,6 @@
<artifactId>kapua-client-gateway-provider-mqtt</artifactId>
</dependency>

<dependency>
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-client-gateway-spi</artifactId>
</dependency>

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

<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions client/security/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
<groupId>org.eclipse.kapua</groupId>
<artifactId>kapua-commons</artifactId>
</dependency>
<!-- External Dependencies -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
5 changes: 4 additions & 1 deletion locator/guice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
</dependency>

<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
Expand Down
6 changes: 5 additions & 1 deletion message/internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@
<artifactId>kapua-message-api</artifactId>
</dependency>

<!-- External dependencies -->
<!-- External dependencies-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
Expand Down
9 changes: 0 additions & 9 deletions service/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,6 @@
<artifactId>jaxb-impl</artifactId>
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions service/commons/storable/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@
<artifactId>kapua-qa-markers</artifactId>
<scope>test</scope>
</dependency>
<!-- External Dependencies -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
</dependencies>

</project>

0 comments on commit b2857e5

Please sign in to comment.