Updated Branches: refs/heads/flume-1.4 c146e5106 -> bcec83e90
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/bcec83e9 Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/bcec83e9 Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/bcec83e9 Branch: refs/heads/flume-1.4 Commit: bcec83e90121738d3aa489f0569a1a67b05bea3f Parents: c146e51 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:57 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/bcec83e9/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>
