-
Notifications
You must be signed in to change notification settings - Fork 0
/
.checkstyle
15 lines (14 loc) · 1.13 KB
/
.checkstyle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<fileset-config file-format-version="1.2.0" simple-config="false" sync-formatter="false">
<local-check-config name="maven-checkstyle-plugin checkstyle-validate" location="codecheck/checkstyle.xml" type="project" description="maven-checkstyle-plugin configuration checkstyle-validate">
<property name="checkstyle.cache.file" value="${project_loc}/target/checkstyle-cachefile"/>
<property name="config_loc" value="${project_loc}/codecheck"/>
<property name="checkstyle.header.file" value="${project_loc}/codecheck/header.txt"/>
</local-check-config>
<fileset name="java-sources-checkstyle-validate" enabled="true" check-config-name="maven-checkstyle-plugin checkstyle-validate" local="true">
<file-match-pattern match-pattern="src/test/java/.*\.java" include-pattern="true"/>
<file-match-pattern match-pattern="src/main/java/.*\.java" include-pattern="true"/>
<file-match-pattern match-pattern="src/main/resources/.*\.properties" include-pattern="true"/>
<file-match-pattern match-pattern="src/test/resources/.*\.properties" include-pattern="true"/>
</fileset>
</fileset-config>