Download jboss-jaxws-api_2.2_spec-2.0.2.final.jar file

Introduction

You can download jboss-jaxws-api_2.2_spec-2.0.2.final.jar in this page.

License

Common Development and Distribution License

Type List

jboss-jaxws-api_2.2_spec-2.0.2.final.jar file has the following types.

LICENSE.txt
META-INF.maven.org.jboss.spec.javax.xml.ws.jboss-jaxws-api_2.2_spec.pom.properties
META-INF.maven.org.jboss.spec.javax.xml.ws.jboss-jaxws-api_2.2_spec.pom.xml
META-INF/INDEX.LIST
META-INF/MANIFEST.MF
NOTE.txt
javax.xml.ws.Action.class
javax.xml.ws.AsyncHandler.class
javax.xml.ws.Binding.class
javax.xml.ws.BindingProvider.class
javax.xml.ws.BindingType.class
javax.xml.ws.Dispatch.class
javax.xml.ws.Endpoint.class
javax.xml.ws.EndpointContext.class
javax.xml.ws.EndpointReference.class
javax.xml.ws.FaultAction.class
javax.xml.ws.Holder.class
javax.xml.ws.LogicalMessage.class
javax.xml.ws.ProtocolException.class
javax.xml.ws.Provider.class
javax.xml.ws.RequestWrapper.class
javax.xml.ws.RespectBinding.class
javax.xml.ws.RespectBindingFeature.class
javax.xml.ws.Response.class
javax.xml.ws.ResponseWrapper.class
javax.xml.ws.Service.class
javax.xml.ws.ServiceMode.class
javax.xml.ws.WebEndpoint.class
javax.xml.ws.WebFault.class
javax.xml.ws.WebServiceClient.class
javax.xml.ws.WebServiceContext.class
javax.xml.ws.WebServiceException.class
javax.xml.ws.WebServiceFeature.class
javax.xml.ws.WebServicePermission.class
javax.xml.ws.WebServiceProvider.class
javax.xml.ws.WebServiceRef.class
javax.xml.ws.WebServiceRefs.class
javax.xml.ws.handler.Handler.class
javax.xml.ws.handler.HandlerResolver.class
javax.xml.ws.handler.LogicalHandler.class
javax.xml.ws.handler.LogicalMessageContext.class
javax.xml.ws.handler.MessageContext.class
javax.xml.ws.handler.PortInfo.class
javax.xml.ws.handler.soap.SOAPHandler.class
javax.xml.ws.handler.soap.SOAPMessageContext.class
javax.xml.ws.http.HTTPBinding.class
javax.xml.ws.http.HTTPException.class
javax.xml.ws.soap.Addressing.class
javax.xml.ws.soap.AddressingFeature.class
javax.xml.ws.soap.MTOM.class
javax.xml.ws.soap.MTOMFeature.class
javax.xml.ws.soap.SOAPBinding.class
javax.xml.ws.soap.SOAPFaultException.class
javax.xml.ws.spi.FactoryFinder.class
javax.xml.ws.spi.Invoker.class
javax.xml.ws.spi.Provider.class
javax.xml.ws.spi.ServiceDelegate.class
javax.xml.ws.spi.WebServiceFeatureAnnotation.class
javax.xml.ws.spi.http.HttpContext.class
javax.xml.ws.spi.http.HttpExchange.class
javax.xml.ws.spi.http.HttpHandler.class
javax.xml.ws.wsaddressing.W3CEndpointReference.class
javax.xml.ws.wsaddressing.W3CEndpointReferenceBuilder.class
javax.xml.ws.wsaddressing.package-info.class

Pom

jboss-jaxws-api_2.2_spec-2.0.2.final.pom file content.

<?xml version='1.0' encoding='UTF-8'?>
<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.jboss</groupId>
    <artifactId>jboss-parent</artifactId>
    <version>9</version>
  </parent>

  <groupId>org.jboss.spec.javax.xml.ws</groupId>
  <artifactId>jboss-jaxws-api_2.2_spec</artifactId>
  <version>2.0.2.Final</version>
  <packaging>jar</packaging>

  <name>Java(TM) API for XML-Based Web Services 2.2</name>
  <description>JSR-000224: Java(TM) API for XML-Based Web Services 2.2</description>

  <licenses>
    <license>
      <name>Common Development and Distribution License</name>
      <url>http://repository.jboss.org/licenses/cddl.txt</url>
      <distribution>repo</distribution>
    </license>
    <license>
      <name>GNU General Public License, Version 2 with the Classpath Exception</name>
      <url>http://repository.jboss.org/licenses/gpl-2.0-ce.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <connection>scm:git:git@github.com:jboss/jboss-jaxws-api_spec.git</connection>
    <developerConnection>scm:git:git@github.com:jboss/jboss-jaxws-api_spec.git</developerConnection>
    <url>https://github.com/jboss/jboss-jaxws-api_spec</url>
  </scm>

  <build>
    <plugins>
      <!-- Generate the OSGi jar Manifest. -->
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <executions>
          <execution>
            <id>bundle-manifest</id>
            <phase>process-classes</phase>
            <goals>
              <goal>manifest</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <archive>
            <manifest>
              <addDefaultSpecificationEntries>false</addDefaultSpecificationEntries>
            </manifest>
          </archive>
          <instructions>
            <Specification-Title>JSR-000224: Java(TM) API for XML-Based Web Services</Specification-Title>
            <Specification-Vendor>Oracle</Specification-Vendor>
            <Specification-Version>2.2</Specification-Version>
            <!-- Set the package version to match the spec version -->
            <Export-Package>
              javax.xml.ws*;version=2.2
            </Export-Package>
          </instructions>
        </configuration>
      </plugin>
      <!-- Add the OSGi Manifest to the main jar -->
      <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>
            <manifestEntries>
              <Specification-Title>JSR-000224: Java(TM) API for XML-Based Web Services</Specification-Title>
              <Specification-Vendor>Oracle</Specification-Vendor>
              <Specification-Version>2.2</Specification-Version>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>

POM Entry

<dependency>
   <groupId>org.jboss.spec.javax.xml.ws</groupId>
   <artifactId>jboss-jaxws-api_2.2_spec</artifactId>
   <version>2.0.2.final</version>
</dependency>

Download

If you think the following jboss-jaxws-api_2.2_spec-2.0.2.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download jboss-jaxws-api_2.2_spec-2.0.2.final.jar file




PreviousNext

Related