Skip to content

Commit

Permalink
style: apply spotless on pom files
Browse files Browse the repository at this point in the history
It seems the release process changes these pom files, but in a way that
conflicts with spotless.

I've simply fixed this by running `mvn spotless:apply`.
  • Loading branch information
korthout committed Oct 13, 2022
1 parent de571dc commit 735ce42
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<artifactId>camunda-release-parent</artifactId>
<version>3.9.1</version>
<!-- do not remove empty tag - http://jira.codehaus.org/browse/MNG-4687 -->
<relativePath />
<relativePath></relativePath>
</parent>

<groupId>io.camunda</groupId>
Expand Down Expand Up @@ -128,7 +128,7 @@
<configuration>
<pom>
<!-- https://github.com/diffplug/spotless/blob/main/plugin-maven/README.md#sortpom -->
<sortPom />
<sortPom></sortPom>
</pom>
</configuration>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
<goal>assemble</goal>
</goals>
<phase>package</phase>
<configuration />
<configuration></configuration>
</execution>
</executions>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion gateway-protocol-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
<phase>generate-sources</phase>
<configuration>
<target>
<copy failonerror="true" file="${project.build.directory}/generated-sources/protobuf/go/gateway.pb.go" tofile="${maven.multiModuleProjectDirectory}/clients/go/pkg/pb/gateway.pb.go" />
<copy failonerror="true" file="${project.build.directory}/generated-sources/protobuf/go/gateway.pb.go" tofile="${maven.multiModuleProjectDirectory}/clients/go/pkg/pb/gateway.pb.go"></copy>
</target>
</configuration>
</execution>
Expand Down
8 changes: 4 additions & 4 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@
<goal>check</goal>
</goals>
<phase>validate</phase>
<configuration />
<configuration></configuration>
</execution>
</executions>
</plugin>
Expand Down Expand Up @@ -1364,7 +1364,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore />
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
Expand Down Expand Up @@ -1442,7 +1442,7 @@
</goals>
<configuration>
<rules>
<dependencyConvergence />
<dependencyConvergence></dependencyConvergence>
</rules>
</configuration>
</execution>
Expand All @@ -1453,7 +1453,7 @@
</goals>
<configuration>
<rules>
<banDuplicatePomDependencyVersions />
<banDuplicatePomDependencyVersions></banDuplicatePomDependencyVersions>
</rules>
</configuration>
</execution>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<exclude>**/target/**/*.md</exclude>
<exclude>clients/go/vendor/**/*.md</exclude>
</excludes>
<flexmark />
<flexmark></flexmark>
</markdown>
</configuration>
</plugin>
Expand Down

0 comments on commit 735ce42

Please sign in to comment.