Skip to content

Commit

Permalink
Client version updated, client and JSR 305 dependencies marked as `co…
Browse files Browse the repository at this point in the history
…mpileOnly`
  • Loading branch information
HardNorth committed Mar 28, 2024
1 parent 19f1dc0 commit 4c88de8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## [Unreleased]
### Changed
- Client version updated on [5.2.7](https://github.com/reportportal/client-java/releases/tag/5.2.7), by @HardNorth
- Client and JSR 305 dependencies marked as `compileOnly`, by @HardNorth

## [5.2.1]
### Changed
Expand Down
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,13 @@ repositories {
}

dependencies {
implementation 'com.epam.reportportal:client-java:5.2.4'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
compileOnly "com.epam.reportportal:client-java:${client_version}"
compileOnly "com.google.code.findbugs:jsr305:${jsr305_version}"

implementation 'org.jsoup:jsoup:1.15.3'

testImplementation "com.epam.reportportal:client-java:${client_version}"
testImplementation "com.google.code.findbugs:jsr305:${jsr305_version}"
testImplementation 'com.epam.reportportal:agent-java-test-utils:0.0.2'

testImplementation("org.junit.platform:junit-platform-runner:${junit5_runner_version}") {
Expand Down
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ description=Report Portal Java formatting utils for Agents and Loggers
junit5_version=5.6.3
junit5_runner_version=1.6.3
mockito_version=4.5.1
client_version=5.2.7
jsr305_version=3.0.2
scripts_url=https://raw.githubusercontent.com/reportportal/gradle-scripts
scripts_branch=master
excludeTests=

0 comments on commit 4c88de8

Please sign in to comment.