Skip to content

Commit

Permalink
chore(release): 1.155.4 [GRADLE SCRIPT]
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Jan 15, 2023
1 parent 049738a commit 45be23b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Sat Sep 24 18:29:39 CEST 2022
version=1.155.3
#Sun Jan 15 10:04:44 CET 2023
version=1.155.4
description=A collection of scripts
group=se.bjurr.violations
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import java.util.Set;
import java.util.TreeSet;
import java.util.stream.Collectors;

import se.bjurr.violations.lib.model.SEVERITY;
import se.bjurr.violations.lib.model.Violation;
import se.bjurr.violations.lib.model.generated.sarif.ArtifactLocation;
Expand Down Expand Up @@ -37,8 +36,8 @@ public static SarifSchema fromViolations(final Set<Violation> from) {
return new SarifSchema().withVersion("2.1.0").withRuns(runs);
}

private static Tool toTool() {
final Set<Object> contents = new TreeSet<>();
private static Tool toTool() {
final Set<Object> contents = new TreeSet<>();
contents.add("nonLocalizedData");

final ToolComponent driver = new ToolComponent();
Expand All @@ -48,8 +47,8 @@ private static Tool toTool() {

final Tool tool = new Tool();
tool.setDriver(driver);
return tool;
}
return tool;
}

private static List<Result> toResults(final Set<Violation> from) {
return from.stream().map(it -> transform(it)).collect(Collectors.toList());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"contents": [
"nonLocalizedData"
],
"isComprehensive": false,
"isComprehensive": true,
"supportedTaxonomies": []
},
"extensions": []
Expand Down

0 comments on commit 45be23b

Please sign in to comment.