Skip to content

Commit

Permalink
Merge branch 'jenkinsci:main' into feature/ignore-sarif-suppressions
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Jonsey authored Nov 27, 2024
2 parents 0b8d218 + eb9872a commit b601e95
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 18 deletions.
2 changes: 1 addition & 1 deletion SUPPORTED-FORMATS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- DO NOT EDIT -- Generated at 2024-11-19T21:47:53.662921218 - Run the `main` method of `ParserRegistry` to regenerate after changing parsers -- DO NOT EDIT --->
<!--- DO NOT EDIT -- Generated at 2024-11-27T13:40:12.801998925 - Run the `main` method of `ParserRegistry` to regenerate after changing parsers -- DO NOT EDIT --->
# Supported Report Formats

The static analysis model supports the following report formats.
Expand Down
16 changes: 0 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -292,22 +292,6 @@

<build>
<plugins>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>11.1.0</version>
<configuration>
<nvdApiServerId>nvd.nist.gov</nvdApiServerId>
<format>JSON</format>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
* Tests the class {@link AntJavacParser}.
*/
class AntJavacParserTest extends AbstractParserTest {
private static final int ALLOWED_TIMEOUT_IN_SECONDS = 5;

AntJavacParserTest() {
super("ant-javac.txt");
}
Expand All @@ -37,7 +39,7 @@ void issue67521IgnoreJavaDocWarnings() {
*/
@Test
void issue55805() {
assertTimeoutPreemptively(Duration.ofSeconds(1), () -> parse("issue55805.txt"));
assertTimeoutPreemptively(Duration.ofSeconds(ALLOWED_TIMEOUT_IN_SECONDS), () -> parse("issue55805.txt"));
}

/**
Expand Down

0 comments on commit b601e95

Please sign in to comment.