plexus-utils
plexus-utils copied to clipboard
Plexus Utils
This PR is an update of old previous staling PR #42 ---- cf. #17 (comments from May 2018): Revert the usage of `cmd.exe` by default (on Windows), because prevents the...
Hi all, We have prepared the [initial integration](https://github.com/CodeIntelligenceTesting/oss-fuzz/tree/plexus-utils/projects/plexus-utils) of plexus-utils into [Google OSS-Fuzz](https://github.com/google/oss-fuzz) which will provide more security for your project. **Why do you need Fuzzing?** The Code Intelligence JVM...
See https://github.com/codehaus-plexus/plexus-utils/issues/47
This method worked in 3.1.0 and fails in 3.3.0 as I found by trying to upgrade maven-release from 3.10 to 3.3.0 This bug is shared (likely because of code copied...
https://github.com/tbroyer/gwt-maven-plugin/issues/110#issuecomment-459321841 I played around with plexus-utils to find out why my own test case works, but plexus-utils doesn't. Answer: it seems to be related to the stream pumpers/feeders. When I...
in a parallel multi-module maven build, running copy-dependencies with a shared output directory... more than one module may attempt to copy the file at once. The length check can then...
This was found during SCM-763. Consider your want to pass a password (on Windows) with asterisk: `S8p3r*S3cr3t`. The escaped outcome is `S8p3r*S3cr3t`. No change, but to pass an asterisk you...
Seems like CommandLine on Windows always use cmd.exe, even on Windows 10 platforms. However, on these platforms, PowerShell provides longer command(line, which is very useful for projects running java commands...
FileUtils.copyFile was changed to use the NIO Files.copy call a while back. Files.copy is invoked with the COPY_ATTRIBUTES and REPLACE_EXISTING attributes (which makes sense). However, on Windows, COPY_ATTRIBUTES preserves the...
This was found during SCM-763. Consider your want to pass a password (on Windows) with double quote: `S8p3r"S3cr3t`. The escaped outcome is `S8p3r"S3cr3t`. No change, but to pass a double...