pelam-scala-csv
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fi.pelam</groupId> <artifactId>pelam-scala-csv</artifactId> <version>1.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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"> <modelVersion>4.0.0</modelVersion> <groupId>fi.pelam</groupId> <artifactId>pelam-scala-csv</artifactId> <version>1.1.0</version> <name>Pelam's Scala CSV Library</name> <description> Scala library for reading and writing CSV data with an optional high level API. Supports structured access to tabular data and a form of CSV format detection. </description> <url>https://github.com/pelamfi/pelam-scala-csv/blob/master/readme.md</url> <inceptionYear>2015</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>pelam</id> <name>Peter Lamberg</name> </developer> </developers> <scm> <connection>scm:git:https://github.com/pelamfi/pelam-scala-csv.git</connection> <url>https://github.com/pelamfi/pelam-scala-csv</url> </scm> <dependencies> <dependency> <groupId>com.beachape</groupId> <artifactId>enumeratum_2.11</artifactId> <version>1.2.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>2.11.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.11</artifactId> <version>2.2.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>16.0</version> <scope>test</scope> </dependency> </dependencies> </project>