You can download jboss-jaxrpc-api_1.1_spec-1.0.1.final.jar in this page.
Common Development and Distribution License
jboss-jaxrpc-api_1.1_spec-1.0.1.final.jar file has the following types.
META-INF.maven.org.jboss.spec.javax.xml.rpc.jboss-jaxrpc-api_1.1_spec.pom.properties META-INF.maven.org.jboss.spec.javax.xml.rpc.jboss-jaxrpc-api_1.1_spec.pom.xml META-INF/INDEX.LIST META-INF/LICENSE META-INF/MANIFEST.MF META-INF/README javax.xml.rpc.Call.class javax.xml.rpc.JAXRPCException.class javax.xml.rpc.NamespaceConstants.class javax.xml.rpc.ParameterMode.class javax.xml.rpc.Service.class javax.xml.rpc.ServiceException.class javax.xml.rpc.ServiceFactory.class javax.xml.rpc.Stub.class javax.xml.rpc.encoding.DeserializationContext.class javax.xml.rpc.encoding.Deserializer.class javax.xml.rpc.encoding.DeserializerFactory.class javax.xml.rpc.encoding.SerializationContext.class javax.xml.rpc.encoding.Serializer.class javax.xml.rpc.encoding.SerializerFactory.class javax.xml.rpc.encoding.TypeMapping.class javax.xml.rpc.encoding.TypeMappingRegistry.class javax.xml.rpc.encoding.XMLType.class javax.xml.rpc.handler.GenericHandler.class javax.xml.rpc.handler.Handler.class javax.xml.rpc.handler.HandlerChain.class javax.xml.rpc.handler.HandlerInfo.class javax.xml.rpc.handler.HandlerRegistry.class javax.xml.rpc.handler.MessageContext.class javax.xml.rpc.handler.soap.SOAPMessageContext.class javax.xml.rpc.holders.BigDecimalHolder.class javax.xml.rpc.holders.BigIntegerHolder.class javax.xml.rpc.holders.BooleanHolder.class javax.xml.rpc.holders.BooleanWrapperHolder.class javax.xml.rpc.holders.ByteArrayHolder.class javax.xml.rpc.holders.ByteHolder.class javax.xml.rpc.holders.ByteWrapperHolder.class javax.xml.rpc.holders.CalendarHolder.class javax.xml.rpc.holders.DoubleHolder.class javax.xml.rpc.holders.DoubleWrapperHolder.class javax.xml.rpc.holders.FloatHolder.class javax.xml.rpc.holders.FloatWrapperHolder.class javax.xml.rpc.holders.Holder.class javax.xml.rpc.holders.IntHolder.class javax.xml.rpc.holders.IntegerWrapperHolder.class javax.xml.rpc.holders.LongHolder.class javax.xml.rpc.holders.LongWrapperHolder.class javax.xml.rpc.holders.ObjectHolder.class javax.xml.rpc.holders.QNameHolder.class javax.xml.rpc.holders.ShortHolder.class javax.xml.rpc.holders.ShortWrapperHolder.class javax.xml.rpc.holders.StringHolder.class javax.xml.rpc.server.ServiceLifecycle.class javax.xml.rpc.server.ServletEndpointContext.class javax.xml.rpc.soap.SOAPFaultException.class
jboss-jaxrpc-api_1.1_spec-1.0.1.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.rpc</groupId> <artifactId>jboss-jaxrpc-api_1.1_spec</artifactId> <version>1.0.1.Final</version> <packaging>jar</packaging> <name>Java(TM) API for XML-based RPC (JAX-RPC) 1.1</name> <description>JSR-101: Java(TM) API for XML-based RPC (JAX-RPC) 1.1</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-jaxrpc-api_spec.git</connection> <developerConnection>scm:git:git@github.com:jboss/jboss-jaxrpc-api_spec.git</developerConnection> <url>https://github.com/jboss/jboss-jaxrpc-api_spec</url> </scm> <build> <plugins> <!-- Include LICENSE.txt in the META-INF directory --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <resources> <resource> <directory>${basedir}</directory> <includes> <include>LICENSE</include> <include>README</include> </includes> </resource> </resources> <outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory> </configuration> </execution> </executions> </plugin> <!-- 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-101: Java(TM) API for XML-based RPC (JAX-RPC) 1.1</Specification-Title> <Specification-Vendor>Oracle</Specification-Vendor> <Specification-Version>1.1</Specification-Version> <!-- Set the package version to match the spec version --> <Export-Package> javax.xml.rpc*;version=1.1 </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-101: Java(TM) API for XML-based RPC (JAX-RPC) 1.1</Specification-Title> <Specification-Vendor>Oracle</Specification-Vendor> <Specification-Version>1.1</Specification-Version> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jboss.spec.javax.servlet</groupId> <artifactId>jboss-servlet-api_3.0_spec</artifactId> <version>1.0.1.Final</version> </dependency> </dependencies> </project>
<dependency> <groupId>org.jboss.spec.javax.xml.rpc</groupId> <artifactId>jboss-jaxrpc-api_1.1_spec</artifactId> <version>1.0.1.final</version> </dependency>
If you think the following jboss-jaxrpc-api_1.1_spec-1.0.1.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jboss-jaxrpc-api_1.1_spec-1.0.1.final.jar file