Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
<module>application-skeleton-subscriber</module>
<module>application-skeleton-publisher</module>
</modules>

<properties>
<paho.version>1.2.1</paho.version>
<gson.version>2.8.6</gson.version>
</properties>

<repositories>
<repository>
Expand All @@ -42,7 +47,17 @@
<groupId>ai.aitia</groupId>
<artifactId>arrowhead-application-library-java-spring</artifactId>
<version>4.4.0.0</version>
</dependency>
</dependency>
<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should belong to the arrowhead-application-library-java-spring an have similar method(s) in ArrowheadService like the WebSocket support has.

<version>${paho.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider to use Jackson ObjectMapper wich alreay comes with Spring.

<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
</dependencies>

<build>
Expand Down