Skip to content

Commit

Permalink
PW-1392: Fixed the default escape handler when serializing model obje…
Browse files Browse the repository at this point in the history
…cts into XML, that was duplicated quote characters in the output
  • Loading branch information
zubri authored Jun 26, 2023
1 parent 9339e99 commit 4eb1d0d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Prowide ISO 20022 - CHANGELOG

#### 9.3.7 - SNAPSHOT
#### 9.3.7 - June 2023
* (PW-1392) Fixed the default escape handler when serializing model objects into XML, that was duplicated quote characters in the output

#### 9.3.6 - March 2023
Expand Down
9 changes: 6 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ scmVersion {
}
project.version = "${SRU}-${scmVersion.version}"

project.ext {
nexusRepo = project.version.endsWith('-SNAPSHOT') ? 'maven-snapshots' : 'maven-releases'
}

allprojects {

tasks.withType(JavaCompile) {
Expand Down Expand Up @@ -129,8 +133,7 @@ configure(subprojects.findAll {it.name.endsWith('-mx')}) {
project(':iso20022-core') {
dependencies {
// included build
api 'com.prowidesoftware:pw-swift-core:SRU2022-9.3.15'

api 'com.prowidesoftware:pw-swift-core:SRU2022-9.3.16'

implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'com.google.code.gson:gson:2.9.0'
Expand Down Expand Up @@ -283,7 +286,7 @@ artifacts {
// declared dependencies for pom generation
dependencies {
// included build (keep in sync with the latest Prowide Core version)
api 'com.prowidesoftware:pw-swift-core:SRU2022-9.3.15'
api 'com.prowidesoftware:pw-swift-core:SRU2022-9.3.16'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'com.google.code.gson:gson:2.9.0'
}
Expand Down

0 comments on commit 4eb1d0d

Please sign in to comment.