You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flume.apache.org by mp...@apache.org on 2013/04/26 10:09:08 UTC

git commit: FLUME-2011. "mvn test" fails without package build

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 <mp...@apache.org>
Authored: Fri Apr 26 01:08:06 2013 -0700
Committer: Mike Percy <mp...@apache.org>
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>