Back to home page

OSCL-LXR

 
 

    


0001 <?xml version="1.0" encoding="UTF-8"?>
0002 <!--
0003   ~ Licensed to the Apache Software Foundation (ASF) under one or more
0004   ~ contributor license agreements.  See the NOTICE file distributed with
0005   ~ this work for additional information regarding copyright ownership.
0006   ~ The ASF licenses this file to You under the Apache License, Version 2.0
0007   ~ (the "License"); you may not use this file except in compliance with
0008   ~ the License.  You may obtain a copy of the License at
0009   ~
0010   ~    http://www.apache.org/licenses/LICENSE-2.0
0011   ~
0012   ~ Unless required by applicable law or agreed to in writing, software
0013   ~ distributed under the License is distributed on an "AS IS" BASIS,
0014   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0015   ~ See the License for the specific language governing permissions and
0016   ~ limitations under the License.
0017   -->
0018 
0019 <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">
0020   <modelVersion>4.0.0</modelVersion>
0021   <parent>
0022     <groupId>org.apache.spark</groupId>
0023     <artifactId>spark-parent_2.12</artifactId>
0024     <version>3.0.0</version>
0025     <relativePath>../../pom.xml</relativePath>
0026   </parent>
0027 
0028   <groupId>org.apache.spark</groupId>
0029   <artifactId>spark-token-provider-kafka-0-10_2.12</artifactId>
0030   <properties>
0031     <sbt.project.name>token-provider-kafka-0-10</sbt.project.name>
0032   </properties>
0033   <packaging>jar</packaging>
0034   <name>Kafka 0.10+ Token Provider for Streaming</name>
0035   <url>http://spark.apache.org/</url>
0036 
0037   <dependencies>
0038     <dependency>
0039       <groupId>org.apache.spark</groupId>
0040       <artifactId>spark-core_${scala.binary.version}</artifactId>
0041       <version>${project.version}</version>
0042       <scope>provided</scope>
0043     </dependency>
0044     <dependency>
0045       <groupId>org.apache.spark</groupId>
0046       <artifactId>spark-core_${scala.binary.version}</artifactId>
0047       <version>${project.version}</version>
0048       <type>test-jar</type>
0049       <scope>test</scope>
0050     </dependency>
0051     <dependency>
0052       <groupId>org.apache.kafka</groupId>
0053       <artifactId>kafka-clients</artifactId>
0054       <version>${kafka.version}</version>
0055     </dependency>
0056     <dependency>
0057       <groupId>org.mockito</groupId>
0058       <artifactId>mockito-core</artifactId>
0059       <scope>test</scope>
0060     </dependency>
0061     <dependency>
0062       <groupId>org.apache.spark</groupId>
0063       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0064     </dependency>
0065 
0066     <!--
0067       This spark-tags test-dep is needed even though it isn't used in this module, otherwise testing-cmds that exclude
0068       them will yield errors.
0069     -->
0070     <dependency>
0071       <groupId>org.apache.spark</groupId>
0072       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0073       <type>test-jar</type>
0074       <scope>test</scope>
0075     </dependency>
0076 
0077   </dependencies>
0078 
0079   <build>
0080     <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
0081     <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
0082   </build>
0083 
0084 </project>