You can download xml-resolver-1.2.0.jar in this page.
Apache License, Version 2.0
xml-resolver-1.2.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.lucee/xml-resolver/pom.properties META-INF/maven/org.lucee/xml-resolver/pom.xml org.apache.xml.resolver.Catalog.class org.apache.xml.resolver.CatalogEntry.class org.apache.xml.resolver.CatalogException.class org.apache.xml.resolver.CatalogManager.class org.apache.xml.resolver.Resolver.class org.apache.xml.resolver.Version.class org.apache.xml.resolver.apps.XParseError.class org.apache.xml.resolver.apps.resolver.class org.apache.xml.resolver.apps.xparse.class org.apache.xml.resolver.apps.xread.class org.apache.xml.resolver.helpers.BootstrapResolver.class org.apache.xml.resolver.helpers.Debug.class org.apache.xml.resolver.helpers.FileURL.class org.apache.xml.resolver.helpers.Namespaces.class org.apache.xml.resolver.helpers.PublicId.class org.apache.xml.resolver.readers.CatalogReader.class org.apache.xml.resolver.readers.DOMCatalogParser.class org.apache.xml.resolver.readers.DOMCatalogReader.class org.apache.xml.resolver.readers.ExtendedXMLCatalogReader.class org.apache.xml.resolver.readers.OASISXMLCatalogReader.class org.apache.xml.resolver.readers.SAXCatalogParser.class org.apache.xml.resolver.readers.SAXCatalogReader.class org.apache.xml.resolver.readers.SAXParserHandler.class org.apache.xml.resolver.readers.TR9401CatalogReader.class org.apache.xml.resolver.readers.TextCatalogReader.class org.apache.xml.resolver.readers.XCatalogReader.class org.apache.xml.resolver.tools.CatalogResolver.class org.apache.xml.resolver.tools.ResolvingParser.class org.apache.xml.resolver.tools.ResolvingXMLFilter.class org.apache.xml.resolver.tools.ResolvingXMLReader.class org/apache/env/WhichFactory.properties org/apache/env/WhichJar.properties org/apache/xml/resolver/etc/catalog.dtd org/apache/xml/resolver/etc/catalog.rng org/apache/xml/resolver/etc/catalog.xsd org/apache/xml/resolver/etc/xcatalog.dtd
xml-resolver-1.2.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>xml-resolver</artifactId> <version>1.2.0</version> <name>Apache XML Commons Resolver Component</name> <packaging>bundle</packaging> <description>OSGi Version of Apache XML Commons Resolver Component</description> <url>http://maven.lucee.org/xml-resolver/</url> <!-- same license as the original jar --> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </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>xml-resolver</groupId> <artifactId>xml-resolver</artifactId> <version>1.2</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.xml.resolver</Bundle-Name> <Bundle-SymbolicName>org.lucee.xml.resolver</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-xml-resolver</url> <connection>scm:git:git://github.com/lucee/osgi-bundle-xml-resolver.git</connection> <developerConnection>scm:git:git@github.com:lucee/osgi-bundle-xml-resolver.git</developerConnection> <tag>Apache XML Commons Resolver Component 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>xml-resolver</artifactId> <version>1.2.0</version> </dependency>
If you think the following xml-resolver-1.2.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download xml-resolver-1.2.0.jar file