Updated Branches: refs/heads/trunk 609a190e3 -> ea87b1192
FLUME-2011. "mvn test" fails without package build (Thiruvalluvan M. G. via Mike Percy) Project: http://git-wip-us.apache.org/repos/asf/flume/repo Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/ea87b119 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/ea87b119 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/ea87b119 Branch: refs/heads/trunk Commit: ea87b1192a839cd376075eba351da7514cb66952 Parents: 609a190 Author: Mike Percy <[email protected]> Authored: Fri Apr 26 01:08:06 2013 -0700 Committer: Mike Percy <[email protected]> Committed: Fri Apr 26 01:08:06 2013 -0700 ---------------------------------------------------------------------- flume-ng-tests/pom.xml | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flume/blob/ea87b119/flume-ng-tests/pom.xml ---------------------------------------------------------------------- diff --git a/flume-ng-tests/pom.xml b/flume-ng-tests/pom.xml index f839053..b9c7cfa 100644 --- a/flume-ng-tests/pom.xml +++ b/flume-ng-tests/pom.xml @@ -65,4 +65,23 @@ <artifactId>guava</artifactId> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.14.1</version> + <executions> + <execution> + <id>default-test</id> + <phase>package</phase> + <goals> + <goal>test</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </project>
