documentation home

FAQ  No errors are given and no documentation is generated


Problem

Miredot seems to run fine (no errors are printed) but the target/miredot folder does not exist or is empty.

Solution

  1. Make sure your java classes are not in the default package.

  2. Check whether you've overridden the default output location of Miredot. If so, the output is written to that location and not to the default target/miredot folder.

  3. If you are using Maven, set the jvm file encoding to UTF-8. You can do this as follows (on the command line):

    Windows : set MAVEN_OPTS=%MAVEN_OPTS% -Dfile.encoding="UTF-8"
    Linux/Mac : export MAVEN_OPTS="$MAVEN_OPTS -Dfile.encoding="UTF-8""