MVN

io.crums : table-io

Maven & Gradle

Oct 25, 2022
0 stars

io.crums:table-io · A low level library for fixed width tables. Provides methods to sort tables using custom row-order functions, both in memory, and for larger tables, via on disk multi-merge sort. Optional keystone structures may be used to guarantee consistent table state on abnormal shutdown.

<dependency>
    <groupId>io.crums</groupId>
    <artifactId>table-io</artifactId>
    <version>1.0.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of io.crums : table-io to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.3

All Versions

Choose a version of io.crums : table-io to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
table-io-1.0.3
table-io-1.0.2
table-io-1.0.0

How to add a dependency to Maven

Add the following io.crums : table-io maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>io.crums</groupId>
    <artifactId>table-io</artifactId>
    <version>1.0.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following io.crums : table-io gradle dependency to your build.gradle file:

implementation 'io.crums:table-io:1.0.3'

Gradle Kotlin DSL: Add the following io.crums : table-io gradle kotlin dependency to your build.gradle.kts file:

implementation("io.crums:table-io:1.0.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following io.crums : table-io sbt scala dependency to your build.sbt file:

libraryDependencies += "io.crums" % "table-io" % "1.0.3"