You can download jaxrpc-1.4.0.jar in this page.
GNU GENERAL PUBLIC LICENSE Version 2
jaxrpc-1.4.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.lucee/jaxrpc/pom.properties META-INF/maven/org.lucee/jaxrpc/pom.xml javax.xml.messaging.Endpoint.class javax.xml.messaging.URLEndpoint.class javax.xml.namespace.QName.class javax.xml.rpc.Call.class javax.xml.rpc.FactoryFinder.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
jaxrpc-1.4.0.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> <groupId>org.lucee</groupId> <artifactId>jaxrpc</artifactId> <version>1.4.0</version> <name>JAXRPC</name> <packaging>bundle</packaging> <description>OSGi Version of JAXRPC</description> <url>http://maven.lucee.org/jaxrpc/</url> <!-- same license as the original jar --> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE Version 2</name> <url>http://www.gnu.org/licenses/gpl-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>micstriit</id> <name>Michael Offner</name> <email>michael@lucee.org</email> <organization>Lucee Association Switzerland</organization> <organizationUrl>http://lucee.org</organizationUrl> <roles> <role>Project-Administrator</role> <role>Developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.10</version> <executions> <execution> <id>unpack</id> <phase>validate</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>axis</groupId> <artifactId>axis-jaxrpc</artifactId> <version>1.4</version> <type>jar</type> <overWrite>false</overWrite> <outputDirectory>${project.build.directory}/classes</outputDirectory> </artifactItem> </artifactItems> <overWriteReleases>true</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.0.1</version> <configuration> <unpackBundle>true</unpackBundle> <instructions> <Bundle-Name>org.lucee.jaxrpc</Bundle-Name> <Bundle-SymbolicName>org.lucee.jaxrpc</Bundle-SymbolicName> <Bundle-Description>OSGI version of jar ${project.name}</Bundle-Description> <Export-Package>*</Export-Package> <!-- <Require-Bundle></Require-Bundle> --> <!-- <Import-Package>*</Import-Package> <DynamicImport-Package>*</DynamicImport-Package> --> </instructions> </configuration> <extensions>true</extensions> </plugin> </plugins> </build> <scm> <url>https://github.com/lucee/osgi-bundle-jaxrpc</url> <connection>scm:git:git://github.com/lucee/osgi-bundle-jaxrpc.git</connection> <developerConnection>scm:git:git@github.com:lucee/osgi-bundle-jaxrpc.git</developerConnection> <tag>JAXRPC OSGi library</tag> </scm> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>
<dependency> <groupId>org.lucee</groupId> <artifactId>jaxrpc</artifactId> <version>1.4.0</version> </dependency>
If you think the following jaxrpc-1.4.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jaxrpc-1.4.0.jar file