在"运行配置"的目标中发表评论Eclipse中的向导。

时间:2015-11-16 07:32:15

标签: java eclipse maven

我正在使用Eclipse,Maven编写Java项目。

在"运行配置" Eclipse的向导我正在运行以下目标

-e clean install 
-e clean compile 
-e clean -Dtest=MyJUnitTest test 

由于我经常运行这些配置,而不是三种配置,我认为能够编写一个配置会更方便。

-e clean compile // -Dtest=MyJUnitTest test 

使用//,我希望告诉Maven不要执行//之后写的任何内容。但是,这似乎不起作用,Maven抱怨//。是否有任何其他分隔符用于在Maven中注释?是否有在命令提示符处注释部分maven命令的功能?

1 个答案:

答案 0 :(得分:0)

尝试这样的事情:

//We define the text variable that needs to be cleansed of line breaks.
Var someText = "Here's some text.\n It has some line breaks that will be removed \r using Javascript.\r\n";

//This javascript code removes all 3 types of line breaks
someText = someText.replace(/(\r\n|\n|\r)/gm,"");