简体   繁体   English

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

[英]how to add option for maven apt plugin?

as titled. 如标题所示。

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

I use this but print: 我用这个但是打印:

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

it is null ? 它为null吗?

what's the right format? 什么是正确的格式?

You should try: 你应该试试:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM