Skip to content

Commit

Permalink
Add checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap committed Dec 15, 2023
1 parent e5d0006 commit 146a8b2
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
17 changes: 17 additions & 0 deletions jdi-light-mobile-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,23 @@
<artifactId>allure-maven</artifactId>
<version>${allure.maven}</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.2.1</version>
<configuration>
<configLocation>../config/checkstyle/checkstyle.xml</configLocation>
<propertyExpansion>samedir=${project.basedir}/../config/checkstyle</propertyExpansion>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>

<resources>
Expand Down
17 changes: 17 additions & 0 deletions jdi-light-mobile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,23 @@
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.2.1</version>
<configuration>
<configLocation>../config/checkstyle/checkstyle.xml</configLocation>
<propertyExpansion>samedir=${project.basedir}/../config/checkstyle</propertyExpansion>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 146a8b2

Please sign in to comment.