MVN

org.apache.excalibur.components : excalibur-sourceresolve

Maven & Gradle

Jul 05, 2007
8 usages

Excalibur Sourceresolve · A very common problem is resolving a source, which means finding a source using a URI. The source resolver of Avalon Excalibur is a component helping you in this task. It resolves sources from a given URI. The URI can use all available protocols of the JRE. In addition own protocols can be plugged-in. So using the standard protocols like HTTP, FTP or file can be handled in the same way, like dealing with custom, self-build protocols such as myxmldatabase://root/documents/test.xml.

<dependency>
    <groupId>org.apache.excalibur.components</groupId>
    <artifactId>excalibur-sourceresolve</artifactId>
    <version>2.2.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.excalibur.components : excalibur-sourceresolve to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.2.3

All Versions

Choose a version of org.apache.excalibur.components : excalibur-sourceresolve to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.2.x
excalibur-sourceresolve-2.2.3
excalibur-sourceresolve-2.2.2
excalibur-sourceresolve-2.2.1

How to add a dependency to Maven

Add the following org.apache.excalibur.components : excalibur-sourceresolve maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.excalibur.components</groupId>
    <artifactId>excalibur-sourceresolve</artifactId>
    <version>2.2.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.excalibur.components : excalibur-sourceresolve gradle dependency to your build.gradle file:

implementation 'org.apache.excalibur.components:excalibur-sourceresolve:2.2.3'

Gradle Kotlin DSL: Add the following org.apache.excalibur.components : excalibur-sourceresolve gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.excalibur.components:excalibur-sourceresolve:2.2.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.excalibur.components : excalibur-sourceresolve sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.excalibur.components" % "excalibur-sourceresolve" % "2.2.3"