You can download jboss-jaxr-api_1.0_spec-1.0.2.final.jar in this page.
Common Development and Distribution License
jboss-jaxr-api_1.0_spec-1.0.2.final.jar file has the following types.
META-INF.maven.org.jboss.spec.javax.xml.registry.jboss-jaxr-api_1.0_spec.pom.properties META-INF.maven.org.jboss.spec.javax.xml.registry.jboss-jaxr-api_1.0_spec.pom.xml META-INF/INDEX.LIST META-INF/LICENSE META-INF/MANIFEST.MF META-INF/README javax.xml.registry.BulkResponse.class javax.xml.registry.BusinessLifeCycleManager.class javax.xml.registry.BusinessQueryManager.class javax.xml.registry.CapabilityProfile.class javax.xml.registry.Connection.class javax.xml.registry.ConnectionFactory.class javax.xml.registry.DeclarativeQueryManager.class javax.xml.registry.DeleteException.class javax.xml.registry.FederatedConnection.class javax.xml.registry.FindException.class javax.xml.registry.FindQualifier.class javax.xml.registry.InvalidRequestException.class javax.xml.registry.JAXRException.class javax.xml.registry.JAXRResponse.class javax.xml.registry.LifeCycleManager.class javax.xml.registry.Query.class javax.xml.registry.QueryManager.class javax.xml.registry.RegistryException.class javax.xml.registry.RegistryService.class javax.xml.registry.SaveException.class javax.xml.registry.UnexpectedObjectException.class javax.xml.registry.UnsupportedCapabilityException.class javax.xml.registry.infomodel.Association.class javax.xml.registry.infomodel.AuditableEvent.class javax.xml.registry.infomodel.Classification.class javax.xml.registry.infomodel.ClassificationScheme.class javax.xml.registry.infomodel.Concept.class javax.xml.registry.infomodel.EmailAddress.class javax.xml.registry.infomodel.ExtensibleObject.class javax.xml.registry.infomodel.ExternalIdentifier.class javax.xml.registry.infomodel.ExternalLink.class javax.xml.registry.infomodel.ExtrinsicObject.class javax.xml.registry.infomodel.InternationalString.class javax.xml.registry.infomodel.Key.class javax.xml.registry.infomodel.LocalizedString.class javax.xml.registry.infomodel.Organization.class javax.xml.registry.infomodel.PersonName.class javax.xml.registry.infomodel.PostalAddress.class javax.xml.registry.infomodel.RegistryEntry.class javax.xml.registry.infomodel.RegistryObject.class javax.xml.registry.infomodel.RegistryPackage.class javax.xml.registry.infomodel.Service.class javax.xml.registry.infomodel.ServiceBinding.class javax.xml.registry.infomodel.Slot.class javax.xml.registry.infomodel.SpecificationLink.class javax.xml.registry.infomodel.TelephoneNumber.class javax.xml.registry.infomodel.URIValidator.class javax.xml.registry.infomodel.User.class javax.xml.registry.infomodel.Versionable.class
jboss-jaxr-api_1.0_spec-1.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.registry</groupId> <artifactId>jboss-jaxr-api_1.0_spec</artifactId> <version>1.0.2.Final</version> <name>Java(TM) API for XML Registries 1.0 (JAXR)</name> <description>JSR 93: Java(TM) API for XML Registries 1.0 (JAXR)</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-jaxr-api_spec.git</connection> <developerConnection>scm:git:git@github.com:jboss/jboss-jaxr-api_spec.git</developerConnection> <url>https://github.com/jboss/jboss-jaxr-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 93: Java(TM) API for XML Registries 1.0 (JAXR)</Specification-Title> <Specification-Vendor>Oracle</Specification-Vendor> <Specification-Version>1.0</Specification-Version> <!-- Set the package version to match the spec version --> <Export-Package> javax.xml.registry*;version=1.0 </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 93: Java(TM) API for XML Registries 1.0 (JAXR)</Specification-Title> <Specification-Vendor>Oracle</Specification-Vendor> <Specification-Version>1.0</Specification-Version> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <dependencies> <!-- TODO: this should be changed to a JBoss spec jar --> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1</version> <scope>provided</scope> </dependency> </dependencies> </project>
<dependency> <groupId>org.jboss.spec.javax.xml.registry</groupId> <artifactId>jboss-jaxr-api_1.0_spec</artifactId> <version>1.0.2.final</version> </dependency>
If you think the following jboss-jaxr-api_1.0_spec-1.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-jaxr-api_1.0_spec-1.0.2.final.jar file