| 组织ID: |
com.opencsv |
| 项目ID: |
opencsv |
| 版本: |
3.1 |
| 最后修改时间: |
2018-08-02 16:27:31 |
| 包类型: |
jar |
| 标题: |
opencsv |
| 描述: |
A simple library for reading and writing CSV in Java |
| 相关URL: |
http://opencsv.sf.net |
| 大小: |
27.14KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>3.1</version>
</dependency>
|
| Gradle引入代码: |
com.opencsv:opencsv:3.1
|
| 下载Jar包: |
|
| POM文件内容: |
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<packaging>bundle</packaging>
<version>3.1</version>
<name>opencsv</name>
<description>A simple library for reading and writing CSV in Java</description>
<url>http://opencsv.sf.net</url>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<connection>scm:svn:https://opencsv.svn.sourceforge.net/svnroot/opencsv/trunk</connection>
<developerConnection>scm:svn:https://opencsv.svn.sourceforge.net/svnroot/opencsv/trunk</developerConnection>
<url>http://opencsv.svn.sourceforge.net/viewvc/opencsv/</url>
</scm>
<developers>
<developer>
<id>glen-smith</id>
<name>Glen Smith</name>
<email>glen_a_smith@users.sourceforge.net</email>
<url>http://blogs.bytecode.com.au/glen</url>
<timezone>+10</timezone>
</developer>
<developer>
<id>sean-sullivan</id>
<name>Sean Sullivan</name>
<email>sullis@users.sourceforge.net</email>
</developer>
<developer>
<id>scott_conway</id>
<name>Scott Conway</name>
<email>sconway@users.sourceforge.net</email>
</developer>
</developers>
<issueManagement>
<system>Sourceforge</system>
<url>http://sourceforge.net/tracker/?group_id=148905</url>
</issueManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<useIncrementalCompilation>true</useIncrementalCompilation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<descriptorRefs>
<descriptorRef>project</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
<!--
gpg is required for Sonatype's publishing mechanism to central
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<id>enforce-versions</id>
<phase>install</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.7,1.8)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.3</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.7</Bundle-RequiredExecutionEnvironment>
<Export-Package>au.com.bytecode.opencsv.*;version="${project.version}"</Export-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.1.201405082137</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
<configuration>
<siteDirectory>doc/site</siteDirectory>
</configuration>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<!--
Deployment repos provided by Sonatype parent POM. For more info see:
https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide
-->
<site>
<id>opencsv.sf.net</id>
<url>scp://shell.sourceforge.net/home/project-web/opencsv/htdocs</url>
</site>
</distributionManagement>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/com.opencsv/opencsv/pom.properties
META-INF/maven/com.opencsv/opencsv/pom.xml
com.opencsv.CSVIterator.class
com.opencsv.CSVParser.class
com.opencsv.CSVParserBuilder.class
com.opencsv.CSVReader.class
com.opencsv.CSVReaderBuilder.class
com.opencsv.CSVWriter.class
com.opencsv.ResultSetHelper.class
com.opencsv.ResultSetHelperService.class
com.opencsv.bean.BeanToCsv.class
com.opencsv.bean.ColumnPositionMappingStrategy.class
com.opencsv.bean.CsvToBean.class
com.opencsv.bean.CsvToBeanFilter.class
com.opencsv.bean.HeaderColumnNameMappingStrategy.class
com.opencsv.bean.HeaderColumnNameTranslateMappingStrategy.class
com.opencsv.bean.MappingStrategy.class
|
| 依赖Jar: |
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
mockito-core-1.9.5.jar
/org.mockito/mockito-core/1.9.5
查看mockito-core所有版本文件
|