generated from micronaut-projects/micronaut-project-template
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Test Resources to 4.7.x Core (#758)
* fix(deps): update testcontainers-java monorepo to v1.20.3 * fix(deps): update dependency io.micronaut.reactor:micronaut-reactor-bom to v3.6.0 * fix(deps): update dependency io.micronaut.mongodb:micronaut-mongo-bom to v5.5.0 * fix(deps): update dependency io.micronaut.logging:micronaut-logging-bom to v1.5.0 * fix(deps): update dependency io.micronaut.kafka:micronaut-kafka-bom to v5.7.0 * fix(deps): update dependency io.micronaut.controlpanel:micronaut-control-panel-bom to v1.6.0 * fix(deps): update aws-java-sdk-v2 monorepo to v2.29.7 * add missing logback * micronaut 4.7.3 * platform 4.6.3
- Loading branch information
Showing
2 changed files
with
23 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...ources-extensions/test-resources-extensions-junit-platform/src/test/resources/logback.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<configuration> | ||
|
||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<!-- encoders are assigned the type | ||
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default --> | ||
<encoder> | ||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="info"> | ||
<appender-ref ref="STDOUT" /> | ||
</root> | ||
</configuration> |