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

EPMRPP-90461 || Support AWS IAM Role to Grant Access to AWS Resources #2138

Closed
wants to merge 3 commits into from
Closed
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
12 changes: 3 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,13 @@ dependencyManagement {
}
}

println("Release mode: $releaseMode")

dependencies {
if (releaseMode) {
println("Using release dependencies")
implementation 'com.epam.reportportal:commons-dao'
implementation 'com.epam.reportportal:commons'
implementation 'com.epam.reportportal:plugin-api'
} else {
println("Using snapshot dependencies")
implementation 'com.github.reportportal:commons-dao:72f99ff'
implementation 'com.github.reportportal:commons-dao:b561fb6'
implementation 'com.github.reportportal:commons:3dfb9d8'
implementation 'com.github.reportportal:plugin-api:8a1f61c'
}
Expand Down Expand Up @@ -120,8 +116,6 @@ dependencies {
}
implementation 'xerces:xercesImpl:2.12.2'
implementation 'com.lowagie:itext:4.2.2'
// Fix CVE-2021-43113 in com.lowagie:itext:4.2.2
implementation 'com.itextpdf:itextpdf:5.5.13.4'
// Fix CVE-2020-15522 in com.lowagie:itext:2.1.7.js7
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
// JasperReport's export to XLS uses Apache POI
Expand Down Expand Up @@ -238,6 +232,6 @@ drill {
}
}

tasks.preTagCommit.enabled = false
tasks.preTagCommit.enabled = false
tasks.updateVersion.enabled = false
tasks.commitNewVersion.enabled = false
tasks.commitNewVersion.enabled = false
Loading