Skip to content

Commit 1ed0f42

Browse files
Bump org.codehaus.mojo:mojo-parent from 87 to 88 (#474)
* Bump org.codehaus.mojo:mojo-parent from 87 to 88 Bumps [org.codehaus.mojo:mojo-parent](https://github.com/mojohaus/mojo-parent) from 87 to 88. - [Release notes](https://github.com/mojohaus/mojo-parent/releases) - [Commits](https://github.com/mojohaus/mojo-parent/commits) --- updated-dependencies: - dependency-name: org.codehaus.mojo:mojo-parent dependency-version: '88' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * exclude Maven 3.6.3 from build * fix for spotless ... --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Slawomir Jaranowski <[email protected]>
1 parent d221e23 commit 1ed0f42

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ jobs:
2525
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4
2626
with:
2727
maven4-enabled: true
28+
matrix-exclude: '[{"maven": "3.6.3"}]'

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.codehaus.mojo</groupId>
77
<artifactId>mojo-parent</artifactId>
8-
<version>87</version>
8+
<version>88</version>
99
</parent>
1010

1111
<artifactId>exec-maven-plugin</artifactId>

src/main/java/org/codehaus/mojo/exec/ExecJavaMojo.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,6 @@ private void doRun(final Class<?> bootClass)
414414
private Object lookupParam(final java.lang.reflect.Parameter param) throws ComponentLookupException {
415415
final String name = param.getName();
416416
switch (name) {
417-
// loose coupled to maven (wrapped with standard jvm types to not require it)
418417
case "systemProperties": // Properties
419418
return getSession().getSystemProperties();
420419
case "systemPropertiesUpdater": // BiConsumer<String, String>
@@ -429,7 +428,6 @@ private Object lookupParam(final java.lang.reflect.Parameter param) throws Compo
429428
return propertiesUpdater(project.getProperties());
430429
case "highestVersionResolver": // Function<String, String>
431430
return resolveVersion(VersionRangeResult::getHighestVersion);
432-
// standard bindings
433431
case "session": // MavenSession
434432
return getSession();
435433
case "container": // PlexusContainer

0 commit comments

Comments
 (0)