maven 一般性操作

 

IDEA maven 编译 出错 具体 显示

Exception in thread "main" java.lang.AssertionError

解决办法:

错误原因是maven编译插件的Bug,需要添加下面选项。

<forceJavacCompilerUse>true</forceJavacCompilerUse>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.3</version>
    <configuration>
        <source>${project.build.java.version}</source>
        <target>${project.build.java.version}</target>
        <!-- "Since 3.0, the default compiler is javax.tools.JavaCompiler -->
        <!-- (if you are using java 1.6) and is used to compile Java sources. -->
        <!-- If you want to force the plugin using javac, you must configure -->
        <!-- the plugin option forceJavacCompilerUse." -->
        <!-- ElPaaso compilation failed if set to false with multitrhead -->
        <!-- compilation enabled (-T3). -->
        <!-- Try to disable it after switching to jdk 1.7 -->
        <forceJavacCompilerUse>true</forceJavacCompilerUse>
        <!-- workaround maven compiler 3.1 bug which incorrectly recompiles some resources that have not changed See https://jira.codehaus.org/browse/MCOMPILER-209
            and http://stackoverflow.com/questions/17944108/maven-compiler-plugin-always-detecting-a-set-of-sources-as-stale -->
        <useIncrementalCompilation>false</useIncrementalCompilation>
    </configuration>
</plugin>

打印出所有引用

mvn dependency:tree 显示出所有的

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值