Skip to content

Commit

Permalink
Re-enable spotless (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
cswhite2000 authored Nov 22, 2024
1 parent 1231cfa commit dd90576
Showing 1 changed file with 23 additions and 24 deletions.
47 changes: 23 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,30 +141,29 @@
</plugin>

<!-- Validates that code is properly formatted with Google's code style -->
<!-- Disable spotless until the next PR-->
<!-- <plugin>-->
<!-- <groupId>com.diffplug.spotless</groupId>-->
<!-- <artifactId>spotless-maven-plugin</artifactId>-->
<!-- <version>2.43.0</version>-->
<!-- <configuration>-->
<!-- <ratchetFrom>origin/dev</ratchetFrom>-->
<!-- <java>-->
<!-- <removeUnusedImports/>-->
<!-- <palantirJavaFormat>-->
<!-- <version>2.47.0</version>-->
<!-- <style>GOOGLE</style>-->
<!-- <formatJavadoc>true</formatJavadoc>-->
<!-- </palantirJavaFormat>-->
<!-- </java>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <goals>-->
<!-- <goal>check</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>2.43.0</version>
<configuration>
<ratchetFrom>origin/dev</ratchetFrom>
<java>
<removeUnusedImports/>
<palantirJavaFormat>
<version>2.47.0</version>
<style>GOOGLE</style>
<formatJavadoc>true</formatJavadoc>
</palantirJavaFormat>
</java>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>

<!-- Allows for building of java docs, although not used yet -->
<plugin>
Expand Down

0 comments on commit dd90576

Please sign in to comment.