Download spark-streaming-mqtt_2.11-2.1.1.jar file

Introduction

You can download spark-streaming-mqtt_2.11-2.1.1.jar in this page.

License

Apache License

Type List

spark-streaming-mqtt_2.11-2.1.1.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.bahir/spark-streaming-mqtt_2.11/pom.properties
META-INF/maven/org.apache.bahir/spark-streaming-mqtt_2.11/pom.xml
mqtt.py
org.apache.spark.streaming.mqtt.MQTTInputDStream.class
org.apache.spark.streaming.mqtt.MQTTPairReceiver.class
org.apache.spark.streaming.mqtt.MQTTPairedInputDStream.class
org.apache.spark.streaming.mqtt.MQTTReceiver.class
org.apache.spark.streaming.mqtt.MQTTUtils.class
org.apache.spark.streaming.mqtt.MQTTUtilsPythonHelper.class
org.apache.spark.streaming.mqtt.package.class

Pom

spark-streaming-mqtt_2.11-2.1.1.pom file content.

<?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.bahir</groupId>
    <artifactId>bahir-parent_2.11</artifactId>
    <version>2.1.1</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <groupId>org.apache.bahir</groupId>
  <artifactId>spark-streaming-mqtt_2.11</artifactId>
  <properties>
    <sbt.project.name>streaming-mqtt</sbt.project.name>
  </properties>
  <packaging>jar</packaging>
  <name>Apache Bahir - Spark Streaming MQTT</name>
  <url>http://bahir.apache.org/</url>

  <dependencies>
    <dependency>
      <groupId>org.apache.spark</groupId>
      <artifactId>spark-tags_${scala.binary.version}</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.spark</groupId>
      <artifactId>spark-streaming_${scala.binary.version}</artifactId>
      <version>${spark.version}</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.spark</groupId>
      <artifactId>spark-core_${scala.binary.version}</artifactId>
      <version>${spark.version}</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.paho</groupId>
      <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
      <version>1.0.2</version>
    </dependency>
    <dependency>
      <groupId>org.scalacheck</groupId>
      <artifactId>scalacheck_${scala.binary.version}</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.activemq</groupId>
      <artifactId>activemq-core</artifactId>
      <version>5.7.0</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
    <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
      </plugin>

      <!-- Assemble a jar with test dependencies for Python tests -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <id>test-jar-with-dependencies</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
            <configuration>
              <!-- Make sure the file path is same as the sbt build -->
              <finalName>spark-streaming-mqtt-test-${project.version}</finalName>
              <outputDirectory>${project.build.directory}/scala-${scala.binary.version}/</outputDirectory>
              <appendAssemblyId>false</appendAssemblyId>
              <!-- Don't publish it since it's only for Python tests -->
              <attach>false</attach>
              <descriptors>
                <descriptor>src/main/assembly/assembly.xml</descriptor>
              </descriptors>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.apache.bahir</groupId>
   <artifactId>spark-streaming-mqtt_2.11</artifactId>
   <version>2.1.1</version>
</dependency>

Download

If you think the following spark-streaming-mqtt_2.11-2.1.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download spark-streaming-mqtt_2.11-2.1.1.jar file




PreviousNext

Related