Skip to content

Commit

Permalink
build(deps): bump org.apache.maven.plugins:maven-invoker-plugin from …
Browse files Browse the repository at this point in the history
…3.7.0 to 3.8.0 (#6919)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Hans Aikema <[email protected]>
  • Loading branch information
dependabot[bot] and aikebah authored Sep 17, 2024
1 parent 3b43616 commit bb442ba
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,13 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Copyright (c) 2014 Jeremy Long. All Rights Reserved.
*/

import org.apache.commons.lang.StringUtils
import org.apache.commons.lang3.StringUtils

String oldReport = new File(basedir, "old/target/dependency-check-report.xml").text
int count = StringUtils.countMatches(oldReport, "pkg:maven/org.slf4j/[email protected]");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Copyright (c) 2014 Jeremy Long. All Rights Reserved.
*/

import org.apache.commons.lang.StringUtils
import org.apache.commons.lang3.StringUtils

// Check to see if jackson-dataformat-xml-2.4.5.jar was identified.
//TODO change this to xpath and check for CVE-2018-11307
Expand Down
2 changes: 1 addition & 1 deletion maven/src/it/1677-dependency-management/postbuild.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Copyright (c) 2014 Jeremy Long. All Rights Reserved.
*/

import org.apache.commons.lang.StringUtils
import org.apache.commons.lang3.StringUtils

// Check to see if jackson-dataformat-xml-2.4.5.jar was identified.
//TODO change this to xpath and check for CVE-2018-11307
Expand Down
2 changes: 1 addition & 1 deletion maven/src/it/618-aggregator-update-only/postbuild.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Copyright (c) 2014 Jeremy Long. All Rights Reserved.
*/

import org.apache.commons.lang.StringUtils
import org.apache.commons.lang3.StringUtils

// Analyse number of "Checking for updates"
String log = new File(basedir, "build.log").text
Expand Down
2 changes: 1 addition & 1 deletion maven/src/it/690-threadsafety/postbuild.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Copyright (c) 2014 Jeremy Long. All Rights Reserved.
*/

import org.apache.commons.lang.StringUtils
import org.apache.commons.lang3.StringUtils

String log = new File(basedir, "build.log").text
int count = StringUtils.countMatches(log, "Download Started for NVD CVE - 2020");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Copyright (c) 2017 The OWASP Foundation. All Rights Reserved.
*/

import org.apache.commons.lang.StringUtils
import org.apache.commons.lang3.StringUtils

// Check that suppression worked.
String log = new File(basedir, "build.log").text
Expand Down
2 changes: 1 addition & 1 deletion maven/src/it/740-aggregate/postbuild.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Copyright (c) 2014 Jeremy Long. All Rights Reserved.
*/

import org.apache.commons.lang.StringUtils
import org.apache.commons.lang3.StringUtils

import java.nio.charset.StandardCharsets
import java.nio.file.Files;
Expand Down
2 changes: 1 addition & 1 deletion maven/src/it/artifactory-analyzer/postbuild.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Copyright (c) 2018 Nicolas Henneaux. All Rights Reserved.
*/

import org.apache.commons.lang.StringUtils
import org.apache.commons.lang3.StringUtils

String log = new File(basedir, "build.log").text
int count = StringUtils.countMatches(log, "There was an issue connecting to Artifactory . Disabling analyzer.");
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ Copyright (c) 2012 - Jeremy Long
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.7.0</version>
<version>3.8.0</version>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
Expand Down

0 comments on commit bb442ba

Please sign in to comment.