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 <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">
0019   <modelVersion>4.0.0</modelVersion>
0020   <parent>
0021     <groupId>org.apache.spark</groupId>
0022     <artifactId>spark-parent_2.12</artifactId>
0023     <version>3.0.0</version>
0024     <relativePath>../../pom.xml</relativePath>
0025   </parent>
0026 
0027   <!-- Kinesis integration is not included by default due to ASL-licensed code. -->
0028   <artifactId>spark-streaming-kinesis-asl_2.12</artifactId>
0029   <packaging>jar</packaging>
0030   <name>Spark Kinesis Integration</name>
0031 
0032   <properties>
0033     <sbt.project.name>streaming-kinesis-asl</sbt.project.name>
0034   </properties>
0035 
0036   <dependencies>
0037     <dependency>
0038       <groupId>org.apache.spark</groupId>
0039       <artifactId>spark-streaming_${scala.binary.version}</artifactId>
0040       <version>${project.version}</version>
0041     </dependency>
0042     <dependency>
0043       <groupId>org.apache.spark</groupId>
0044       <artifactId>spark-core_${scala.binary.version}</artifactId>
0045       <version>${project.version}</version>
0046       <type>test-jar</type>
0047       <scope>test</scope>
0048     </dependency>
0049     <dependency>
0050       <groupId>org.apache.spark</groupId>
0051       <artifactId>spark-streaming_${scala.binary.version}</artifactId>
0052       <version>${project.version}</version>
0053       <type>test-jar</type>
0054       <scope>test</scope>
0055     </dependency>
0056     <dependency>
0057       <groupId>com.amazonaws</groupId>
0058       <artifactId>amazon-kinesis-client</artifactId>
0059       <version>${aws.kinesis.client.version}</version>
0060     </dependency>
0061     <dependency>
0062       <groupId>com.amazonaws</groupId>
0063       <artifactId>aws-java-sdk-sts</artifactId>
0064       <version>${aws.java.sdk.version}</version>
0065     </dependency>
0066     <dependency>
0067       <groupId>com.amazonaws</groupId>
0068       <artifactId>amazon-kinesis-producer</artifactId>
0069       <version>${aws.kinesis.producer.version}</version>
0070       <scope>test</scope>
0071     </dependency>
0072     <!-- manage this up explicitly to match Spark; com.amazonaws:aws-java-sdk-pom specifies
0073       2.6.7 but says we can manage it up -->
0074     <dependency>
0075       <groupId>com.fasterxml.jackson.dataformat</groupId>
0076       <artifactId>jackson-dataformat-cbor</artifactId>
0077       <version>${fasterxml.jackson.version}</version>
0078     </dependency>
0079     <dependency>
0080       <groupId>org.mockito</groupId>
0081       <artifactId>mockito-core</artifactId>
0082       <scope>test</scope>
0083     </dependency>
0084     <dependency>
0085       <groupId>org.scalacheck</groupId>
0086       <artifactId>scalacheck_${scala.binary.version}</artifactId>
0087       <scope>test</scope>
0088     </dependency>
0089     <dependency>
0090       <groupId>org.apache.spark</groupId>
0091       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0092     </dependency>
0093 
0094     <!--
0095       This spark-tags test-dep is needed even though it isn't used in this module, otherwise testing-cmds that exclude
0096       them will yield errors.
0097     -->
0098     <dependency>
0099       <groupId>org.apache.spark</groupId>
0100       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0101       <type>test-jar</type>
0102       <scope>test</scope>
0103     </dependency>
0104 
0105   </dependencies>
0106   <build>
0107     <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
0108     <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
0109   </build>
0110 </project>