Skip to content

Commit

Permalink
Dependency refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Mar 14, 2024
1 parent acff095 commit 3ad5e0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- JUnit 5 agent version updated on [5.3.0](https://github.com/reportportal/agent-java-junit5/releases/tag/5.3.0), by @HardNorth
- `Android-JUnit5` version updated on `1.4.0`, by @HardNorth
- Client version updated on [5.2.5](https://github.com/reportportal/client-java/releases/tag/5.2.5), by @HardNorth
- Dependency refactoring, by @HardNorth

## [5.2.0]
### Removed
Expand Down
8 changes: 4 additions & 4 deletions agent-android-junit5/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ configurations {
}

import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar

task internalizeJar(type: ShadowJar) {
dependencies {
include(dependency('com.epam.reportportal:agent-java-junit5'))
Expand All @@ -88,11 +89,10 @@ dependencies {
implementation 'androidx.test.espresso:espresso-core:3.5.1'

// Report Portal libraries
internalize ('com.epam.reportportal:agent-java-junit5:5.3.0') {
exclude group: 'org.aspectj' // AspectJ is already included by Android
}
internalize(group: 'com.epam.reportportal', name: 'agent-java-junit5', version: '5.3.0', transitive: false)
api tasks.internalizeJar.outputs.files
api ('com.epam.reportportal:client-java:5.2.5') {
// Next two dependencies are required due to internalization
api('com.epam.reportportal:client-java:5.2.6') {
exclude group: 'org.aspectj' // AspectJ is already included by Android
}
implementation 'com.google.code.findbugs:jsr305:3.0.2'
Expand Down

0 comments on commit 3ad5e0b

Please sign in to comment.