Download eventhubs-client-0.9.1.jar file

Introduction

You can download eventhubs-client-0.9.1.jar in this page.

License

The Apache License, Version 2.0

Type List

eventhubs-client-0.9.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.microsoft.eventhubs.client/eventhubs-client/pom.properties
META-INF/maven/com.microsoft.eventhubs.client/eventhubs-client/pom.xml
com.microsoft.eventhubs.client.ConnectionStringBuilder.class
com.microsoft.eventhubs.client.ConnectionStringParser.class
com.microsoft.eventhubs.client.Constants.class
com.microsoft.eventhubs.client.EventHubClient.class
com.microsoft.eventhubs.client.EventHubConsumerGroup.class
com.microsoft.eventhubs.client.EventHubEnqueueTimeFilter.class
com.microsoft.eventhubs.client.EventHubException.class
com.microsoft.eventhubs.client.EventHubMessage.class
com.microsoft.eventhubs.client.EventHubOffsetFilter.class
com.microsoft.eventhubs.client.EventHubReceiver.class
com.microsoft.eventhubs.client.EventHubSender.class
com.microsoft.eventhubs.client.IEventHubFilter.class
com.microsoft.eventhubs.client.ResilientEventHubReceiver.class
com.microsoft.eventhubs.client.SelectorFilter.class
com.microsoft.eventhubs.client.SelectorFilterWriter.class
com.microsoft.eventhubs.client.example.EventHubReceiveClient.class
com.microsoft.eventhubs.client.example.EventHubSendClient.class
com.microsoft.eventhubs.client.example.ResilientEventHubReceiveClient.class

Pom

eventhubs-client-0.9.1.pom file content.

<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.microsoft.eventhubs.client</groupId>
  <artifactId>eventhubs-client</artifactId>
  <packaging>jar</packaging>
  <version>0.9.1</version>
  <name>EventHubs Client</name>
  <description>A generic EventHubs client library for JVM</description>
  <url>https://github.com/hdinsight/eventhubs-client</url>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:hdinsight/eventhubs-client.git</connection>
    <developerConnection>scm:git:git@github.com:hdinsight/eventhubs-client.git</developerConnection>
    <url>git@github.com:hdinsight/eventhubs-client.git</url>
  </scm>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <qpid.version>0.32</qpid.version>
  </properties>
  <distributionManagement>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
  </distributionManagement>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.3</version>
        <executions>
          <execution>
            <goals>
              <goal>shade</goal>
            </goals>
            <phase>package</phase>
          </execution>
        </executions>
        <configuration>
          <transformers>
            <transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer"></transformer>
          </transformers>
          <outputFile>target/${project.artifactId}-${project.version}-jar-with-dependencies.jar</outputFile>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <!--<version>1.6.3</version> use latest version-->
        <extensions>true</extensions>
        <configuration>
          <serverId>ossrh</serverId>
          <nexusUrl>https://oss.sonatype.org/</nexusUrl>
          <autoReleaseAfterClose>true</autoReleaseAfterClose>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.2.1</version>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar-no-fork</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.9.1</version>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.5</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
  <dependencies>
    <dependency>
      <groupId>org.apache.qpid</groupId>
      <artifactId>qpid-amqp-1-0-client</artifactId>
      <version>${qpid.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.qpid</groupId>
      <artifactId>qpid-amqp-1-0-client-jms</artifactId>
      <version>${qpid.version}</version>
    </dependency>
    <dependency>
      <groupId>org.apache.qpid</groupId>
      <artifactId>qpid-amqp-1-0-common</artifactId>
      <version>${qpid.version}</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
	  <version>1.7.12</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <developers>
    <developer>
      <name>Shanyu Zhao</name>
      <email>shzhao@microsoft.com</email>
      <organization>Microsoft</organization>
      <organizationUrl>http://www.microsoft.com</organizationUrl>
    </developer>
    <developer>
      <name>SeongJoon Kwak</name>
      <email>sjkwak@microsoft.com</email>
      <organization>Microsoft</organization>
      <organizationUrl>http://www.microsoft.com</organizationUrl>
    </developer>
  </developers>
</project>

POM Entry

<dependency>
   <groupId>com.microsoft.eventhubs.client</groupId>
   <artifactId>eventhubs-client</artifactId>
   <version>0.9.1</version>
</dependency>

Download

If you think the following eventhubs-client-0.9.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download eventhubs-client-0.9.1.jar file




PreviousNext

Related