The official page(https://www.ninjaframework.org/documentation/modules.html) mentions Mustache template engine and its referenced page(https://github.com/kpacha/ninja-mustache) seems to say that Mustache template engine can be used. Is it true?
We added the following dependency to our pom.xml, but the Eclipse reported an error at the first line of this dependency in the pom.xml and we couldn't build our Ninja Web application.
<dependency>
<groupId>org.ninjaframework</groupId>
<artifactId>ninja-mustache-module</artifactId>
<version>0.1.1</version>
</dependency>
If possible, what should we do to avoid the error and to use Mustache template engine instead of FreeMarker?