MVN

org.kuali.db.impex : impex-legacy-bundle

Maven & Gradle

Nov 06, 2011

Legacy Impex Tool · This project creates a bundle of the Impex legacy tool that is decoupled from Subversion. It creates a jar file that has the exact same binaries, source, directory structure, and layout as the Impex contained inside Subversion. Since it is published as a versioned jar file, it can be referenced in other processes (like the Rice binary release process) without those processes needing the ability to connect back to Subversion to check out the tool. Processes that need access to the legacy Impex tool can thus express a normal maven dependency in order to obtain it.

<dependency>
    <groupId>org.kuali.db.impex</groupId>
    <artifactId>impex-legacy-bundle</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.kuali.db.impex : impex-legacy-bundle to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of org.kuali.db.impex : impex-legacy-bundle to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
impex-legacy-bundle-1.0.0

How to add a dependency to Maven

Add the following org.kuali.db.impex : impex-legacy-bundle maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.kuali.db.impex</groupId>
    <artifactId>impex-legacy-bundle</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.kuali.db.impex : impex-legacy-bundle gradle dependency to your build.gradle file:

implementation 'org.kuali.db.impex:impex-legacy-bundle:1.0.0'

Gradle Kotlin DSL: Add the following org.kuali.db.impex : impex-legacy-bundle gradle kotlin dependency to your build.gradle.kts file:

implementation("org.kuali.db.impex:impex-legacy-bundle:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.kuali.db.impex : impex-legacy-bundle sbt scala dependency to your build.sbt file:

libraryDependencies += "org.kuali.db.impex" % "impex-legacy-bundle" % "1.0.0"