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

Release #7

Merged
merged 3 commits into from
Apr 3, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
- `client-java` dependency marked as `compileOnly`, by @HardNorth
- `utils-java-formatting` dependency version updated on [5.2.2](https://github.com/reportportal/utils-java-formatting/releases/tag/5.2.2), by @HardNorth

## [5.1.2]
### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Maven Central](https://img.shields.io/maven-central/v/com.epam.reportportal/logger-java-httpcomponents.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/com.epam.reportportal/logger-java-httpcomponents)
[![CI Build](https://github.com/reportportal/logger-java-httpcomponents/actions/workflows/ci.yml/badge.svg)](https://github.com/reportportal/logger-java-httpcomponents/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/reportportal/logger-java-httpcomponents/branch/develop/graph/badge.svg?token=X7YWAPK1X5)](https://codecov.io/gh/reportportal/logger-java-httpcomponents)
[![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)

Expand Down
2 changes: 1 addition & 1 deletion README_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Maven Central](https://img.shields.io/maven-central/v/com.epam.reportportal/logger-java-httpcomponents.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/com.epam.reportportal/logger-java-httpcomponents)
[![CI Build](https://github.com/reportportal/logger-java-httpcomponents/actions/workflows/ci.yml/badge.svg)](https://github.com/reportportal/logger-java-httpcomponents/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/reportportal/logger-java-httpcomponents/branch/develop/graph/badge.svg?token=X7YWAPK1X5)](https://codecov.io/gh/reportportal/logger-java-httpcomponents)
[![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)

Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,12 @@ repositories {
}

dependencies {
api 'com.epam.reportportal:utils-java-formatting:5.2.1'
implementation 'com.epam.reportportal:client-java:5.2.4'
api 'com.epam.reportportal:utils-java-formatting:5.2.2'
compileOnly "com.epam.reportportal:client-java:${client_version}"
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'org.apache.httpcomponents:httpcore:4.4.16'

testImplementation "com.epam.reportportal:client-java:${client_version}"
testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.2'

testImplementation("org.junit.platform:junit-platform-runner:${junit5_runner_version}") {
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ junit5_version=5.6.3
junit5_runner_version=1.6.3
mockito_version=4.5.1
httpclient_version=4.5.14
client_version=5.2.11
scripts_url=https://raw.githubusercontent.com/reportportal/gradle-scripts
scripts_branch=master
excludeTests=
Loading