我正在尝试执行Maven项目的单元测试。该文档说可以通过以下命令执行测试:
mvn clean install
-Dmaven.test.failure.ignore=false
-DgsExec=$(which gs)
-DcompareExec=$(which compare)
-Dmaven.javadoc.failOnError=false
将项目导入Eclipse Oxygen之后,我尝试使用JUnit执行测试。但是,我收到以下错误消息:
com.itextpdf.kernel.utils.CompareTool$CompareToolExecutionException:
Path to GhostScript is not specified.
Please use -DgsExec=<path_to_ghostscript> (e.g. -DgsExec="C:/Program Files/gs/gs9.14/bin/gswin32c.exe")
如果可能,如何将-D
maven参数传递给JUnit?
谢谢。