如果我想使用命令“maven clean install”构建我的 maven 项目,我会收到一个模糊的错误消息:
Internal error in the plugin manager executing goal 'com.samaxes.maven:minify-maven-plugin:1.7:minify': Unable to find the mojo 'minify' (or one of its required components) in the plugin 'com.samaxes.maven:minify-maven-plugin'
com/samaxes/maven/minify/plugin/MinifyMojo : Unsupported major.minor version 51.0**
有人知道吗,我该如何解决这个问题?
//EDIT 是否可以在不将当前 JDK 6 更改为 JDK 7 的情况下解决此问题?
//再次编辑
好的,我可以构建我的 Maven 项目。我已经完成了以下步骤,但我不确定这是否是一种好的解决方法:
<plugin>
<groupId>com.samaxes.maven</groupId>
<artifactId>minify-maven-plugin</artifactId>
<version>1.6</version>
</plugin>
我已将版本从 1.7 更改为 1.6,现在我可以构建 maven 项目。但这真的是最好的解决方案吗?