MVN

org.everit.osgi.bundles : org.everit.osgi.bundles.javax.sql

Maven & Gradle

Apr 01, 2014

JDBC 4.1 API · OSGi bundle that contains the JDBC API coming from OpenJDK 1.7. In case of OSGi, it is better to exclude javax.sql.*, com.sun.rowset.* and javax.transaction.* packages from the boot classpath and use them from bundles. Very often javax.transaction.* packages are used from a custom bundle. As javax.sql.XADataSource wires to that package, it is logical to have that in a custom bundle as well so there will be no package wiring issues.

<dependency>
    <groupId>org.everit.osgi.bundles</groupId>
    <artifactId>org.everit.osgi.bundles.javax.sql</artifactId>
    <version>4.1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.everit.osgi.bundles : org.everit.osgi.bundles.javax.sql to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 4.1.0

All Versions

Choose a version of org.everit.osgi.bundles : org.everit.osgi.bundles.javax.sql to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
4.1.x
org.everit.osgi.bundles.javax.sql-4.1.0
4.0.x
org.everit.osgi.bundles.javax.sql-4.0.0

How to add a dependency to Maven

Add the following org.everit.osgi.bundles : org.everit.osgi.bundles.javax.sql maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.everit.osgi.bundles</groupId>
    <artifactId>org.everit.osgi.bundles.javax.sql</artifactId>
    <version>4.1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.everit.osgi.bundles : org.everit.osgi.bundles.javax.sql gradle dependency to your build.gradle file:

implementation 'org.everit.osgi.bundles:org.everit.osgi.bundles.javax.sql:4.1.0'

Gradle Kotlin DSL: Add the following org.everit.osgi.bundles : org.everit.osgi.bundles.javax.sql gradle kotlin dependency to your build.gradle.kts file:

implementation("org.everit.osgi.bundles:org.everit.osgi.bundles.javax.sql:4.1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.everit.osgi.bundles : org.everit.osgi.bundles.javax.sql sbt scala dependency to your build.sbt file:

libraryDependencies += "org.everit.osgi.bundles" % "org.everit.osgi.bundles.javax.sql" % "4.1.0"