From c3418ac7798ca6f98f00b4a2f57e5d3bb57383c6 Mon Sep 17 00:00:00 2001 From: Vadzim Hushchanskou Date: Tue, 12 Mar 2024 16:10:15 +0300 Subject: [PATCH] Slack link update`client-java` and `logback-classic` dependencies marked as `compileOnly` --- CHANGELOG.md | 5 ++++- build.gradle | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2b8297..f64d71a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,15 @@ # Changelog ## [Unreleased] +### Changed +- Client version updated on [5.2.5](https://github.com/reportportal/client-java/releases/tag/5.2.5), by @HardNorth +- `client-java` and `logback-classic` dependencies marked as `compileOnly` to force users specify their own dependencies, by @HardNorth ## [5.2.1] ### Changed - Client version updated on [5.2.4](https://github.com/reportportal/client-java/releases/tag/5.2.4), by @HardNorth ### Removed -- `commons-model` dependency to rely on `clinet-java` exclusions in security fixes, by @HardNorth +- `commons-model` dependency to rely on `client-java` exclusions in security fixes, by @HardNorth ## [5.2.0] ### Changed diff --git a/build.gradle b/build.gradle index 9604db9..d4cc909 100644 --- a/build.gradle +++ b/build.gradle @@ -37,8 +37,8 @@ repositories { } dependencies { - implementation 'com.epam.reportportal:client-java:5.2.4' - implementation 'ch.qos.logback:logback-classic:1.3.12' + compileOnly 'com.epam.reportportal:client-java:5.2.5' + compileOnly 'ch.qos.logback:logback-classic:1.3.12' testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.2' testImplementation('org.awaitility:awaitility:4.0.2') {