Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Commit

Permalink
Fix: enable formatter for service SDK generated files
Browse files Browse the repository at this point in the history
Signed-off-by: Gloria Ciavarrini <gciavarrini@redhat.com>
  • Loading branch information
gciavarrini committed Apr 4, 2023
1 parent 359f431 commit fc891a3
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions workflow-service-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springframework.boot.version>2.5.14</springframework.boot.version>
<spring.javaformat.version>0.0.34</spring.javaformat.version>
<openapi.generator.version>5.4.0</openapi.generator.version>
<lombok.version>1.18.26</lombok.version>
</properties>
Expand All @@ -27,10 +28,15 @@
<plugin>
<groupId>io.spring.javaformat</groupId>
<artifactId>spring-javaformat-maven-plugin</artifactId>
<version>0.0.34</version>
<configuration>
<skip>true</skip>
</configuration>
<version>${spring.javaformat.version}</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>validate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
Expand Down

0 comments on commit fc891a3

Please sign in to comment.