aboutsummaryrefslogtreecommitdiff
path: root/repl
diff options
context:
space:
mode:
authorwitgo <witgo@qq.com>2014-05-31 14:36:27 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-06-01 11:17:51 -0700
commita54a48f83674bb3c6f9aca9f736448338b029dfd (patch)
treebcdeede915f0e0f772a6f5fbac29026b42b84945 /repl
parent3d79166d9fde654a94bdf887672f1af02d75cc25 (diff)
downloadspark-a54a48f83674bb3c6f9aca9f736448338b029dfd.tar.gz
spark-a54a48f83674bb3c6f9aca9f736448338b029dfd.tar.bz2
spark-a54a48f83674bb3c6f9aca9f736448338b029dfd.zip
Improve maven plugin configuration
Author: witgo <witgo@qq.com> Closes #786 from witgo/maven_plugin and squashes the following commits: 5de86a2 [witgo] Merge branch 'master' of https://github.com/apache/spark into maven_plugin c35ef73 [witgo] Improve maven plugin configuration Conflicts: pom.xml
Diffstat (limited to 'repl')
-rw-r--r--repl/pom.xml30
1 files changed, 0 insertions, 30 deletions
diff --git a/repl/pom.xml b/repl/pom.xml
index 4670e87e00..6b20aa1cd5 100644
--- a/repl/pom.xml
+++ b/repl/pom.xml
@@ -93,41 +93,11 @@
<testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase>test</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <exportAntProperties>true</exportAntProperties>
- <target>
- <property name="spark.classpath" refid="maven.test.classpath" />
- <property environment="env" />
- <fail message="Please set the SCALA_HOME (or SCALA_LIBRARY_PATH if scala is on the path) environment variables and retry.">
- <condition>
- <not>
- <or>
- <isset property="env.SCALA_HOME" />
- <isset property="env.SCALA_LIBRARY_PATH" />
- </or>
- </not>
- </condition>
- </fail>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<configuration>
<environmentVariables>
<SPARK_HOME>${basedir}/..</SPARK_HOME>
- <SPARK_TESTING>1</SPARK_TESTING>
</environmentVariables>
</configuration>
</plugin>