how to create executable jar file with cucumber tests?(如何使用黄瓜测试创建可执行 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"}
这篇关于如何使用黄瓜测试创建可执行 jar 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用黄瓜测试创建可执行 jar 文件?
基础教程推荐
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
