File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
src/main/java/org/codehaus/mojo/exec Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 25
25
uses : apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v4
26
26
with :
27
27
maven4-enabled : true
28
+ matrix-exclude : ' [{"maven": "3.6.3"}]'
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.codehaus.mojo</groupId >
7
7
<artifactId >mojo-parent</artifactId >
8
- <version >87 </version >
8
+ <version >88 </version >
9
9
</parent >
10
10
11
11
<artifactId >exec-maven-plugin</artifactId >
Original file line number Diff line number Diff line change @@ -414,7 +414,6 @@ private void doRun(final Class<?> bootClass)
414
414
private Object lookupParam (final java .lang .reflect .Parameter param ) throws ComponentLookupException {
415
415
final String name = param .getName ();
416
416
switch (name ) {
417
- // loose coupled to maven (wrapped with standard jvm types to not require it)
418
417
case "systemProperties" : // Properties
419
418
return getSession ().getSystemProperties ();
420
419
case "systemPropertiesUpdater" : // BiConsumer<String, String>
@@ -429,7 +428,6 @@ private Object lookupParam(final java.lang.reflect.Parameter param) throws Compo
429
428
return propertiesUpdater (project .getProperties ());
430
429
case "highestVersionResolver" : // Function<String, String>
431
430
return resolveVersion (VersionRangeResult ::getHighestVersion );
432
- // standard bindings
433
431
case "session" : // MavenSession
434
432
return getSession ();
435
433
case "container" : // PlexusContainer
You can’t perform that action at this time.
0 commit comments