MVN

com.github.vldrus : cachedrowset-wrapper

Maven & Gradle

Dec 31, 2017

CachedRowSet Wrapper · A simple javax.sql.rowset.CachedRowSet wrapper. Uses com.sun.rowset.CachedRowSetImpl on Java 1.6. Avoids direct com.sun.rowset.CachedRowSetImpl usage on Java 1.7+ (especially on Java 9 which restricts access to com.sun.rowset package).

<dependency>
    <groupId>com.github.vldrus</groupId>
    <artifactId>cachedrowset-wrapper</artifactId>
    <version>1.0.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.vldrus : cachedrowset-wrapper to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.2

All Versions

Choose a version of com.github.vldrus : cachedrowset-wrapper to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
cachedrowset-wrapper-1.0.2
cachedrowset-wrapper-1.0.1
cachedrowset-wrapper-1.0.0

How to add a dependency to Maven

Add the following com.github.vldrus : cachedrowset-wrapper maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.vldrus</groupId>
    <artifactId>cachedrowset-wrapper</artifactId>
    <version>1.0.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.vldrus : cachedrowset-wrapper gradle dependency to your build.gradle file:

implementation 'com.github.vldrus:cachedrowset-wrapper:1.0.2'

Gradle Kotlin DSL: Add the following com.github.vldrus : cachedrowset-wrapper gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.vldrus:cachedrowset-wrapper:1.0.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.vldrus : cachedrowset-wrapper sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.vldrus" % "cachedrowset-wrapper" % "1.0.2"

Advertisement