Skip to content

[#323] exec arguments missing#324

Merged
bmarwell merged 1 commit into
masterfrom
#323_exec_arguments_missing
Jul 27, 2022
Merged

[#323] exec arguments missing#324
bmarwell merged 1 commit into
masterfrom
#323_exec_arguments_missing

Conversation

@bmarwell

@bmarwell bmarwell commented Jul 21, 2022

Copy link
Copy Markdown
Contributor

fixes #323

Can only reproduce in IT, not in unit test. Fix is WIP

@bmarwell

bmarwell commented Jul 21, 2022

Copy link
Copy Markdown
Contributor Author

proposed fix:

    private boolean isLongClassPathArgument( String arg )
    {
        return executable.endsWith("java") && longClasspath && ( "-classpath".equals( arg ) || "-cp".equals( arg ) );
    }

    private boolean isLongModulePathArgument( String arg )
    {
        return  executable.endsWith("java") &&  longModulepath && ( "--module-path".equals( arg ) || "-p".equals( arg ) );
    }

... and of course java.exe and java.bin, although everyone could rename or link their java. If anyone could come up with a better solution, PRs on this PR are welcome!

@bmarwell
bmarwell marked this pull request as ready for review July 22, 2022 05:58
Comment thread src/it/projects/mexec-323/pom.xml
Comment thread src/main/java/org/codehaus/mojo/exec/ExecMojo.java
@bmarwell
bmarwell marked this pull request as draft July 26, 2022 19:13
@bmarwell
bmarwell force-pushed the #323_exec_arguments_missing branch from 2a24599 to d054047 Compare July 26, 2022 19:19
@bmarwell
bmarwell marked this pull request as ready for review July 26, 2022 19:26
- added two ITs to check true/false behaviour of the new parameter.
- removed dead code
@bmarwell
bmarwell force-pushed the #323_exec_arguments_missing branch from d054047 to cbc7a7d Compare July 27, 2022 19:23
@bmarwell
bmarwell merged commit f534b7b into master Jul 27, 2022
@bmarwell
bmarwell deleted the #323_exec_arguments_missing branch July 27, 2022 19:23
dongjoon-hyun pushed a commit to apache/spark that referenced this pull request Apr 16, 2024
### What changes were proposed in this pull request?

### Why are the changes needed?
- `exec-maven-plugin` from `3.1.0` to `3.2.0`
https://github.com/mojohaus/exec-maven-plugin/releases/tag/3.2.0
https://github.com/mojohaus/exec-maven-plugin/releases/tag/3.1.1
Bug Fixes:
1.Fix mojohaus/exec-maven-plugin#158 - Fix non ascii character handling (mojohaus/exec-maven-plugin#372)
2.[mojohaus/exec-maven-plugin#323] exec arguments missing (mojohaus/exec-maven-plugin#324)

- `build-helper-maven-plugin` from `3.4.0` to `3.5.0`
https://github.com/mojohaus/build-helper-maven-plugin/releases/tag/3.5.0

- `maven-compiler-plugin` from `3.12.1` to `3.13.0`
https://github.com/apache/maven-compiler-plugin/releases/tag/maven-compiler-plugin-3.13.0

- `maven-jar-plugin` from `3.3.0` to `3.4.0`
https://github.com/apache/maven-jar-plugin/releases/tag/maven-jar-plugin-3.4.0
[[MJAR-62]](https://issues.apache.org/jira/browse/MJAR-62) - Set Build-Jdk according to used toolchain (apache/maven-jar-plugin#73)

- `maven-source-plugin` from `3.3.0` to `3.3.1`
https://github.com/apache/maven-source-plugin/releases/tag/maven-source-plugin-3.3.1

- `maven-assembly-plugin` from `3.6.0` to `3.7.1`
https://github.com/apache/maven-assembly-plugin/releases/tag/maven-assembly-plugin-3.7.1
https://github.com/apache/maven-assembly-plugin/releases/tag/maven-assembly-plugin-3.7.0
Bug Fixes:
1.[[MASSEMBLY-967](https://issues.apache.org/jira/browse/MASSEMBLY-967)] - maven-assembly-plugin doesn't add target/class artifacts in generated jarfat but META-INF/MANIFEST.MF seems to be correct
2.[[MASSEMBLY-994](https://issues.apache.org/jira/browse/MASSEMBLY-994)] - Items from unpacked dependency are not refreshed
3.[[MASSEMBLY-998](https://issues.apache.org/jira/browse/MASSEMBLY-998)] - Transitive dependencies are not properly excluded as of 3.1.1
4.[[MASSEMBLY-1008](https://issues.apache.org/jira/browse/MASSEMBLY-1008)] - Assembly plugin handles scopes wrongly
5.[[MASSEMBLY-1020](https://issues.apache.org/jira/browse/MASSEMBLY-1020)] - Cannot invoke "java.io.File.isFile()" because "this.inputFile" is null
6.[[MASSEMBLY-1021](https://issues.apache.org/jira/browse/MASSEMBLY-1021)] - Nullpointer in assembly:single when upgrading to 3.7.0
7.[[MASSEMBLY-1022](https://issues.apache.org/jira/browse/MASSEMBLY-1022)] - Unresolved artifacts should be not processed

- `cyclonedx-maven-plugin` from `2.7.9` to `2.8.0`
https://github.com/CycloneDX/cyclonedx-maven-plugin/releases/tag/cyclonedx-maven-plugin-2.8.0
https://github.com/CycloneDX/cyclonedx-maven-plugin/releases/tag/cyclonedx-maven-plugin-2.7.11
https://github.com/CycloneDX/cyclonedx-maven-plugin/releases/tag/cyclonedx-maven-plugin-2.7.10
Bug Fixes:
1.check if configured schemaVersion is supported (CycloneDX/cyclonedx-maven-plugin#479)
2.ignore bomGenerator.generate() call (CycloneDX/cyclonedx-maven-plugin#376)

### Does this PR introduce _any_ user-facing change?
No.

### How was this patch tested?
Pass GA.

### Was this patch authored or co-authored using generative AI tooling?
No.

Closes #46043 from panbingkun/update_maven_plugins.

Authored-by: panbingkun <panbingkun@baidu.com>
Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Can't exec mkdir -p target/directory in 3.1.0

2 participants