MVN

org.apache.excalibur.components : excalibur-datasource

Maven & Gradle

Apr 29, 2007
5 usages

Excalibur Datasource · Avalon Excalibur's DataSource package allows you to manage pooled connections in one of two ways. You can have the package handle it for you, or you can use a J2EE server's DataSource management. It provides the same kind of access regardless of which method you choose, since they are obtained through Avalon's Component Manager infrastructure. The DataSource package requires that you load the necessary driver classes at init time, but it will take care of all necessary issues from there.

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

Latest Version

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

  • Latest Stable: 2.2.2

All Versions

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

Version Vulnerabilities Updated
2.2.x
excalibur-datasource-2.2.2
excalibur-datasource-2.2.1

How to add a dependency to Maven

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

<dependency>
    <groupId>org.apache.excalibur.components</groupId>
    <artifactId>excalibur-datasource</artifactId>
    <version>2.2.2</version>
</dependency>

How to add a dependency to Gradle

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

implementation 'org.apache.excalibur.components:excalibur-datasource:2.2.2'

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

implementation("org.apache.excalibur.components:excalibur-datasource:2.2.2")

How to add a dependency to SBT Scala

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

libraryDependencies += "org.apache.excalibur.components" % "excalibur-datasource" % "2.2.2"

Advertisement