Download hawtdispatch-transport-1.18.jar file

Introduction

You can download hawtdispatch-transport-1.18.jar in this page.

License

Apache License

Type List

hawtdispatch-transport-1.18.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.fusesource.hawtdispatch/hawtdispatch-transport/pom.properties
META-INF/maven/org.fusesource.hawtdispatch/hawtdispatch-transport/pom.xml
org.fusesource.hawtdispatch.transport.AbstractProtocolCodec.class
org.fusesource.hawtdispatch.transport.DefaultTransportListener.class
org.fusesource.hawtdispatch.transport.HeartBeatMonitor.class
org.fusesource.hawtdispatch.transport.PipeTransport.class
org.fusesource.hawtdispatch.transport.PipeTransportRegistry.class
org.fusesource.hawtdispatch.transport.PipeTransportServer.class
org.fusesource.hawtdispatch.transport.ProtocolCodec.class
org.fusesource.hawtdispatch.transport.SecuredSession.class
org.fusesource.hawtdispatch.transport.ServiceBase.class
org.fusesource.hawtdispatch.transport.SslProtocolCodec.class
org.fusesource.hawtdispatch.transport.SslTransport.class
org.fusesource.hawtdispatch.transport.SslTransportServer.class
org.fusesource.hawtdispatch.transport.TcpTransport.class
org.fusesource.hawtdispatch.transport.TcpTransportServer.class
org.fusesource.hawtdispatch.transport.Transport.class
org.fusesource.hawtdispatch.transport.TransportFilter.class
org.fusesource.hawtdispatch.transport.TransportListener.class
org.fusesource.hawtdispatch.transport.TransportServer.class
org.fusesource.hawtdispatch.transport.TransportServerListener.class
org.fusesource.hawtdispatch.transport.UdpTransport.class
org.fusesource.hawtdispatch.transport.UdpTransportServer.class
org.fusesource.hawtdispatch.transport.WrappingProtocolCodec.class
org.fusesource.hawtdispatch.util.BufferPool.class
org.fusesource.hawtdispatch.util.BufferPools.class
org.fusesource.hawtdispatch.util.ThreadLocalPool.class

Pom

hawtdispatch-transport-1.18.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--

    Copyright (C) 2012 FuseSource, Inc.
    http://fusesource.com

    Licensed 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/maven-v4_0_0.xsd">

  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.fusesource.hawtdispatch</groupId>
    <artifactId>hawtdispatch-project</artifactId>
    <version>1.18</version>
  </parent>
    
  <groupId>org.fusesource.hawtdispatch</groupId>
  <artifactId>hawtdispatch-transport</artifactId>
  <version>1.18</version>
  <packaging>bundle</packaging>

  <description>HawtDispatch Transport: Transport abstractions for HawtDispatch</description>

  <properties>
    <junit-version>4.7</junit-version>
    <asm-version>3.1</asm-version>
    <log4j-version>1.2.14</log4j-version>
    <osgi-version>4.2.0</osgi-version>
  </properties>

  <dependencies>

    <dependency>
      <groupId>org.fusesource.hawtdispatch</groupId>
      <artifactId>hawtdispatch</artifactId>
      <version>1.18</version>
    </dependency>
    <dependency>
      <groupId>org.fusesource.hawtbuf</groupId>
      <artifactId>hawtbuf</artifactId>
      <version>${hawtbuf-version}</version>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>${junit-version}</version>
      <scope>test</scope>
    </dependency>
    
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>${log4j-version}</version>
      <scope>test</scope>
    </dependency>
    
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <inherited>true</inherited>
        <configuration>
          <instructions>
            <!-- <Bundle-Activator>org.fusesource.hawtdispatch.internal.Activator</Bundle-Activator>
            <Private-Package>org.fusesource.hawtdispatch.internal.*</Private-Package> -->
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.fusesource.hawtdispatch</groupId>
   <artifactId>hawtdispatch-transport</artifactId>
   <version>1.18</version>
</dependency>

Download

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



Download hawtdispatch-transport-1.18.jar file




PreviousNext

Related