Thu, 1 Jun 2023 18:49:59 +0300, /Stanimir Stamenkov/:
Thu, 1 Jun 2023 13:07:01 +0000, /Geoffry Roberts/:

[ERROR] Internal error: java.nio.file.InvalidPathException: Illegal char <:> at index 3: jar:file:\C:\Program%20Files\apache-maven-3.9.2\lib\maven-core-3.9.2.jar!\org\apache\maven\project -> [Help 1]

I see the error has to do with a ":".  "Index 3" implies 0=j 1=a 2=r 3=:

java.nio.file.InvalidPathException suggests it happens while processing the path part of the jar:file: URL, that is:

\C:\Program%20Files\...

I guess it complains about "\C:".

Nope, you appear correct it is about the "jar:" part:

    Paths.get("\\C:\\Program%20Files");

java.nio.file.InvalidPathException: Illegal char <:> at index 2: \C:\Program%20Files

while:

    Paths.get("jar:file:\\C:\\Program%20Files");

    Illegal char <:> at index 3: jar:file:\C:\Program%20Files

--
Stanimir

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to