在maven构建中启用javac警告

时间:2015-03-18 15:43:43

标签: maven javac compiler-warnings

我希望在使用maven从命令行构建项目时看到java代码警告。

目前,当我使用eclipse时,IDE突出显示了对我的警告。所以当我使用maven构建项目时,我希望有这种行为。

提前致谢。涓

2 个答案:

答案 0 :(得分:2)

使用javac编译器无法实现类似IDE的警告级别,因此您必须使用非javac编译器。以下是POM片段:

<plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.1</version>
    <configuration>
        <compilerId>eclipse</compilerId>
        <source>1.7</source>
        <target>1.7</target>
        <optimize>true</optimize>
        <showWarnings>true</showWarnings>
        <showDeprecation>true</showDeprecation>
        <compilerArguments>
            <org.eclipse.jdt.core.compiler.problem.fatalOptionalError>disabled</org.eclipse.jdt.core.compiler.problem.fatalOptionalError>
            <org.eclipse.jdt.core.compiler.problem.forbiddenReference>ignore</org.eclipse.jdt.core.compiler.problem.forbiddenReference>
        </compilerArguments>
    </configuration>
    <dependencies>
        <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-compiler-eclipse</artifactId>
            <version>2.3</version>
        </dependency>
    </dependencies>
</plugin>

答案 1 :(得分:0)

您只需要在pom.xml中将<showWarnings>true</showWarnings>添加到maven编译器插件。

请查看maven编译器文档here