We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/eventuate-examples/eventuate-quarkus-examples-customers-and-orders/blob/0a35df001985b6f0ae9f458f17c50e57fcc52e83/customers-service/src/test/java/net/chrisrichardson/eventstore/examples/customersandorders/customersservice/backend/CustomerPersistenceTest.java
requires database configuration:
https://github.com/eventuate-examples/eventuate-quarkus-examples-customers-and-orders/pull/9/files/e994274d2a7f3e7538f26dbd1fb8a60c665180ba#diff-179b766d62473570bd2b2c1ba8ed3ee421b3eabf57eb019be4eb01badf4651f3R5-R8
but it depends on eventuate-common-quarkus-in-memory-database that have inmemory database property file:
https://github.com/eventuate-foundation/eventuate-common-quarkus/blob/5b9bf709c0fa69755a99524ce16b3f52c3886453/eventuate-common-quarkus-in-memory-database/src/main/resources/application.properties
Problem is that module contains it's own property files: main/resources/application.properties test/resources/application.properties
presence of any of these files overrides dependency properties (tested).
Solution: Use quarkus test profile: https://quarkus.io/blog/quarkus-test-profiles/
The text was updated successfully, but these errors were encountered:
Created test profile for inmemory database: see eventuate-examples/ev…
bbeeb70
…entuate-quarkus-examples-customers-and-orders#10
eventuate-examples#10: Used quarkus test profile for embedded database.
c6d8486
Merge pull request #9 from dartartem/master
f44c4ce
Used eventuate platform dependencies. #10: Used quarkus test profile for embedded database.
No branches or pull requests
https://github.com/eventuate-examples/eventuate-quarkus-examples-customers-and-orders/blob/0a35df001985b6f0ae9f458f17c50e57fcc52e83/customers-service/src/test/java/net/chrisrichardson/eventstore/examples/customersandorders/customersservice/backend/CustomerPersistenceTest.java
requires database configuration:
https://github.com/eventuate-examples/eventuate-quarkus-examples-customers-and-orders/pull/9/files/e994274d2a7f3e7538f26dbd1fb8a60c665180ba#diff-179b766d62473570bd2b2c1ba8ed3ee421b3eabf57eb019be4eb01badf4651f3R5-R8
but it depends on eventuate-common-quarkus-in-memory-database that have inmemory database property file:
https://github.com/eventuate-foundation/eventuate-common-quarkus/blob/5b9bf709c0fa69755a99524ce16b3f52c3886453/eventuate-common-quarkus-in-memory-database/src/main/resources/application.properties
Problem is that module contains it's own property files:
main/resources/application.properties
test/resources/application.properties
presence of any of these files overrides dependency properties (tested).
Solution: Use quarkus test profile: https://quarkus.io/blog/quarkus-test-profiles/
The text was updated successfully, but these errors were encountered: