Skip to content

Commit cd80784

Browse files
authored
Merge pull request #59 from Backbase/BEFOUND-1032-create-outbound-integration-service-openapi
updating create-outbound-integration-service-openapi to SSDK 16
2 parents 31c6f40 + 7638acd commit cd80784

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

service-sdk/16.0.0/create-outbound-integration-service-openapi/example-integration-openapi-service/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,18 @@
1010
<parent>
1111
<groupId>com.backbase.buildingblocks</groupId>
1212
<artifactId>service-sdk-starter-core</artifactId>
13-
<version>15.0.1</version>
13+
<version>16.0.0</version>
1414
<relativePath />
1515
</parent>
1616

1717
<groupId>com.backbase.example</groupId>
1818
<artifactId>example-integration-openapi-service</artifactId>
1919
<version>1.0.0-SNAPSHOT</version>
20-
<packaging>war</packaging>
2120
<name>Backbase :: example-integration-openapi-service</name>
2221

2322
<properties>
2423
<java.version>17</java.version>
25-
<boat-maven-plugin.version>0.16.2</boat-maven-plugin.version>
24+
<boat-maven-plugin.version>0.17.5</boat-maven-plugin.version>
2625
<open-api-specs-dir>${project.build.directory}/specs</open-api-specs-dir>
2726
</properties>
2827

@@ -51,7 +50,7 @@
5150
<scope>test</scope>
5251
</dependency>
5352
<dependency>
54-
<groupId>io.swagger</groupId>
53+
<groupId>io.swagger.core.v3</groupId>
5554
<artifactId>swagger-annotations</artifactId>
5655
</dependency>
5756
<dependency>

service-sdk/16.0.0/create-outbound-integration-service-openapi/example-integration-openapi-service/src/main/java/com/backbase/example/ExampleController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
import com.backbase.example.model.Message;
99
import java.io.IOException;
1010
import java.util.List;
11-
import javax.validation.Valid;
12-
import javax.validation.constraints.NotNull;
11+
import jakarta.validation.Valid;
12+
import jakarta.validation.constraints.NotNull;
1313
import org.springframework.beans.factory.annotation.Autowired;
1414
import org.springframework.http.HttpStatus;
1515
import org.springframework.http.ResponseEntity;

service-sdk/16.0.0/create-outbound-integration-service-openapi/example-integration-openapi-service/src/main/java/com/backbase/example/model/Message.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import com.fasterxml.jackson.annotation.JsonProperty;
66
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
77

8-
import javax.annotation.Generated;
9-
import javax.validation.constraints.NotNull;
8+
import jakarta.annotation.Generated;
9+
import jakarta.validation.constraints.NotNull;
1010

1111
@JsonInclude(JsonInclude.Include.NON_NULL)
1212
@Generated("org.jsonschema2pojo")

service-sdk/16.0.0/create-outbound-integration-service-openapi/example-integration-openapi-spec/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.backbase.buildingblocks</groupId>
88
<artifactId>backbase-openapi-spec-starter-parent</artifactId>
9-
<version>15.0.1</version>
9+
<version>16.0.0</version>
1010
</parent>
1111

1212
<groupId>com.backbase.poc</groupId>
@@ -16,7 +16,7 @@
1616

1717
<properties>
1818
<!-- plugin versions -->
19-
<boat-maven-plugin.version>0.16.2</boat-maven-plugin.version>
19+
<boat-maven-plugin.version>0.17.5</boat-maven-plugin.version>
2020
</properties>
2121

2222
<build>

service-sdk/16.0.0/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.backbase.buildingblocks</groupId>
66
<artifactId>documentation-code-samples</artifactId>
7-
<version>15.0.0-SNAPSHOT</version>
7+
<version>16.0.0</version>
88
<packaging>pom</packaging>
99

1010
<distributionManagement>

0 commit comments

Comments
 (0)