Skip to content

Commit

Permalink
chore(build): add JaCoCo and Spotless to plugin management
Browse files Browse the repository at this point in the history
  • Loading branch information
poikilotherm committed Oct 18, 2024
1 parent 84f084b commit 148e710
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@
<checkstyle-maven-plugin.version>3.5.0</checkstyle-maven-plugin.version>
<checkstyle.version>10.18.2</checkstyle.version>
<spotbugs-maven-plugin.version>4.8.6.4</spotbugs-maven-plugin.version>
<dependency-check-maven.version>8.4.3</dependency-check-maven.version>
<jacoco.version>0.8.12</jacoco.version>
<sonar.version>4.0.0.4121</sonar.version>
<spotless.version>2.43.0</spotless.version>
Expand Down Expand Up @@ -237,11 +236,21 @@
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${spotbugs-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
</plugin>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${sonar.version}</version>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -495,7 +504,6 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down

0 comments on commit 148e710

Please sign in to comment.