zoukankan      html  css  js  c++  java
  • LifecyclePhaseNotFoundException(转)

    This error is generated if you try to invoke a build command that Maven does not understand. In general, you have the following options to perform build steps:

    1. Invoke a lifecycle phase, e.g.
      mvn install
      
      This runs the lifecycle phase install and all its predecessor phases like compile and test. Please see Introduction to the Build Lifecycle for more information about available lifecycle phases.
    2. Invoke a plugin goal via the plugin prefix, e.g.
      mvn compiler:compile
      
      Eventually, the plugin prefix translates to a group id and artifact id of a plugin. Maven resolves plugin prefixes by first looking at the plugins of the current project's POM and next by checking the metadata of user-defined plugin groups.
    3. Invoke a plugin goal via the versionless plugin coordinates, e.g.
      mvn org.apache.maven.plugins:maven-compiler-plugin:compile
      
      To resolve the plugin version, Maven will first check the project's POM and fallback to the latest release version of the plugin that was deployed to the configured plugin repositories.
    4. Invoke a plugin goal via the fully qualified plugin coordinates, e.g.
      mvn org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile
      

    You can freely mix all of these styles within a single command line.

    The error described here is usually caused by typo in the command so be sure to check you specified a valid lifecycle phase.

    https://cwiki.apache.org/confluence/display/MAVEN/LifecyclePhaseNotFoundException

  • 相关阅读:
    缓存
    java内存模型—先行发生原则
    Java中的阻塞队列
    java的Map
    事务传播性、隔离性与MVCC
    final修饰符
    领域驱动设计和实践
    对象转换利器之Dozer
    SharePoint Iframe 报错“此内容不能显示在一个框架中”
    使用SVG symbols建立图标系统
  • 原文地址:https://www.cnblogs.com/softidea/p/4181613.html
Copyright © 2011-2022 走看看