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

remove owasp checks #574

Merged
merged 2 commits into from
Dec 13, 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
30 changes: 0 additions & 30 deletions .github/workflows/dependencyCheck.yml

This file was deleted.

6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@ Update dependency verification metadata and export any new keys.
git add gradle/verification-metadata.xml
git add gradle/verification-keyring.keys

## Owasp Dependency check

Check OWASP scan for dependencies

./gradlew dependencyCheckAggregate -Porg.gradle.dependency.verification.console=verbose --dependency-verification lenient

## Install Locally

Install to local path rd-cli-tool/build/install/rd/bin/rd
Expand Down
7 changes: 0 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,16 @@

plugins {
id 'base'
alias(libs.plugins.owasp)
alias(libs.plugins.axion)
alias(libs.plugins.nexusPublish)
}
import java.util.regex.Matcher
import pl.allegro.tech.build.axion.release.domain.VersionConfig
import pl.allegro.tech.build.axion.release.infrastructure.di.VersionResolutionContext

apply plugin: 'org.owasp.dependencycheck'
ext.githubUrl = "https://github.com/rundeck/rundeck-cli"
ext.changelogFile = file("CHANGELOG.md")

dependencyCheck {
suppressionFile='cve-suppress.xml'
format='ALL'
failBuildOnCVSS=8
}
subprojects{

apply plugin: "java-library"
Expand Down
2 changes: 0 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ shadow = "7.1.2"
ospackage = "9.1.1"
buildInfo = "0.9"
buildConfig = "3.1.0"
owasp = "7.1.0.1"
jacksonDatabind = "2.18.1"
picocli = "4.6.3"
snakeYaml = "2.0"
Expand Down Expand Up @@ -66,4 +65,3 @@ shadow = { id = "com.github.johnrengelman.shadow", version.ref = "shadow" }
ospackage = { id = "nebula.ospackage", version.ref = "ospackage" }
buildInfo = { id = "org.dvaske.gradle.git-build-info", version.ref = "buildInfo" }
buildConfig = { id = 'com.github.gmazzo.buildconfig', version.ref = "buildConfig" }
owasp = { id = "org.owasp.dependencycheck", version.ref = "owasp" }
Loading