如何使用黄瓜测试创建可执行 jar 文件?

我的服务通过 gradle 创建一个可执行的 jar.当我创建并运行我的 jar (java -jar file.jar) 我收到错误:

My service create an executable jar by gradle. When i create and run my jar (java -jar file.jar) i recive error:

no main manifest attribute, in "file.jar"

因为我没有 main_class.

because i don't have main_class.

我创建了 main 方法:

I created main method:

public static void main(final String[] args) throws Throwable {
String[] arguments = {"--plugin", "html:build/reports/cucumber", "src/test/resources/features", "--glue", "src/test/java/steps"};
cucumber.api.cli.Main.main(arguments);

}

而我的程序找到了功能但没有找到胶水代码.

and My program founds the features but doesn't found glue code.

有人可以帮我解决这个问题吗?提前谢谢你.

Could someone help me with this problem? Thank you in advance.

推荐答案

glue 选项的值应该是 java 类路径.并且功能文件应该是最后一个选项.

The value for the glue option should be a java classpath. And the feature files should be the last option.

{"--plugin", "html:build/reports/cucumber", "--glue", "steps", "src/test/resources/features"}

相关文章