Updated Branches: refs/heads/master 2b16e48bb -> 6a130ef6e
BIGTOP-889. pig smoke tests are no longer running Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/6a130ef6 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/6a130ef6 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/6a130ef6 Branch: refs/heads/master Commit: 6a130ef6e43947c725f80bae3ff3d16f64cbc49e Parents: 2b16e48 Author: Konstantin Boudnik <Konstantin Boudnik [email protected]> Authored: Thu Mar 28 10:21:26 2013 -0700 Committer: Konstantin Boudnik <Konstantin Boudnik [email protected]> Committed: Thu Mar 28 10:21:26 2013 -0700 ---------------------------------------------------------------------- bigtop-tests/test-execution/smokes/pig/pom.xml | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/6a130ef6/bigtop-tests/test-execution/smokes/pig/pom.xml ---------------------------------------------------------------------- diff --git a/bigtop-tests/test-execution/smokes/pig/pom.xml b/bigtop-tests/test-execution/smokes/pig/pom.xml index 66522c3..4c7938c 100644 --- a/bigtop-tests/test-execution/smokes/pig/pom.xml +++ b/bigtop-tests/test-execution/smokes/pig/pom.xml @@ -42,6 +42,8 @@ <org.apache.maven-dependency-plugin.output>${project.build.directory}</org.apache.maven-dependency-plugin.output> <org.apache.maven-dependency-plugin.pattern>test/data/**/*</org.apache.maven-dependency-plugin.pattern> <org.apache.maven-dependency-plugin.type>jar</org.apache.maven-dependency-plugin.type> + + <antlr.version>3.4</antlr.version> </properties> <dependencies> @@ -57,6 +59,20 @@ <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-hdfs</artifactId> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-mapreduce-client-core</artifactId> + <version>${hadoop.version}</version> + </dependency> + <dependency> + <groupId>org.antlr</groupId> + <artifactId>antlr</artifactId> + <version>${antlr.version}</version> + </dependency> </dependencies> <build> @@ -102,7 +118,7 @@ if (!System.getProperties().keySet().contains('enforcer.skip')) { project.properties['lzo.jar'] = org.apache.bigtop.itest.JarContent.getJarName( - "${HADOOP_HOME}/lib", 'hadoop.*lzo.*.jar'); + "${HADOOP_HOME}/lib", '.*hadoop.*lzo.*.jar'); if ( project.properties['lzo.jar'] == null ) { throw new IOException ("hadoop-lzo.jar isn't found"); }
