banner
Tenifs

Tenifs

雄关漫道真如铁,而今迈步从头越。
github
follow
zhihu
email

Maven Lifecycle

Maven has the following three standard lifecycles:

  1. Clean Lifecycle
  • clean: Deletes the compiled output files in the target directory. This is usually done before building to ensure the project starts from a clean state.
  1. Default Lifecycle (also known as Build Lifecycle)
  • validate: Validates the project's correctness
  • compile: Compiles the project's source code
  • test: Runs the project's unit tests
  • package: Packages the compiled code into a distributable format
  • verify: Performs additional checks on the project to ensure quality
  • install: Installs the project's build result into the local Maven repository for use by other projects
  • deploy: Publishes the project's build result to a remote repository for use by other developers or teams
  1. Site Lifecycle
  • site: Generates project documentation and site information
  • deploy-site: Publishes the generated site information to a remote server for sharing project documentation
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.