-
Notifications
You must be signed in to change notification settings - Fork 4
feat(*): step 5 #14
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
base: step-5
Are you sure you want to change the base?
feat(*): step 5 #14
Conversation
6217af9 to
002be23
Compare
feat: solution for step 1 refactor(*): Update Postman collection
feat(*): step 1
feat(*): step 2
feat(*): Add step 5 feat(*): Add step 3 feat: small enhancements refactor(*): Update Postman collection
feat(*): step 3
|
Can you rebase this one onto |
|
@loicmathieu done |
loicmathieu
left a comment
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.
Please do the requested changes
| LOGGER.info("Hello {}", greeting); | ||
| LOGGER.infof("Hello %s", greeting); |
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.
If this is working, please don't change it to keep the changes straighforward
| private static final Logger LOGGER = LoggerFactory.getLogger(BookmarkResource.class); | ||
| private static final Logger LOGGER = Logger.getLogger(BookmarkResource.class); |
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.
If it is working please don't change it to keep the changes straighfroward
| <!-- test dependencies--> | ||
| <dependency> | ||
| <groupId>io.rest-assured</groupId> | ||
| <artifactId>rest-assured</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> |
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.
duplicated
| <!--/ Step 5 dependencies --> | ||
| <!-- Step 6 dependencies --> |
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.
wrong comment
| <groupId>io.quarkus</groupId> | ||
| <artifactId>quarkus-smallrye-health</artifactId> | ||
| </dependency> | ||
| <!-- Step 5 dependencies --> |
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.
wrong comment
bookmark-service/pom.xml
Outdated
| <maven.compiler.target>1.8</maven.compiler.target> | ||
| <maven.compiler.source>1.8</maven.compiler.source> | ||
| <quarkus.version>0.26.1</quarkus.version> | ||
| <quarkus.version>0.28.1</quarkus.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.
I will change the quarkus version in master and rebase all branches later. Can you revert this change ?
bookmark-message-consumer/pom.xml
Outdated
| <maven.compiler.target>1.8</maven.compiler.target> | ||
| <maven.compiler.source>1.8</maven.compiler.source> | ||
| <quarkus.version>0.22.0</quarkus.version> | ||
| <quarkus.version>0.28.1</quarkus.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.
I will change the quarkus version in master and rebase all branches later. Can you revert this change ?
README.md
Outdated
| - Modify `BookmarkResource` to read this configuration property and log it at startup: | ||
| - Use `@ConfigProperty` to inject the property inside a `greeting` variable. | ||
| - Create a `@PostConstruct` method that log it via `log.info("Hello {}", greeting)` using [SLFJ](https://www.slf4j.org/). | ||
| - Create a `@PostConstruct` method that log it via `LOGGER.infof("Hello %s", greeting)` using [Jboss logging](https://docs.jboss.org/jbosslogging/latest/org/jboss/logging/Logger.html). |
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.
See my other comment, please don't do this if it previously works as the LOG usage is froma different step
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
| <surefire-plugin.version>2.22.0</surefire-plugin.version> | ||
| <quarkus.version>0.26.1</quarkus.version> | ||
| <quarkus.version>0.28.1</quarkus.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.
I'll change the quarkus version later from master ...
feat(*): Add step 5 feat: small enhancements feat: solution for step 5 refactor(*): Update Postman collection
|
Can you rebase onto step-5 and squash all commits please ? |
No description provided.