0 votes
in Maven - Coalescing Pipeline by
What are Maven plugins used for? What are the types of Maven plugins?

1 Answer

0 votes
by

Maven Plugins are used for:

  • Creating JAR files.
  • Creating WAR files.
  • Compiling the source code files.
  • Unit testing of the code.
  • Creating the project documentation.
  • Creating project reports.

Maven plugins are divided into two categories:

  • Build plugins:  These plugins are used throughout the build process and are configured in the pom.xml file's <build/> element.
  • Reporting plugins: These plugins are configured in the pom.xml's <reporting/> element and run during stage generation.

Related questions

0 votes
asked Apr 6, 2021 in Maven - Coalescing Pipeline by SakshiSharma
0 votes
asked Apr 6, 2021 in Maven - Coalescing Pipeline by SakshiSharma
...