标签: java maven jenkins jenkins-plugins
我在Jenkins Maven Job中有clean integration-test -DclassId=app作为maven的目标。
clean integration-test -DclassId=app
如何使用System.getenv();在Java中检索此内容?当我这样做时,我只看到空。
System.getenv();
答案 0 :(得分:1)
对于命令行选项,您必须使用System.getProperty()而不是System.getenv():
System.getProperty()
System.getenv()
String id = System.getProperty("classId");
查找更多详情here。