Code in section "Configuration in Maven" (user guide) should be copy-pastable (original) (raw)
The above-mentioned section contains the required dependencies in the format
com.soebes.itf.jupiter.extension itf-jupiter-extension ${project.version} testBut what if a user has a project with <version>0.1.0</version>? He would get the oldest available release and Maven wouldn't complain.
Three paragraphs later is a hint
The given
${project.version}has to be replaced with the current version of the project which is currently: 0.6.0-SNAPSHOT.
Instead, the snippet should directly contain the latest release version.
And of course, 0.6.0-SNAPSHOT is not available in Maven Central, so this advice is a bit misleading. 😉