Skip to content
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ subprojects {
}

jacoco {
toolVersion = "0.8.7"
toolVersion = "0.8.11"
}

jacocoTestReport {
Expand Down
2 changes: 1 addition & 1 deletion sonar-ruby-plugin/sonarpedia.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"languages": [
"RUBY"
],
"latest-update": "2025-11-26T09:09:53.433355Z",
"latest-update": "2026-01-09T08:51:15.339592200Z",
"options": {
"no-language-in-filenames": true,
"preserve-filenames": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
],
"OWASP Top 10 2021": [
"A1"
],
"CWE": [
547
]
},
"quickfix": "unknown"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void owasp_security_standard_includes_2021() {

RulesDefinition.Rule rule = repository.rule("S1313");
assertThat(rule).isNotNull();
assertThat(rule.securityStandards()).containsExactlyInAnyOrder("owaspTop10:a3", "owaspTop10-2021:a1");
assertThat(rule.securityStandards()).containsExactlyInAnyOrder("owaspTop10:a3", "owaspTop10-2021:a1", "cwe:547");
}

@Test
Expand All @@ -67,7 +67,7 @@ void owasp_security_standard() {

RulesDefinition.Rule rule = repository.rule("S1313");
assertThat(rule).isNotNull();
assertThat(rule.securityStandards()).containsExactly("owaspTop10:a3");
assertThat(rule.securityStandards()).containsExactly("cwe:547", "owaspTop10:a3");
}

private RulesDefinition.Repository getRepositoryForVersion(Version version) {
Expand Down
Loading