Repository: falcon Updated Branches: refs/heads/master dddf6c511 -> 78da26e27
FALCON-1855 Falcon regression build fails with checkstyle issues Falcon checkstyle is now moved to parent pom because of which regression is failing. Fixing the path Author: Murali Ramasami <[email protected]> Reviewers: "Pragya <[email protected]>, Praveen Adlakha <[email protected]>" Closes #84 from muraliramasami/FALCON-1855 Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/78da26e2 Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/78da26e2 Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/78da26e2 Branch: refs/heads/master Commit: 78da26e279cc94caa66e930029a5646b8b047436 Parents: dddf6c5 Author: Murali Ramasami <[email protected]> Authored: Wed Apr 6 14:09:15 2016 +0530 Committer: Pragya Mittal <[email protected]> Committed: Wed Apr 6 14:09:15 2016 +0530 ---------------------------------------------------------------------- falcon-regression/pom.xml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/78da26e2/falcon-regression/pom.xml ---------------------------------------------------------------------- diff --git a/falcon-regression/pom.xml b/falcon-regression/pom.xml index 28c7a11..bfd4193 100644 --- a/falcon-regression/pom.xml +++ b/falcon-regression/pom.xml @@ -433,13 +433,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> - <dependencies> - <dependency> - <groupId>org.apache.falcon</groupId> - <artifactId>checkstyle</artifactId> - <version>${project.version}</version> - </dependency> - </dependencies> <executions> <execution> <id>checkstyle-check</id> @@ -450,8 +443,8 @@ <configuration> <consoleOutput>true</consoleOutput> <includeTestSourceDirectory>true</includeTestSourceDirectory> - <configLocation>falcon/checkstyle.xml</configLocation> - <headerLocation>falcon/checkstyle-java-header.txt</headerLocation> + <configLocation>src/build/checkstyle.xml</configLocation> + <headerLocation>src/build/checkstyle-java-header.txt</headerLocation> <failOnViolation>true</failOnViolation> <skip>${skipCheck}</skip> <excludes>**/entity/v0/*/**</excludes>
