Now I see this:
/**
* Directory where classes are stored in target.
* @checkstyle VisibilityModifierCheck (10 lines)
* @checkstyle MemberNameCheck (8 lines)
*/
@Parameter(
defaultValue = "${project.build.directory}/classes/org/eolang",
readonly = true,
required = true
)
protected File classesDir;
Should be just "${project.build.directory}/classes". Seems to be just a mistake during this ticket: #4538
Until it's fixed, this line is required in pom configuration: <classesDir>${project.build.directory}/classes</classesDir>
Now I see this:
Should be just
"${project.build.directory}/classes". Seems to be just a mistake during this ticket: #4538Until it's fixed, this line is required in pom configuration:
<classesDir>${project.build.directory}/classes</classesDir>