ArtifactTransferException: Failure to transfer xalan:xalan:jar:2.6.0 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact xalan:xalan:jar:2.6.0 from/to central (http://repo.maven.apache.org/maven2): No response received after 60000
解决方案在pom.xml文件<build>标签后面加上<defaultGoal>compile</defaultGoal>即可即
<build>
<finalName>alpha_mvn</finalName>
<defaultGoal>compile</defaultGoal>
</build>
可能是网络原因,造成下载中断的异常,配置好上面节点,重新下载(Maven install 或者 build)就行了。