-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
47 create a ledgers deposit account rest client #49
47 create a ledgers deposit account rest client #49
Conversation
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-openfeign-core</artifactId> | ||
<version>4.1.3</version> | ||
<scope>compile</scope> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This version has to be in the parent pom not here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes.
<groupId>de.adorsys.ledgers.deposit.api</groupId> | ||
<artifactId>ledgers-deposit-account-rest-api</artifactId> | ||
<version>6.1-SNAPSHOT</version> | ||
<scope>compile</scope> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The version should not be declared like this for the module dependency, use this
<version>${project.version}</version>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah yeah
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't you also have to write a test for this ?
we won't be writting a test for these because we won't be making use of any mappers.. test could be written if we made use of the mapper.. taking reference from |
Changed deployment strategy |
Created ledgers deposit-rest-client