Download jetstream-messaging-4.0.2.jar file

Introduction

You can download jetstream-messaging-4.0.2.jar in this page.

License

The Apache Software License, Version 2.0

Type List

jetstream-messaging-4.0.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.ebay.jetstream/jetstream-messaging/pom.properties
META-INF/maven/com.ebay.jetstream/jetstream-messaging/pom.xml
com.ebay.jetstream.event.channel.kafka.ConsumerId.class
com.ebay.jetstream.event.channel.kafka.DynamicCoordinator.class
com.ebay.jetstream.event.channel.kafka.EventKafkaMetadata.class
com.ebay.jetstream.event.channel.kafka.FixedCountCoordinator.class
com.ebay.jetstream.event.channel.kafka.InboundKafkaChannel.class
com.ebay.jetstream.event.channel.kafka.KafkaChannelAddress.class
com.ebay.jetstream.event.channel.kafka.KafkaConstants.class
com.ebay.jetstream.event.channel.kafka.KafkaConsumer.class
com.ebay.jetstream.event.channel.kafka.KafkaConsumerConfig.class
com.ebay.jetstream.event.channel.kafka.KafkaController.class
com.ebay.jetstream.event.channel.kafka.KafkaControllerConfig.class
com.ebay.jetstream.event.channel.kafka.KafkaMessageSerializer.class
com.ebay.jetstream.event.channel.kafka.KafkaMetrics.class
com.ebay.jetstream.event.channel.kafka.KafkaProducerConfig.class
com.ebay.jetstream.event.channel.kafka.OutboundKafkaChannel.class
com.ebay.jetstream.event.channel.kafka.PartitionCoordinator.class
com.ebay.jetstream.event.channel.kafka.PartitionLostException.class
com.ebay.jetstream.event.channel.kafka.PartitionReader.class
com.ebay.jetstream.event.channel.kafka.StaticCoordinator.class
com.ebay.jetstream.event.channel.kafka.ZkCoordinator.class
com.ebay.jetstream.event.channel.kafka.support.AdvicedEventKafkaSerializer.class
com.ebay.jetstream.event.channel.kafka.support.AvroMessageSerializer.class
com.ebay.jetstream.event.channel.kafka.support.JSONMessageSerializer.class
com.ebay.jetstream.event.channel.messaging.InboundMessagingChannel.class
com.ebay.jetstream.event.channel.messaging.InboundMessagingChannelController.class
com.ebay.jetstream.event.channel.messaging.MessagingChannelAddress.class
com.ebay.jetstream.event.channel.messaging.OutboundMessagingChannel.class
com.ebay.jetstream.event.channel.messaging.http.inbound.InboundRESTChannel.class
com.ebay.jetstream.event.channel.messaging.http.inbound.InboundRTBDEventServlet.class
com.ebay.jetstream.event.channel.messaging.http.outbound.EventBatcher.class
com.ebay.jetstream.event.channel.messaging.http.outbound.OutboundRESTChannel.class
com.ebay.jetstream.event.channel.messaging.http.outbound.OutboundRESTChannelResponseFuture.class
com.ebay.jetstream.event.channel.messaging.http.outbound.RESTChannelAddress.class
com.ebay.jetstream.event.channel.messaging.http.outbound.SendRequest.class
com.ebay.jetstream.event.processor.kafka.SimpleKafkaProcessor.class
com.ebay.jetstream.event.processor.kafka.SimpleKafkaProcessorConfig.class

Pom

jetstream-messaging-4.0.2.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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
		<groupId>com.ebay.jetstream</groupId>
		<artifactId>jetstream-parent</artifactId>
		<version>4.0.2</version>
		<relativePath>../Build/superpom</relativePath>
	</parent>
	
	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
		<license>
			<name>The MIT License (MIT)</name>
			<url>http://opensource.org/licenses/MIT</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	
    <artifactId>jetstream-messaging</artifactId>
    
  
    <dependencies>
        <dependency>
            <groupId>com.ebay.jetstream</groupId>
            <artifactId>jetstreamframework</artifactId>
            <version>${project.parent.version}</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
        </dependency> 
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

     <build>
		<finalName>${project.artifactId}.${project.version}.r${buildNumber}</finalName>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<configuration>
					<archive>
						<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
					</archive>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<configuration>
					<archive>
						<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
					</archive>
				</configuration>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-release-plugin</artifactId>
                    <version>2.4.1</version>
                    <configuration>
                            <autoVersionSubmodules>true</autoVersionSubmodules>
                            <useReleaseProfile>false</useReleaseProfile>
                            <releaseProfiles>release</releaseProfiles>
                            <goals>deploy</goals>
                    </configuration>
            </plugin>

			<!-- Apache Felix Bundle Plugin - For Generation of Manifest after Compile 
				phase -->
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<!-- Configuration for generating the Manifest.mf -->
				<configuration>
					<!-- manifestLocation>src/main/resources/META-INF</manifestLocation -->
					<!-- Manifest Headers which need to customized during manifest generation -->
					<instructions>
						<!-- Bundle-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${timestamp}</Bundle-Version -->
						<Export-Package>{local-packages}</Export-Package>
						<_nouses>true</_nouses>
						<Import-Package>*
						</Import-Package>
					</instructions>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>findbugs-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>	

</project>

POM Entry

<dependency>
   <groupId>com.ebay.jetstream</groupId>
   <artifactId>jetstream-messaging</artifactId>
   <version>4.0.2</version>
</dependency>

Download

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



Download jetstream-messaging-4.0.2.jar file




PreviousNext

Related