Skip to content

Commit

Permalink
fix: checkstyle (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
lavkesh authored Jul 21, 2022
1 parent a56c106 commit e29ee24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build
run: ./gradlew build
run: ./gradlew build --stacktrace --no-daemon
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ test {
}
checkstyle {
toolVersion '7.6.1'
configFile file("config/checkstyle/checkstyle.xml")
configFile rootProject.file("config/checkstyle/checkstyle.xml")
}
checkstyleMain {
source = 'src/main/java'
Expand Down
2 changes: 1 addition & 1 deletion config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<property name="basedir" value="${basedir}"/>
-->
<module name="SuppressionFilter">
<property name="file" value="config/checkstyle/suppressions.xml"/>
<property name="file" value="${config_loc}/suppressions.xml"/>
<property name="optional" value="false"/>
</module>

Expand Down

0 comments on commit e29ee24

Please sign in to comment.