├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ ├── ci-build.yml │ ├── codeql-analysis.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Jenkinsfile ├── LICENSE.txt ├── README.md ├── docs └── images │ ├── jenkins-build-findings.png │ ├── jenkins-build-policy-violations.png │ ├── jenkins-build-summary.png │ ├── jenkins-global-settings.png │ ├── jenkins-job-publish.png │ ├── jenkins-job-thresholds.png │ ├── jenkins-job-trend-policy-violations.png │ └── jenkins-job-trend.png ├── lombok.config ├── package.json ├── pom.xml ├── spotbugs-excludes.xml └── src ├── main ├── java │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── DependencyTrack │ │ ├── ApiClientFactory.java │ │ ├── ConsoleLogger.java │ │ ├── DependencyTrackPublisher.java │ │ ├── DescriptorImpl.java │ │ ├── JobAction.java │ │ ├── PluginUtil.java │ │ ├── ProjectProperties.java │ │ ├── ResultAction.java │ │ ├── ResultLinkAction.java │ │ ├── ViolationsJobAction.java │ │ ├── ViolationsRunAction.java │ │ ├── api │ │ ├── ApiClient.java │ │ ├── ApiClientException.java │ │ ├── ApiClientExceptionClassifier.java │ │ ├── Logger.java │ │ ├── PagedResult.java │ │ ├── ProjectData.java │ │ └── UploadResult.java │ │ └── model │ │ ├── Analysis.java │ │ ├── Component.java │ │ ├── ComponentParser.java │ │ ├── Finding.java │ │ ├── FindingParser.java │ │ ├── ModelParser.java │ │ ├── Permissions.java │ │ ├── Project.java │ │ ├── ProjectParser.java │ │ ├── RiskGate.java │ │ ├── Severity.java │ │ ├── SeverityDistribution.java │ │ ├── Team.java │ │ ├── TeamParser.java │ │ ├── Thresholds.java │ │ ├── Violation.java │ │ ├── ViolationParser.java │ │ ├── ViolationState.java │ │ ├── ViolationType.java │ │ └── Vulnerability.java ├── resources │ ├── index.jelly │ └── org │ │ └── jenkinsci │ │ └── plugins │ │ └── DependencyTrack │ │ ├── DependencyTrackPublisher │ │ ├── config.jelly │ │ ├── config.properties │ │ ├── config_de.properties │ │ ├── global.jelly │ │ ├── global.properties │ │ ├── global_de.properties │ │ ├── help-artifact.html │ │ ├── help-artifact_de.html │ │ ├── help-autoCreateProjects.html │ │ ├── help-autoCreateProjects_de.html │ │ ├── help-dependencyTrackApiKey.html │ │ ├── help-dependencyTrackApiKey_de.html │ │ ├── help-dependencyTrackAutoCreateProjects.html │ │ ├── help-dependencyTrackAutoCreateProjects_de.html │ │ ├── help-dependencyTrackConnectionTimeout.html │ │ ├── help-dependencyTrackConnectionTimeout_de.html │ │ ├── help-dependencyTrackFrontendUrl.html │ │ ├── help-dependencyTrackFrontendUrl_de.html │ │ ├── help-dependencyTrackPollingInterval.html │ │ ├── help-dependencyTrackPollingInterval_de.html │ │ ├── help-dependencyTrackPollingTimeout.html │ │ ├── help-dependencyTrackPollingTimeout_de.html │ │ ├── help-dependencyTrackReadTimeout.html │ │ ├── help-dependencyTrackReadTimeout_de.html │ │ ├── help-dependencyTrackUrl.html │ │ ├── help-dependencyTrackUrl_de.html │ │ ├── help-failOnViolationFail.html │ │ ├── help-failOnViolationFail_de.html │ │ ├── help-overrideGlobals.html │ │ ├── help-overrideGlobals_de.html │ │ ├── help-projectId.html │ │ ├── help-projectId_de.html │ │ ├── help-projectName.html │ │ ├── help-projectName_de.html │ │ ├── help-projectProperties.html │ │ ├── help-projectProperties_de.html │ │ ├── help-projectVersion.html │ │ ├── help-projectVersion_de.html │ │ ├── help-synchronous.html │ │ ├── help-synchronous_de.html │ │ ├── help-thresholds-new.html │ │ ├── help-thresholds-new_de.html │ │ ├── help-thresholds-total.html │ │ ├── help-thresholds-total_de.html │ │ ├── help-warnOnViolationWarn.html │ │ └── help-warnOnViolationWarn_de.html │ │ ├── JobAction │ │ ├── floatingBox.jelly │ │ ├── floatingBox.properties │ │ └── floatingBox_de.properties │ │ ├── Messages.properties │ │ ├── Messages_de.properties │ │ ├── ProjectProperties │ │ ├── config.jelly │ │ ├── config.properties │ │ ├── config_de.properties │ │ ├── help-description.html │ │ ├── help-description_de.html │ │ ├── help-group.html │ │ ├── help-group_de.html │ │ ├── help-isLatest.html │ │ ├── help-isLatest_de.html │ │ ├── help-parentId.html │ │ ├── help-parentId_de.html │ │ ├── help-parentName.html │ │ ├── help-parentName_de.html │ │ ├── help-parentVersion.html │ │ ├── help-parentVersion_de.html │ │ ├── help-swidTagId.html │ │ ├── help-swidTagId_de.html │ │ ├── help-tags.html │ │ └── help-tags_de.html │ │ ├── ResultAction │ │ ├── index.jelly │ │ ├── index.properties │ │ ├── index_de.properties │ │ ├── summary.jelly │ │ ├── summary.properties │ │ └── summary_de.properties │ │ ├── ViolationsJobAction │ │ ├── floatingBox.jelly │ │ ├── floatingBox.properties │ │ └── floatingBox_de.properties │ │ ├── ViolationsRunAction │ │ ├── index.jelly │ │ ├── index.properties │ │ ├── index_de.properties │ │ ├── summary.jelly │ │ ├── summary.properties │ │ └── summary_de.properties │ │ └── api │ │ ├── Messages.properties │ │ └── Messages_de.properties └── webapp │ ├── css │ ├── config.css │ ├── global.css │ └── result-action.css │ ├── icons │ ├── dt-logo-symbol.svg │ ├── red.svg │ └── yellow.svg │ └── js │ ├── charts-violations.js │ ├── charts.js │ ├── result-action.js │ ├── result-summary.js │ ├── violations-action.js │ └── violations-summary.js └── test ├── java └── org │ └── jenkinsci │ └── plugins │ ├── DependencyTrack │ ├── ConsoleLoggerTest.java │ ├── DependencyTrackPublisherTest.java │ ├── DescriptorImplTest.java │ ├── JobActionTest.java │ ├── PluginUtilTest.java │ ├── ProjectPropertiesTest.java │ ├── ResultActionTest.java │ ├── ResultLinkActionTest.java │ ├── ViolationsJobActionTest.java │ ├── ViolationsRunActionTest.java │ ├── api │ │ └── ApiClientTest.java │ └── model │ │ ├── FindingParserTest.java │ │ ├── FindingTest.java │ │ ├── RiskGateTest.java │ │ ├── ThresholdsTest.java │ │ └── ViolationParserTest.java │ └── configuration │ └── ConfigurationAsCodeTest.java └── resources ├── dependency_track_test_config.yml ├── dependency_track_test_config_exported.yml ├── failedTotalFindings.csv ├── findings.json ├── unstableTotalFindings.csv └── violations.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @sephiroth-j 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/.github/workflows/ci-build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/jenkins-build-findings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/docs/images/jenkins-build-findings.png -------------------------------------------------------------------------------- /docs/images/jenkins-build-policy-violations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/docs/images/jenkins-build-policy-violations.png -------------------------------------------------------------------------------- /docs/images/jenkins-build-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/docs/images/jenkins-build-summary.png -------------------------------------------------------------------------------- /docs/images/jenkins-global-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/docs/images/jenkins-global-settings.png -------------------------------------------------------------------------------- /docs/images/jenkins-job-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/docs/images/jenkins-job-publish.png -------------------------------------------------------------------------------- /docs/images/jenkins-job-thresholds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/docs/images/jenkins-job-thresholds.png -------------------------------------------------------------------------------- /docs/images/jenkins-job-trend-policy-violations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/docs/images/jenkins-job-trend-policy-violations.png -------------------------------------------------------------------------------- /docs/images/jenkins-job-trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/docs/images/jenkins-job-trend.png -------------------------------------------------------------------------------- /lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/lombok.config -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/package.json -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /spotbugs-excludes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/spotbugs-excludes.xml -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/ApiClientFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/ApiClientFactory.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/ConsoleLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/ConsoleLogger.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/DescriptorImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/DescriptorImpl.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/JobAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/JobAction.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/PluginUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/PluginUtil.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/ProjectProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/ProjectProperties.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/ResultAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/ResultAction.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/ResultLinkAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/ResultLinkAction.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/ViolationsJobAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/ViolationsJobAction.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/api/ApiClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/api/ApiClient.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/api/ApiClientException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/api/ApiClientException.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/api/ApiClientExceptionClassifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/api/ApiClientExceptionClassifier.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/api/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/api/Logger.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/api/PagedResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/api/PagedResult.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/api/ProjectData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/api/ProjectData.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/api/UploadResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/api/UploadResult.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Analysis.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Analysis.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Component.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Component.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ComponentParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ComponentParser.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Finding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Finding.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/FindingParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/FindingParser.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ModelParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ModelParser.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Permissions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Permissions.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Project.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Project.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ProjectParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ProjectParser.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/RiskGate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/RiskGate.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Severity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Severity.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/SeverityDistribution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/SeverityDistribution.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Team.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Team.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/TeamParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/TeamParser.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Thresholds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Thresholds.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Violation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Violation.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ViolationParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ViolationParser.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ViolationState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ViolationState.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ViolationType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/ViolationType.java -------------------------------------------------------------------------------- /src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Vulnerability.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/java/org/jenkinsci/plugins/DependencyTrack/model/Vulnerability.java -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/config.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/config_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/config_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/global.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/global.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/global.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/global.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/global_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/global_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-artifact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-artifact.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-artifact_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-artifact_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-autoCreateProjects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-autoCreateProjects.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-autoCreateProjects_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-autoCreateProjects_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackApiKey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackApiKey.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackApiKey_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackApiKey_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackAutoCreateProjects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackAutoCreateProjects.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackAutoCreateProjects_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackAutoCreateProjects_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackConnectionTimeout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackConnectionTimeout.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackConnectionTimeout_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackConnectionTimeout_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackFrontendUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackFrontendUrl.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackFrontendUrl_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackFrontendUrl_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackPollingInterval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackPollingInterval.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackPollingInterval_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackPollingInterval_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackPollingTimeout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackPollingTimeout.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackPollingTimeout_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackPollingTimeout_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackReadTimeout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackReadTimeout.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackReadTimeout_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackReadTimeout_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackUrl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackUrl.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackUrl_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-dependencyTrackUrl_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-failOnViolationFail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-failOnViolationFail.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-failOnViolationFail_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-failOnViolationFail_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-overrideGlobals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-overrideGlobals.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-overrideGlobals_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-overrideGlobals_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectId.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectId_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectId_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectName.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectName_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectName_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectProperties.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectProperties_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectProperties_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectVersion.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectVersion_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-projectVersion_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-synchronous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-synchronous.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-synchronous_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-synchronous_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-thresholds-new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-thresholds-new.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-thresholds-new_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-thresholds-new_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-thresholds-total.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-thresholds-total.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-thresholds-total_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-thresholds-total_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-warnOnViolationWarn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-warnOnViolationWarn.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-warnOnViolationWarn_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisher/help-warnOnViolationWarn_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/JobAction/floatingBox.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/JobAction/floatingBox.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/JobAction/floatingBox.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/JobAction/floatingBox.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/JobAction/floatingBox_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/JobAction/floatingBox_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/Messages_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/Messages_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/config.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/config.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/config_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/config_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-description.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-description_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-description_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-group.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-group_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-group_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-isLatest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-isLatest.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-isLatest_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-isLatest_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentId.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentId_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentId_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentName.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentName_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentName_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentVersion.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentVersion_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-parentVersion_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-swidTagId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-swidTagId.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-swidTagId_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-swidTagId_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-tags.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-tags_de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ProjectProperties/help-tags_de.html -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/index.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/index.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/index_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/index_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/summary.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/summary.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/summary.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/summary.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/summary_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ResultAction/summary_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsJobAction/floatingBox.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsJobAction/floatingBox.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsJobAction/floatingBox.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsJobAction/floatingBox.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsJobAction/floatingBox_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsJobAction/floatingBox_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/index.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/index.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/index_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/index_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/summary.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/summary.jelly -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/summary.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/summary.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/summary_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/ViolationsRunAction/summary_de.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/api/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/api/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/org/jenkinsci/plugins/DependencyTrack/api/Messages_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/resources/org/jenkinsci/plugins/DependencyTrack/api/Messages_de.properties -------------------------------------------------------------------------------- /src/main/webapp/css/config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/css/config.css -------------------------------------------------------------------------------- /src/main/webapp/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/css/global.css -------------------------------------------------------------------------------- /src/main/webapp/css/result-action.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/css/result-action.css -------------------------------------------------------------------------------- /src/main/webapp/icons/dt-logo-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/icons/dt-logo-symbol.svg -------------------------------------------------------------------------------- /src/main/webapp/icons/red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/icons/red.svg -------------------------------------------------------------------------------- /src/main/webapp/icons/yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/icons/yellow.svg -------------------------------------------------------------------------------- /src/main/webapp/js/charts-violations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/js/charts-violations.js -------------------------------------------------------------------------------- /src/main/webapp/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/js/charts.js -------------------------------------------------------------------------------- /src/main/webapp/js/result-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/js/result-action.js -------------------------------------------------------------------------------- /src/main/webapp/js/result-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/js/result-summary.js -------------------------------------------------------------------------------- /src/main/webapp/js/violations-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/js/violations-action.js -------------------------------------------------------------------------------- /src/main/webapp/js/violations-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/main/webapp/js/violations-summary.js -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/ConsoleLoggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/ConsoleLoggerTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/DependencyTrackPublisherTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/DescriptorImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/DescriptorImplTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/JobActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/JobActionTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/PluginUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/PluginUtilTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/ProjectPropertiesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/ProjectPropertiesTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/ResultActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/ResultActionTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/ResultLinkActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/ResultLinkActionTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/ViolationsJobActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/ViolationsJobActionTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/ViolationsRunActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/ViolationsRunActionTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/api/ApiClientTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/api/ApiClientTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/model/FindingParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/model/FindingParserTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/model/FindingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/model/FindingTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/model/RiskGateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/model/RiskGateTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/model/ThresholdsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/model/ThresholdsTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/DependencyTrack/model/ViolationParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/DependencyTrack/model/ViolationParserTest.java -------------------------------------------------------------------------------- /src/test/java/org/jenkinsci/plugins/configuration/ConfigurationAsCodeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/java/org/jenkinsci/plugins/configuration/ConfigurationAsCodeTest.java -------------------------------------------------------------------------------- /src/test/resources/dependency_track_test_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/resources/dependency_track_test_config.yml -------------------------------------------------------------------------------- /src/test/resources/dependency_track_test_config_exported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/resources/dependency_track_test_config_exported.yml -------------------------------------------------------------------------------- /src/test/resources/failedTotalFindings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/resources/failedTotalFindings.csv -------------------------------------------------------------------------------- /src/test/resources/findings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/resources/findings.json -------------------------------------------------------------------------------- /src/test/resources/unstableTotalFindings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/resources/unstableTotalFindings.csv -------------------------------------------------------------------------------- /src/test/resources/violations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/dependency-track-plugin/HEAD/src/test/resources/violations.json --------------------------------------------------------------------------------