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.
Please do the requested changes
| LOGGER.info("Hello {}", greeting); | ||
| LOGGER.infof("Hello %s", greeting); |
There was a problem hiding this comment.
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.
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> |
| <!--/ Step 5 dependencies --> | ||
| <!-- Step 6 dependencies --> |
| <groupId>io.quarkus</groupId> | ||
| <artifactId>quarkus-smallrye-health</artifactId> | ||
| </dependency> | ||
| <!-- Step 5 dependencies --> |
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.
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.
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.
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.
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.