Skip to content

Commit

Permalink
Add spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Dec 12, 2023
1 parent 8760abb commit d2e9cdc
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<properties>
<!-- Define Maven and JDK versions-->
<mavenVersion>3.5.4</mavenVersion>
<mojo.java.target>1.8</mojo.java.target>
<mojo.java.target>8</mojo.java.target>

<!-- Plexus component versions -->
<plexus-compiler-api.version>2.14.0</plexus-compiler-api.version>
Expand Down Expand Up @@ -502,5 +502,20 @@
</plugins>
</reporting>
</profile>
<profile>
<id>java11+</id>
<activation>
<jdk>[11,)</jdk>
</activation>

<build>
<plugins>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit d2e9cdc

Please sign in to comment.