Updated Branches: refs/heads/master 0b8f6fdf2 -> 2aa4877c1
BIGTOP-1059: Add path option for pig.jar to pig smoke pom.xml (Jay Vyas via mark) Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/2aa4877c Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/2aa4877c Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/2aa4877c Branch: refs/heads/master Commit: 2aa4877c1e1cd9dd177352ff0c99f106066f7b57 Parents: 0b8f6fd Author: Mark Grover <[email protected]> Authored: Wed Sep 4 14:24:08 2013 -0700 Committer: Mark Grover <[email protected]> Committed: Wed Sep 4 14:24:08 2013 -0700 ---------------------------------------------------------------------- bigtop-tests/test-execution/smokes/pig/pom.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/2aa4877c/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 5e56c0c..565cc7f 100644 --- a/bigtop-tests/test-execution/smokes/pig/pom.xml +++ b/bigtop-tests/test-execution/smokes/pig/pom.xml @@ -35,7 +35,8 @@ <properties> <org.codehaus.groovy.maven.jar>${project.build.directory}/pigsmoke-${pig-smoke.version}.jar</org.codehaus.groovy.maven.jar> - + <!-- Override this with path to your pig install path --> + <pigjar>/usr/lib/pig/pig.jar</pigjar> <org.apache.maven-dependency-plugin.groupId>org.apache.pig</org.apache.maven-dependency-plugin.groupId> <org.apache.maven-dependency-plugin.artifactId>pigsmoke</org.apache.maven-dependency-plugin.artifactId> <org.apache.maven-dependency-plugin.version>${pig-smoke.version}</org.apache.maven-dependency-plugin.version> @@ -45,6 +46,7 @@ </properties> <dependencies> + <!-- This smoke is implemented by the externally curated org.apache.pig pigsmoke project --> <dependency> <groupId>org.apache.pig</groupId> <artifactId>pigsmoke</artifactId> @@ -78,7 +80,7 @@ </execution> </executions> <configuration> - <file>/usr/lib/pig/pig.jar</file> + <file>${pigjar}</file> <groupId>org.apache.pig</groupId> <artifactId>pig</artifactId> <version>${pig.version}</version> @@ -101,6 +103,8 @@ </configuration> </plugin> + + </plugins> </build> </project>
