Skip to content

Commit 35b7d67

Browse files
authored
build(sdk-platform-java): Add formatter plugin to the root pom of sdk-platform-java. (#12739)
Running mvn fmt:format would result in errors in the root pom, because the [formatter plugin](https://github.com/googleapis/sdk-platform-java/blob/febe86f1ea4f0b5e6d8454024ed499adb7dc9328/pom.xml#L31-L34) was not migrated. Add formatter plugin to the root pom of sdk-platform-java to resolve the issue.
1 parent 48127bf commit 35b7d67

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

sdk-platform-java/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
<!-- Do not deploy the aggregator POM -->
3030
<build>
3131
<plugins>
32+
<plugin>
33+
<groupId>com.spotify.fmt</groupId>
34+
<artifactId>fmt-maven-plugin</artifactId>
35+
<configuration>
36+
<skip>true</skip>
37+
</configuration>
38+
</plugin>
3239
<plugin>
3340
<groupId>org.apache.maven.plugins</groupId>
3441
<artifactId>maven-deploy-plugin</artifactId>

0 commit comments

Comments
 (0)