如何为maven apt插件添加选项?

时间:2013-07-29 16:55:58

标签: java maven

标题为

<options>
    <option>field=D:\com.googlecode\target\generated-sources\apt</option>
</options>

我用它但打印:

-Afield=D:\com.googlecode\target\generated-sources\apt=null

null

什么是正确的格式?

1 个答案:

答案 0 :(得分:0)

你应该尝试:

<options>
    <field>D:\com.googlecode\target\generated-sources\apt</field> 
</options>