maven项目打包遇到问题:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project icop: Compilation failure: Compilation failure:
[ERROR] /E:/Xunlan/workspace/eclipse/icop/src/main/java/cn/niucp/common/web/SessionUtils.java:[58,30] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] /E:/Xunlan/workspace/eclipse/icop/src/main/java/cn/niucp/inspection/interceptor/AuthenticationInterceptor.java:[94,57] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] /src/main/java/cn/niucp/operate/entity/Menu.java:[181,74] -source 1.5 中不支持方法引用
[ERROR] (请使用 -source 8 或更高版本以启用方法引用)
[ERROR] /src/main/java/cn/niucp/inspection/service/InspectorServiceImpl.java:[23,77] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] /src/main/java/cn/niucp/operate/controller/DictController.java:[47,61] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] /src/main/java/cn/niucp/client/controller/RecommendController.java:[71,50] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] /main/java/cn/niucp/operate/interceptor/LogInterceptor.java:[34,34] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] /src/main/java/cn/niucp/common/interceptor/PaginationInterceptor.java:[47,42] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] /src/main/java/cn/niucp/common/base/Page.java:[168,53] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] /src/main/java/cn/niucp/common/base/AbstractBaseBean.java:[83,29] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] /src/main/java/cn/niucp/inspection/entity/PageResultModel.java:[10,49] -source 1.5 中不支持 diamond 运算符
[ERROR] (请使用 -source 7 或更高版本以启用 diamond 运算符)
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
问题解决:
pom.xml中添加
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<testFailureIgnore>true</testFailureIgnore>
<webResources>
<resource>
<!-- this is relative to the pom.xml directory -->
<directory>WebContent</directory>
</resource>
</webResources>
</configuration>
</plugin>
maven的conf文件的settings.xml文件中profiles标签也清空了,不知管不管用,流此备注!