Add Checkstyle and Prettier to BFF #65
20
bff/pom.xml
20
bff/pom.xml
@ -78,6 +78,14 @@
|
|||||||
<failsOnError>true</failsOnError>
|
<failsOnError>true</failsOnError>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.hubspot.maven.plugins</groupId>
|
||||||
|
<artifactId>prettier-maven-plugin</artifactId>
|
||||||
|
<version>0.22</version>
|
||||||
|
<configuration>
|
||||||
|
<prettierJavaVersion>2.8.1</prettierJavaVersion>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
@ -94,6 +102,18 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.hubspot.maven.plugins</groupId>
|
||||||
|
<artifactId>prettier-maven-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>validate</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>check</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user