Download switchyard-component-http-1.1.0.final.jar file

Introduction

You can download switchyard-component-http-1.1.0.final.jar in this page.

License

Apache License

Type List

switchyard-component-http-1.1.0.final.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.switchyard.components/switchyard-component-http/pom.properties
META-INF/maven/org.switchyard.components/switchyard-component-http/pom.xml
META-INF/services/org.switchyard.component.common.composer.ContextMapperFactory
META-INF/services/org.switchyard.component.common.composer.MessageComposerFactory
META-INF/services/org.switchyard.component.common.selector.OperationSelectorFactory
META-INF/services/org.switchyard.component.http.endpoint.EndpointPublisher
META-INF/services/org.switchyard.deploy.Component
org.switchyard.component.http.ContentType.class
org.switchyard.component.http.HttpConsumeException.class
org.switchyard.component.http.HttpGatewayServlet.class
org.switchyard.component.http.HttpLogger.class
org.switchyard.component.http.HttpMessages.class
org.switchyard.component.http.HttpPublishException.class
org.switchyard.component.http.InboundHandler.class
org.switchyard.component.http.OutboundHandler.class
org.switchyard.component.http.composer.HttpBindingData.class
org.switchyard.component.http.composer.HttpComposition.class
org.switchyard.component.http.composer.HttpContextMapper.class
org.switchyard.component.http.composer.HttpContextMapperFactory.class
org.switchyard.component.http.composer.HttpMessageComposer.class
org.switchyard.component.http.composer.HttpMessageComposerFactory.class
org.switchyard.component.http.composer.HttpRequestBindingData.class
org.switchyard.component.http.composer.HttpRequestInfo.class
org.switchyard.component.http.composer.HttpResponseBindingData.class
org.switchyard.component.http.config.model.BasicAuthModel.class
org.switchyard.component.http.config.model.HttpBindingModel.class
org.switchyard.component.http.config.model.HttpNameValueModel.class
org.switchyard.component.http.config.model.HttpNamespace.class
org.switchyard.component.http.config.model.NtlmAuthModel.class
org.switchyard.component.http.config.model.ProxyModel.class
org.switchyard.component.http.config.model.v1.V1BasicAuthModel.class
org.switchyard.component.http.config.model.v1.V1HttpBindingModel.class
org.switchyard.component.http.config.model.v1.V1HttpMarshaller.class
org.switchyard.component.http.config.model.v1.V1HttpNameValueModel.class
org.switchyard.component.http.config.model.v1.V1NtlmAuthModel.class
org.switchyard.component.http.config.model.v1.V1ProxyModel.class
org.switchyard.component.http.deploy.HttpActivator.class
org.switchyard.component.http.deploy.HttpComponent.class
org.switchyard.component.http.endpoint.Endpoint.class
org.switchyard.component.http.endpoint.EndpointPublisher.class
org.switchyard.component.http.endpoint.EndpointPublisherFactory.class
org.switchyard.component.http.endpoint.StandaloneEndpoint.class
org.switchyard.component.http.endpoint.StandaloneEndpointPublisher.class
org.switchyard.component.http.selector.HttpOperationSelector.class
org.switchyard.component.http.selector.HttpOperationSelectorFactory.class
org.switchyard.component.http.util.HttpContentTypeUtil.class
org/switchyard/component/http/HttpLogger.i18n.properties
org/switchyard/component/http/HttpMessages.i18n.properties
org/switchyard/component/http/config/model/v1/http_1_0.xsd
org/switchyard/component/http/config/model/v1/http_1_1.xsd
org/switchyard/config/model/descriptor.properties

Pom

switchyard-component-http-1.1.0.final.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors.
-
- 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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.switchyard.components</groupId>
        <artifactId>switchyard-components-parent</artifactId>
        <version>1.1.0.Final</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <artifactId>switchyard-component-http</artifactId>
    <name>SwitchYard: HTTP Component</name>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <configuration>
                    <!-- Avoid processing @ delimeter, we use that in license headers -->
                    <useDefaultDelimiters>false</useDefaultDelimiters>
                    <delimiters>
                        <delimiter>${*}</delimiter>
                    </delimiters>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>org.switchyard</groupId>
            <artifactId>switchyard-config</artifactId>
        </dependency>
        <dependency>
            <groupId>org.switchyard</groupId>
            <artifactId>switchyard-common</artifactId>
        </dependency>
        <dependency>
            <groupId>org.switchyard</groupId>
            <artifactId>switchyard-security-jboss</artifactId>
        </dependency>
        <dependency>
            <groupId>org.switchyard.components</groupId>
            <artifactId>switchyard-component-common</artifactId>
        </dependency>
        <dependency>
            <groupId>org.switchyard.components</groupId>
            <artifactId>switchyard-component-test-mixin-http</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
        </dependency>
        <dependency>
            <groupId>org.littleshoot</groupId>
            <artifactId>littleproxy</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.javassist</groupId>
            <artifactId>javassist</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jboss.com.sun.httpserver</groupId>
            <artifactId>httpserver</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>junit</groupId>
                    <artifactId>junit</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.switchyard.components</groupId>
   <artifactId>switchyard-component-http</artifactId>
   <version>1.1.0.final</version>
</dependency>

Download

If you think the following switchyard-component-http-1.1.0.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download switchyard-component-http-1.1.0.final.jar file




PreviousNext

Related