Skip to content

Commit

Permalink
Gson library now available for transformation operation. Locking vers…
Browse files Browse the repository at this point in the history
…ion to 2.8.5 as the next version 2.8.6 is causing issues with swarm start up (#48)
  • Loading branch information
maheshsubramanian committed Mar 11, 2020
1 parent 2d219af commit 1260f70
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on [Keep a CHANGELOG](http://keepachangelog.com/). This project adheres to
[Semantic Versioning](http://semver.org/).

## [Unreleased]

- Gson library available for easier manipulation of json objects for transformation

## [5.3.5] - 2020-02-25
### Added
Expand Down
6 changes: 6 additions & 0 deletions event-tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@
<artifactId>logging</artifactId>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>

<!--External-->
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
<wildfly.swarm.version>2017.11.0</wildfly.swarm.version>
<version.swarm.fraction-plugin>77</version.swarm.fraction-plugin>
<junit-dataprovider.version>1.13.1</junit-dataprovider.version>

<!-- Locking version of gson library as the next version 2.8.6 is bring up error on swarm starting up-->
<gson.version>2.8.5</gson.version>
</properties>

<modules>
Expand Down
5 changes: 5 additions & 0 deletions stream-transformation-tool-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
<groupId>uk.gov.justice.services</groupId>
<artifactId>messaging-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
</dependencies>

</project>

0 comments on commit 1260f70

Please sign in to comment.