Github user ssuchter commented on a diff in the pull request:

    https://github.com/apache/spark/pull/20697#discussion_r191485369
  
    --- Diff: resource-managers/kubernetes/integration-tests/pom.xml ---
    @@ -0,0 +1,230 @@
    +<?xml version="1.0" encoding="UTF-8"?>
    +<!--
    +  ~ Licensed to the Apache Software Foundation (ASF) under one or more
    +  ~ contributor license agreements.  See the NOTICE file distributed with
    +  ~ this work for additional information regarding copyright ownership.
    +  ~ The ASF licenses this file to You under the Apache License, Version 2.0
    +  ~ (the "License"); you may not use this file except in compliance with
    +  ~ the License.  You may obtain a copy of the License at
    +  ~
    +  ~    http://www.apache.org/licenses/LICENSE-2.0
    +  ~
    +  ~ Unless required by applicable law or agreed to in writing, software
    +  ~ distributed under the License is distributed on an "AS IS" BASIS,
    +  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 
implied.
    +  ~ See the License for the specific language governing permissions and
    +  ~ limitations under the License.
    +  -->
    +<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
    +  <modelVersion>4.0.0</modelVersion>
    +  <parent>
    +    <groupId>org.apache.spark</groupId>
    +    <artifactId>spark-parent_2.11</artifactId>
    +    <version>2.4.0-SNAPSHOT</version>
    +    <relativePath>../../../pom.xml</relativePath>
    +  </parent>
    +
    +  <artifactId>spark-kubernetes-integration-tests_2.11</artifactId>
    +  <groupId>spark-kubernetes-integration-tests</groupId>
    +  <properties>
    +    <maven.version>3.3.9</maven.version>
    +    <commons-lang3.version>3.5</commons-lang3.version>
    +    <commons-logging.version>1.1.1</commons-logging.version>
    +    <docker-client.version>5.0.2</docker-client.version>
    +    <download-maven-plugin.version>1.3.0</download-maven-plugin.version>
    +    <exec-maven-plugin.version>1.4.0</exec-maven-plugin.version>
    +    <extraScalaTestArgs></extraScalaTestArgs>
    +    <guava.version>18.0</guava.version>
    +    <jsr305.version>1.3.9</jsr305.version>
    +    <kubernetes-client.version>3.0.0</kubernetes-client.version>
    +    <log4j.version>1.2.17</log4j.version>
    +    <scala.version>2.11.8</scala.version>
    +    <scala.binary.version>2.11</scala.binary.version>
    +    <scala-maven-plugin.version>3.2.2</scala-maven-plugin.version>
    +    <scalatest.version>2.2.6</scalatest.version>
    +    <scalatest-maven-plugin.version>1.0</scalatest-maven-plugin.version>
    +    <slf4j-log4j12.version>1.7.24</slf4j-log4j12.version>
    +    <sbt.project.name>kubernetes-integration-tests</sbt.project.name>
    +    
<spark.kubernetes.test.unpackSparkDir>${project.build.directory}/spark-dist-unpacked</spark.kubernetes.test.unpackSparkDir>
    +    <spark.kubernetes.test.imageTag>N/A</spark.kubernetes.test.imageTag>
    +    
<spark.kubernetes.test.imageTagFile>${project.build.directory}/imageTag.txt</spark.kubernetes.test.imageTagFile>
    +    
<spark.kubernetes.test.deployMode>minikube</spark.kubernetes.test.deployMode>
    +    
<spark.kubernetes.test.imageRepo>docker.io/kubespark</spark.kubernetes.test.imageRepo>
    +    <test.exclude.tags></test.exclude.tags>
    +  </properties>
    +  <packaging>jar</packaging>
    +  <name>Spark Project Kubernetes Integration Tests</name>
    +
    +  <dependencies>
    +    <dependency>
    +      <groupId>org.apache.spark</groupId>
    +      <artifactId>spark-core_${scala.binary.version}</artifactId>
    +      <version>${project.version}</version>
    +    </dependency>
    +
    +    <dependency>
    +      <groupId>org.apache.spark</groupId>
    +      <artifactId>spark-core_${scala.binary.version}</artifactId>
    +      <version>${project.version}</version>
    +      <type>test-jar</type>
    +      <scope>test</scope>
    +    </dependency>
    +
    +    <dependency>
    +      <groupId>commons-logging</groupId>
    +      <artifactId>commons-logging</artifactId>
    +      <version>${commons-logging.version}</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>com.google.code.findbugs</groupId>
    +      <artifactId>jsr305</artifactId>
    +      <version>${jsr305.version}</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>com.google.guava</groupId>
    +      <artifactId>guava</artifactId>
    +      <scope>test</scope>
    +      <!-- For compatibility with Docker client. Should be fine since this 
is just for tests.-->
    +      <version>${guava.version}</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>com.spotify</groupId>
    +      <artifactId>docker-client</artifactId>
    +      <version>${docker-client.version}</version>
    +      <scope>test</scope>
    +    </dependency>
    +    <dependency>
    +      <groupId>io.fabric8</groupId>
    +      <artifactId>kubernetes-client</artifactId>
    +      <version>${kubernetes-client.version}</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>log4j</groupId>
    +      <artifactId>log4j</artifactId>
    +      <version>${log4j.version}</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.apache.commons</groupId>
    +      <artifactId>commons-lang3</artifactId>
    +      <version>${commons-lang3.version}</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.scala-lang</groupId>
    +      <artifactId>scala-library</artifactId>
    +      <version>${scala.version}</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.scalatest</groupId>
    +      <artifactId>scalatest_${scala.binary.version}</artifactId>
    +      <scope>test</scope>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.slf4j</groupId>
    +      <artifactId>slf4j-log4j12</artifactId>
    +      <version>${slf4j-log4j12.version}</version>
    +      <scope>test</scope>
    +    </dependency>
    +  </dependencies>
    +
    +  <build>
    +    <plugins>
    +      <plugin>
    +        <groupId>net.alchim31.maven</groupId>
    --- End diff --
    
    Resolved in 5a8fd7ff40


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to