程序包org.junit不存在和编码GBK的不可映射字符问题解决

    maven项目在打包编译时提示:

  

解决办法:

    将pom中junit依赖中的scope给注释掉 

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <!-- 表示开发的时候引入,发布的时候不会加载此包
            <scope>test</scope>
         -->
</dependency>

 

posted on 2017-08-01 16:56  babyblue  阅读(348)  评论(0编辑  收藏  举报