Skip to content

Instantly share code, notes, and snippets.

@jeszy75
Last active February 21, 2024 21:03
Show Gist options
  • Save jeszy75/30d1c088303462ef529650f828d598a7 to your computer and use it in GitHub Desktop.
Save jeszy75/30d1c088303462ef529650f828d598a7 to your computer and use it in GitHub Desktop.

Jelentéskészítés az Apache Mavennel

A pom.xml állományban helyezzük el az alábbi elemet a project/reporting/plugins elemben:

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>buildplan-maven-plugin</artifactId>
  <version>2.2.2</version>
</plugin>

A pom.xml állományban helyezzük el az alábbi elemet a project/reporting/plugins elemben:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-javadoc-plugin</artifactId>
  <version>3.6.3</version>
</plugin>

A pom.xml állományban helyezzük el az alábbi elemet a project/reporting/plugins elemben:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-dependency-plugin</artifactId>
  <version>3.6.1</version>
</plugin>

A pom.xml állományban helyezzük el az alábbi elemet a project/reporting/plugins elemben:

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>versions-maven-plugin</artifactId>
  <version>2.16.2</version>
  <reportSets>
    <reportSet>
      <reports>
        <report>dependency-updates-report</report>
      </reports>
    </reportSet>
  </reportSets>
</plugin>

A pom.xml állományban helyezzük el az alábbi elemet a project/reporting/plugins elemben:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-pmd-plugin</artifactId>
  <version>3.21.2</version>
</plugin>

A pom.xml állományban helyezzük el az alábbi elemet a project/reporting/plugins elemben:

<plugin>
  <groupId>com.github.spotbugs</groupId>
  <artifactId>spotbugs-maven-plugin</artifactId>
  <version>4.8.3.1</version>
</plugin>

A pom.xml állományban helyezzük el az alábbi elemet a project/reporting/plugins elemben:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-checkstyle-plugin</artifactId>
  <version>3.3.1</version>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment