fuzzy-csv
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.kayr</groupId> <artifactId>fuzzy-csv</artifactId> <version>1.9.1-groovy4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.kayr</groupId> <artifactId>fuzzy-csv</artifactId> <version>1.9.1-groovy4</version> <name>Fuzzy CSV</name> <description>A groovy/java tabular Data (from CSV,SQL,JSON) processing library that supports fuzzy column matching,tranformations/merging/querying etc</description> <url>https://github.com/kayr/fuzzy-csv/</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>kayr</id> <name>Ronald Kayondo</name> <url>https://github.com/kayr/</url> </developer> </developers> <scm> <connection>scm:git:https://github.com/kayr/fuzzy-csv.git</connection> <developerConnection>scm:git:https://github.com/kayr/fuzzy-csv.git</developerConnection> <url>scm:git:https://github.com/kayr/fuzzy-csv.git</url> </scm> <dependencies> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy</artifactId> <version>4.0.13</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy-sql</artifactId> <version>4.0.13</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy-json</artifactId> <version>4.0.13</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.kayr</groupId> <artifactId>phrase-matcher</artifactId> <version>0.1.7</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>log4j</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.opencsv</groupId> <artifactId>opencsv</artifactId> <version>3.8</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>*</artifactId> <groupId>commons-beanutils</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.jakewharton.fliptables</groupId> <artifactId>fliptables</artifactId> <version>1.1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.36</version> <scope>runtime</scope> </dependency> </dependencies> </project>