sdaschner / jaxrs-analyzer

Creates REST documentation for JAX-RS projects
Apache License 2.0
319 stars 101 forks source link

Javadoc analysis fails on Windows #100

Closed vboerchers closed 7 years ago

vboerchers commented 7 years ago

JavaDoc analysis doesn't work on Windows due to a bug in the handling of paths: On Windows path components regularly contain colons like in C:\some\path. This clashes with the unconditional use of ":" as a path separator in the JavaDoc invocation since the resulting argument for -classpath is something like this: C:\some\path:C:\some\other\path

All places where a fixed path separator of ":" is assumed have to be replaced by File.pathSeparator for Windows compatibilty.

sdaschner commented 7 years ago

Oh yes, you're right -- I always tend forget those Windows guys as Unix fanboy :-)

thanks!