Skip to content
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

fix(logging): bump logback/slf4j to enable logging in docker #394

Merged
merged 1 commit into from
Dec 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask

val assertjVersion = "3.23.1"
val kotlinLoggingVersion = "3.0.4"
val logbackVersion = "1.2.11"
val logbackVersion = "1.4.5"
val nimbusSdkVersion = "10.4"
val mockWebServerVersion = "4.10.0"
val jacksonVersion = "2.14.1"
Expand Down
13 changes: 13 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: "3.1"

services:
mock-oauth2-server:
image: mock-oauth2-server:latest
ports:
- "8080:8080"
volumes:
- ./src/test/resources/config.json:/app/config.json
environment:
LOG_LEVEL: "debug"
SERVER_PORT: 8080
JSON_CONFIG_PATH: /app/config.json
2 changes: 2 additions & 0 deletions src/test/resources/META-INF/spring.factories
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
org.springframework.boot.logging.LoggingSystemFactory=\
org.springframework.boot.logging.java.JavaLoggingSystem.Factory