组织ID: |
org.jboss.spec.javax.xml.rpc |
项目ID: |
jboss-jaxrpc-api_1.1_spec |
版本: |
2.0.0.Final |
最后修改时间: |
2019-10-18 10:11:51 |
包类型: |
jar |
标题: |
Jakarta XML RPC API |
描述: |
Eclipse Project for Stable EE4J APIs |
大小: |
35.84KB |
|
Maven引入代码: |
<dependency>
<groupId>org.jboss.spec.javax.xml.rpc</groupId>
<artifactId>jboss-jaxrpc-api_1.1_spec</artifactId>
<version>2.0.0.Final</version>
</dependency>
|
Gradle引入代码: |
org.jboss.spec.javax.xml.rpc:jboss-jaxrpc-api_1.1_spec:2.0.0.Final
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<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>35</version>
</parent>
<groupId>org.jboss.spec.javax.xml.rpc</groupId>
<artifactId>jboss-jaxrpc-api_1.1_spec</artifactId>
<version>2.0.0.Final</version>
<packaging>jar</packaging>
<properties>
<extension.name>javax.xml.rpc</extension.name>
<spec.version>1.1</spec.version>
<bundle.symbolicName>javax.xml.rpc-api</bundle.symbolicName>
<vendor.name>Eclipse Project for Stable EE4J APIs</vendor.name>
<implementation.vendor.id>org.glassfish</implementation.vendor.id>
<findbugs.version>2.3.1</findbugs.version>
<findbugs.exclude>exclude.xml</findbugs.exclude>
<findbugs.threshold>Low</findbugs.threshold>
</properties>
<name>Jakarta XML RPC API</name>
<description>Eclipse Project for Stable EE4J APIs</description>
<inceptionYear>2012</inceptionYear>
<licenses>
<license>
<name>EPL 2.0</name>
<url>http://www.eclipse.org/legal/epl-2.0</url>
<distribution>repo</distribution>
</license>
<license>
<name>GPL2 w/ CPE</name>
<url>https://www.gnu.org/software/classpath/license.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/jboss/jboss-jakarta-jax-rpc-api.git</connection>
<developerConnection>scm:git:https://github.com/jboss/jboss-jakarta-jax-rpc-api.git</developerConnection>
<url>https://github.com/jboss/jboss-jakarta-jax-rpc-api</url>
<tag>2.0.0.Final</tag>
</scm>
<developers>
<developer>
<id>yaminikb</id>
<name>Yamini K B</name>
<organization>Oracle Corporation</organization>
<organizationUrl>http://www.oracle.com/</organizationUrl>
</developer>
</developers>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.html</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>META-INF/README</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>1.4.3</version>
<configuration>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
</supportedProjectTypes>
<instructions>
<Bundle-Version>${spec.bundle.version}</Bundle-Version>
<Bundle-SymbolicName>org.jboss.spec.javax.xml.rpc.jboss-jaxrpc-api_1.1_spec</Bundle-SymbolicName>
<Extension-Name>${spec.extension.name}</Extension-Name>
<Implementation-Version>${spec.implementation.version}</Implementation-Version>
<Specification-Version>${spec.version}</Specification-Version>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Description>
JavaTM APIs for XML based RPC ${spec.version} Design Specification
</Bundle-Description>
<Specification-Vendor>${vendor.name}</Specification-Vendor>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
<Implementation-Vendor-Id>${implementation.vendor.id}</Implementation-Vendor-Id>
<Export-Package>${extension.name}.*; version=${spec.version}</Export-Package>
<Automatic-Module-Name>beta.jboss.jaxrpc.api_1_1</Automatic-Module-Name>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<useDefaultManifestFile>true</useDefaultManifestFile>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>add-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>.</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>LICENSE.md</include>
<include>NOTICE.md</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<includePom>true</includePom>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
<docfilessubdirs>true</docfilessubdirs>
<header><![CDATA[<br>Jakarta XML-based RPC API v${project.version}]]>
</header>
<bottom><![CDATA[
Copyright © 2019 Eclipse Foundation. All rights reserved.<br>
Use is subject to <a href="{@docRoot}/doc-files/EFSL.html" target="_top">license terms</a>.]]>
</bottom>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
<configuration>
<threshold>${findbugs.threshold}</threshold>
<excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
<findbugsXmlOutput>true</findbugsXmlOutput>
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>${release.arguments}</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.1</version>
<configuration>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
<configuration>
<threshold>${findbugs.threshold}</threshold>
<excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
</configuration>
</plugin>
</plugins>
</reporting>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jboss.spec.javax.servlet</groupId>
<artifactId>jboss-servlet-api_3.1_spec</artifactId>
<version>1.0.2.Final</version>
<optional>true</optional>
</dependency>
</dependencies>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
javax.xml.rpc.ParameterMode.class
javax.xml.rpc.Service.class
javax.xml.rpc.ServiceException.class
javax.xml.rpc.handler.HandlerInfo.class
javax.xml.rpc.handler.MessageContext.class
javax.xml.rpc.handler.Handler.class
javax.xml.rpc.handler.HandlerChain.class
javax.xml.rpc.handler.HandlerRegistry.class
javax/xml/rpc/handler/package.html
javax/xml/rpc/handler/soap/package.html
javax.xml.rpc.handler.soap.SOAPMessageContext.class
javax.xml.rpc.handler.GenericHandler.class
javax/xml/rpc/package.html
javax/xml/rpc/soap/package.html
javax.xml.rpc.soap.SOAPFaultException.class
javax.xml.rpc.server.ServiceLifecycle.class
javax/xml/rpc/server/package.html
javax.xml.rpc.server.ServletEndpointContext.class
javax.xml.rpc.NamespaceConstants.class
javax.xml.rpc.Stub.class
javax.xml.rpc.FactoryFinder.class
javax.xml.rpc.Call.class
javax.xml.rpc.encoding.TypeMapping.class
javax.xml.rpc.encoding.DeserializerFactory.class
javax.xml.rpc.encoding.Deserializer.class
javax.xml.rpc.encoding.SerializerFactory.class
javax.xml.rpc.encoding.SerializationContext.class
javax/xml/rpc/encoding/package.html
javax.xml.rpc.encoding.Serializer.class
javax.xml.rpc.encoding.DeserializationContext.class
javax.xml.rpc.encoding.XMLType.class
javax.xml.rpc.encoding.TypeMappingRegistry.class
javax.xml.rpc.ServiceFactory.class
javax.xml.rpc.JAXRPCException.class
javax.xml.rpc.holders.ByteHolder.class
javax.xml.rpc.holders.DoubleWrapperHolder.class
javax.xml.rpc.holders.DoubleHolder.class
javax.xml.rpc.holders.QNameHolder.class
javax.xml.rpc.holders.ShortHolder.class
javax.xml.rpc.holders.CalendarHolder.class
javax.xml.rpc.holders.ShortWrapperHolder.class
javax.xml.rpc.holders.LongHolder.class
javax.xml.rpc.holders.IntegerWrapperHolder.class
javax.xml.rpc.holders.BooleanHolder.class
javax.xml.rpc.holders.ByteArrayHolder.class
javax/xml/rpc/holders/package.html
javax.xml.rpc.holders.ByteWrapperHolder.class
javax.xml.rpc.holders.ObjectHolder.class
javax.xml.rpc.holders.FloatWrapperHolder.class
javax.xml.rpc.holders.BigIntegerHolder.class
javax.xml.rpc.holders.BigDecimalHolder.class
javax.xml.rpc.holders.StringHolder.class
javax.xml.rpc.holders.BooleanWrapperHolder.class
javax.xml.rpc.holders.LongWrapperHolder.class
javax.xml.rpc.holders.Holder.class
javax.xml.rpc.holders.FloatHolder.class
javax.xml.rpc.holders.IntHolder.class
META-INF/maven/org.jboss.spec.javax.xml.rpc/jboss-jaxrpc-api_1.1_spec/pom.xml
META-INF/maven/org.jboss.spec.javax.xml.rpc/jboss-jaxrpc-api_1.1_spec/pom.properties
META-INF/INDEX.LIST
|
依赖Jar: |
jboss-servlet-api_3.1_spec-1.0.2.Final.jar
/org.jboss.spec.javax.servlet/jboss-servlet-api_3.1_spec/1.0.2.Final
查看jboss-servlet-api_3.1_spec所有版本文件
|