如何让Maven发出像javac那样的编译错误?

时间:2014-11-29 01:03:57

标签: java maven

在Java中,如果我的源代码中有一个方法调用没有提供正确的参数类型,或者如果我尝试将一个类型的变量分配给另一个不兼容类型的值,那么这将引发编译错误,应该如此。但是,当使用Maven(mvn)时,编译错误将类似于(取自实际代码)

error: method put in interface Map<K,V> cannot be applied to given types;

完全停止。然而,当使用javac(javac)时,编译错误将类似于

error: method put in interface Map<K,V> cannot be applied to given types;

        elements.put(coords, val);}
                ^
  required: Integer[],T
  found: int[],T
  reason: actual argument int[] cannot be converted to Integer[] by method invocation conversion
  where T,K,V are type-variables:
    T extends Object declared in class Grid
    K extends Object declared in interface Map
    V extends Object declared in interface Map

我认为这会更有帮助。

如何让Maven发出像javac那样的编译错误?特别是,如何让它提供更多的上下文信息?

顺便说一下,-e和-X切换到mvn并没有解决这个问题。

1 个答案:

答案 0 :(得分:1)

您可能正在使用版本2.5.1或更少的Maven编译器插件。

如果您使用的是3.0版,则实际上会收到更详细的错误消息:

[ERROR] required: java.lang.String,java.lang.String
[ERROR] found: int,int
[ERROR] reason: actual argument int cannot be converted to java.lang.String by method    invocation conversion