diff --git a/CHANGELOG.md b/CHANGELOG.md index 11dae35..70a6a12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## [Unreleased] +### Changed +- Client version updated on [5.2.11](https://github.com/reportportal/client-java/releases/tag/5.2.11), by @HardNorth +- `utils-java-formatting` library version updated on version [5.2.2](https://github.com/reportportal/utils-java-formatting/releases/tag/5.2.2), by @HardNorth +- `okhttp`, `client-java` and `jsr305` dependencies marked as `compileOnly`, by @HardNorth ## [5.1.2] ### Changed diff --git a/README.md b/README.md index fe164b8..9cf88ce 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Maven Central](https://img.shields.io/maven-central/v/com.epam.reportportal/logger-java-okhttp3.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/com.epam.reportportal/logger-java-okhttp3) [![CI Build](https://github.com/reportportal/logger-java-okhttp3/actions/workflows/ci.yml/badge.svg)](https://github.com/reportportal/logger-java-okhttp3/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/reportportal/logger-java-okhttp3/branch/develop/graph/badge.svg?token=M2J13Z075Y)](https://codecov.io/gh/reportportal/logger-java-okhttp3) -[![Join Slack chat!](https://slack.epmrpp.reportportal.io/badge.svg)](https://slack.epmrpp.reportportal.io/) +[![Join Slack chat!](https://img.shields.io/badge/slack-join-brightgreen.svg)](https://slack.epmrpp.reportportal.io/) [![stackoverflow](https://img.shields.io/badge/reportportal-stackoverflow-orange.svg?style=flat)](http://stackoverflow.com/questions/tagged/reportportal) [![Build with Love](https://img.shields.io/badge/build%20with-❤%EF%B8%8F%E2%80%8D-lightgrey.svg)](http://reportportal.io?style=flat) diff --git a/README_TEMPLATE.md b/README_TEMPLATE.md index 98811c8..4127fea 100644 --- a/README_TEMPLATE.md +++ b/README_TEMPLATE.md @@ -3,7 +3,7 @@ [![Maven Central](https://img.shields.io/maven-central/v/com.epam.reportportal/logger-java-okhttp3.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/com.epam.reportportal/logger-java-okhttp3) [![CI Build](https://github.com/reportportal/logger-java-okhttp3/actions/workflows/ci.yml/badge.svg)](https://github.com/reportportal/logger-java-okhttp3/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/reportportal/logger-java-okhttp3/branch/develop/graph/badge.svg?token=M2J13Z075Y)](https://codecov.io/gh/reportportal/logger-java-okhttp3) -[![Join Slack chat!](https://slack.epmrpp.reportportal.io/badge.svg)](https://slack.epmrpp.reportportal.io/) +[![Join Slack chat!](https://img.shields.io/badge/slack-join-brightgreen.svg)](https://slack.epmrpp.reportportal.io/) [![stackoverflow](https://img.shields.io/badge/reportportal-stackoverflow-orange.svg?style=flat)](http://stackoverflow.com/questions/tagged/reportportal) [![Build with Love](https://img.shields.io/badge/build%20with-❤%EF%B8%8F%E2%80%8D-lightgrey.svg)](http://reportportal.io?style=flat) diff --git a/build.gradle b/build.gradle index 0a6d11d..349213d 100644 --- a/build.gradle +++ b/build.gradle @@ -37,11 +37,14 @@ repositories { } dependencies { - api 'com.epam.reportportal:utils-java-formatting:5.2.1' - implementation 'com.epam.reportportal:client-java:5.2.4' - implementation 'com.google.code.findbugs:jsr305:3.0.2' - implementation 'com.squareup.okhttp3:okhttp:4.12.0' + api 'com.epam.reportportal:utils-java-formatting:5.2.2' + compileOnly "com.epam.reportportal:client-java:${client_version}" + compileOnly "com.google.code.findbugs:jsr305:${jsr305_version}" + compileOnly "com.squareup.okhttp3:okhttp:${okhttp_version}" + testImplementation "com.epam.reportportal:client-java:${client_version}" + testImplementation "com.google.code.findbugs:jsr305:${jsr305_version}" + testImplementation "com.squareup.okhttp3:okhttp:${okhttp_version}" testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.2' testImplementation("org.junit.platform:junit-platform-runner:${junit5_runner_version}") { diff --git a/gradle.properties b/gradle.properties index 901d0d6..7d6d503 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,8 @@ version=5.1.3-SNAPSHOT description=Report Portal logger for OkHttp3 client +okhttp_version=4.12.0 +client_version=5.2.11 +jsr305_version=3.0.2 junit5_version=5.6.3 junit5_runner_version=1.6.3 mockito_version=4.5.1