Repository: commons-lang Updated Branches: refs/heads/master fdf05fa29 -> ff4967536
make checkstyle config more portable (no maven coupling) Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/67830fe2 Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/67830fe2 Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/67830fe2 Branch: refs/heads/master Commit: 67830fe24964b0164d0212cbb4f018f15608ff37 Parents: cc94767 Author: Oliver Siegmar <[email protected]> Authored: Fri Sep 8 10:39:40 2017 +0200 Committer: Oliver Siegmar <[email protected]> Committed: Sat Sep 9 08:51:49 2017 +0200 ---------------------------------------------------------------------- checkstyle.xml | 3 +++ pom.xml | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/67830fe2/checkstyle.xml ---------------------------------------------------------------------- diff --git a/checkstyle.xml b/checkstyle.xml index d912028..9ba1bcc 100644 --- a/checkstyle.xml +++ b/checkstyle.xml @@ -35,6 +35,9 @@ limitations under the License. <property name="format" value="\s+$"/> <property name="message" value="Line has trailing spaces."/> </module> + <module name="SuppressionFilter"> + <property name="file" value="checkstyle-suppressions.xml"/> + </module> <module name="TreeWalker"> <property name="cacheFile" value="target/cachefile"/> <module name="AvoidStarImport"/> http://git-wip-us.apache.org/repos/asf/commons-lang/blob/67830fe2/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index be88716..4192112 100644 --- a/pom.xml +++ b/pom.xml @@ -684,7 +684,6 @@ <version>${checkstyle.plugin.version}</version> <configuration> <configLocation>${basedir}/checkstyle.xml</configLocation> - <suppressionsLocation>${basedir}/checkstyle-suppressions.xml</suppressionsLocation> <includeTestSourceDirectory>true</includeTestSourceDirectory> <enableRulesSummary>false</enableRulesSummary> </configuration> @@ -709,7 +708,6 @@ <version>${checkstyle.plugin.version}</version> <configuration> <configLocation>${basedir}/checkstyle.xml</configLocation> - <suppressionsLocation>${basedir}/checkstyle-suppressions.xml</suppressionsLocation> <includeTestSourceDirectory>true</includeTestSourceDirectory> <enableRulesSummary>false</enableRulesSummary> </configuration>
