jcsv
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.jcsv</groupId> <artifactId>jcsv</artifactId> <version>1.4.0</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.googlecode.jcsv</groupId> <artifactId>jcsv</artifactId> <version>1.4.0</version> <name>jCSV</name> <packaging>jar</packaging> <url>http://code.google.com/p/jcsv/</url> <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> <scm> <url>http://jcsv.googlecode.com/svn/tags/jcsv-1.4.0</url> <connection>scm:svn:http://jcsv.googlecode.com/svn/tags/jcsv-1.4.0</connection> <developerConnection>scm:svn:https://jcsv.googlecode.com/svn/tags/jcsv-1.4.0</developerConnection> </scm> <developers> <developer> <id>eikeb</id> <name>Eike Bergmann</name> <email>skironnet@gmail.com</email> <roles> <role>architect</role> <role>developer</role> </roles> </developer> </developers> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>create-sources-jar</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <encoding>UTF-8</encoding> <destDir>apidocs</destDir> </configuration> <executions> <execution> <id>build-javadoc</id> <goals> <goal>javadoc</goal> </goals> </execution> <execution> <id>create-javadoc-jar</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <description>jCSV is a simple CSV library for Java</description> </project>