Skip to content

Commit

Permalink
- Update spring version to 2.6.1
Browse files Browse the repository at this point in the history
- Update springdoc-openapi version to `1.6.1`
- Make tests run with maven
  • Loading branch information
johnmara-pc14 committed Dec 20, 2021
1 parent 73c3ebc commit f352938
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.1</version>
<version>2.6.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.paymentcomponents.libraries</groupId>
<artifactId>rest-sdk-wrapper</artifactId>
<version>1.7.4</version>
<version>1.7.5</version>
<name>rest-sdk-wrapper</name>
<description>Wrapper for Payment Components Financial Messaging Libraries</description>
<packaging>war</packaging>
Expand Down Expand Up @@ -100,7 +100,7 @@
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>1.5.4</version>
<version>1.6.1</version>
</dependency>

</dependencies>
Expand All @@ -111,6 +111,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
</plugin>
</plugins>
</build>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ public class MsgReplyInfoRequest {
private String reasonCode;
private String reasonPrtry;
private String indicator;
private String additionInformation;

public String getReasonCode() {
return reasonCode;
Expand All @@ -30,4 +31,11 @@ public void setIndicator(String indicator) {
this.indicator = indicator;
}

public String getAdditionInformation() {
return additionInformation;
}

public void setAdditionInformation(String additionInformation) {
this.additionInformation = additionInformation;
}
}

0 comments on commit f352938

Please sign in to comment.