Skip to content

Commit

Permalink
Merge pull request #384 from Backbase/feature/txn-cursor-dependency-fix
Browse files Browse the repository at this point in the history
transaction-cursor: fix dependency issue - fix local config
  • Loading branch information
BB-ASehmi authored Nov 3, 2023
2 parents 715c736 + cae1395 commit 7cebabe
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## [3.67.0](https://github.com/Backbase/stream-services/compare/3.66.0...3.67.0)
### Changed
- Fix transaction-cursor k8 deployment failure issue: `org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.backbase.stream.compositions.transaction.cursor.core.mapper.TransactionCursorMapper' available`
- Fix transaction-cursor `application-local.yaml` config

## [3.66.0](https://github.com/Backbase/stream-services/compare/3.65.0...3.66.0)
### Changed
- Always check cursor and create if it does not exist.
Expand Down
5 changes: 5 additions & 0 deletions stream-compositions/cursors/transaction-cursor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
<artifactId>mysql-connector-j</artifactId>
</dependency>

<dependency>
<groupId>com.backbase.buildingblocks</groupId>
<artifactId>service-sdk-starter-mapping</artifactId>
</dependency>

<!-- Spring dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ backbase:
communication:
services:
usermanager:
direct-uri: http://localhost:8086/user-manager
direct-uri: http://localhost:8060
access-control:
direct-uri: http://localhost:8086/access-control
direct-uri: http://localhost:8040
arrangement:
manager:
direct-uri: http://localhost:8082/arrangement-manager
direct-uri: http://localhost:8061
user:
profile:
direct-uri: http://localhost:8086/user-profile-manager
http:
client-secret: bb-secret
client-id: bb-client
access-token-uri: http://localhost:8181/oidc-token-converter-service/oauth/token
access-token-uri: "http://localhost:7779/oauth/token"

logging:
level:
Expand All @@ -50,7 +50,7 @@ eureka:
role: live
client:
serviceUrl:
defaultZone: http://localhost:8080/registry/eureka/
defaultZone: http://localhost:8761/eureka/

sso:
jwt:
Expand Down

0 comments on commit 7cebabe

Please sign in to comment.