I create a simple project where I want to create windows image. I have a maven project with maven-jlink-plugin. I am using Netbeans and Widows 10. When I create the image it looks like fine but I do not see the .bath file.
<artifactId>maven-jlink-plugin</artifactId>
<version>3.1.0</version>
<extensions>true</extensions>
<configuration>
<strinpDebug>true</strinpDebug>
<noHeaderFiles>true</noHeaderFiles>
<jlinkImageName>hello</jlinkImageName>
<mainClass>com.todlist.testingapp.HelloWorld</mainClass>
<noManPages>true</noManPages>
</configuration>
can someone know which is the error or what I need to fix/change?