Skip to content

Commit

Permalink
Mark aspectjrt dependency as implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Mar 29, 2024
1 parent 232f7d4 commit e5b2621
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## [Unreleased]
### Changed
- Mark `aspectjrt` dependency as `implementation`, by @HardNorth

## [5.2.8]
### Added
Expand Down
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,24 +43,23 @@ dependencies {
api ('com.epam.reportportal:commons-model:5.0.0') {
exclude module: 'jackson-databind'
}
api 'com.fasterxml.jackson.core:jackson-databind:2.12.7.1' // Access is needed by HTTP loggers to format JSON
api 'io.reactivex.rxjava2:rxjava:2.2.10'
api 'com.google.code.findbugs:jsr305:3.0.2'

api ("com.squareup.retrofit2:retrofit:${project.retrofit_version}") {
exclude module: 'okhttp'
}
api 'com.fasterxml.jackson.core:jackson-databind:2.12.7.1' // Access is needed by HTTP loggers to format JSON
implementation "com.squareup.okhttp3:okhttp:${project.okhttp_version}"
implementation "com.squareup.retrofit2:converter-scalars:${project.retrofit_version}"
implementation ("com.squareup.retrofit2:converter-jackson:${project.retrofit_version}") {
exclude module: 'jackson-databind'
}
implementation ("com.squareup.retrofit2:adapter-rxjava2:${project.retrofit_version}") {
exclude module: 'rxjava'
}
implementation "com.squareup.okhttp3:okhttp:${project.okhttp_version}"
implementation "com.squareup.okhttp3:logging-interceptor:${project.okhttp_version}"

api "org.aspectj:aspectjrt:${project.aspectj_version}"
implementation "org.aspectj:aspectjrt:${project.aspectj_version}"
implementation "org.aspectj:aspectjweaver:${project.aspectj_version}"

implementation 'org.slf4j:slf4j-api:2.0.7'
Expand Down

0 comments on commit e5b2621

Please sign in to comment.