Codec.
The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities..
Here is the list of declaration for commons-codec. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for commons-codec is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following table lists the most popular artifacts which are depending on commons-codec-1.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Http | commons-httpclient 3.0 The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. | 37 |
Document Database | cassandra-all 0.7.0 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 6 |
Document Database | cassandra-all 2.0.4 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 9 |
Http | commons-httpclient 3.0.1 The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. | 77 |
Document Database | cassandra-all 1.2.6 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 12 |
Document Database | cassandra-all 1.2.11 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 32 |
Http | commons-httpclient 3.1 The HttpClient component supports the client-side of RFC 1945 (HTTP/1.0) and RFC 2616 (HTTP/1.1) , several related specifications (RFC 2109 (Cookies) , RFC 2617 (HTTP Authentication) , etc.), and provides a framework by which new request types (methods) or HTTP extensions can be created easily. | 430 |
Document Database | cassandra-all 1.1.5 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 5 |
The following plugins are used in the commons-codec-1.2.jar
The following packages are defined in the commons-codec-1.2.jar
org.apache.commons.codec org.apache.commons.codec.binary org.apache.commons.codec.digest org.apache.commons.codec.language org.apache.commons.codec.net
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <name>Codec</name> <version>1.2</version> <description>The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.</description> <issueManagement> <url>http://nagoya.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Commons&component=Codec&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&newqueryname=&order=Reuse+same+sort+as+last+time</url> </issueManagement> <inceptionYear>2002</inceptionYear> <contributors> <contributor> <name>Christopher O'Brien</name> <email>siege@preoccupied.net</email> </contributor> <contributor> <name>Martin Redington</name> </contributor> <contributor> <name>Jeffery Dever</name> </contributor> <contributor> <name>Steve Zimmermann</name> <email>steve.zimmermann@heii.com</email> </contributor> <contributor> <name>Benjamin Walstrum</name> <email>ben@walstrum.com</email> </contributor> <contributor> <name>Oleg Kalnichevski</name> <email>oleg@ural.ru</email> </contributor> <contributor> <name>Dave Dribin</name> <email>apache@dave.dribin.org</email> </contributor> </contributors> <build> <testResources> <testResource> <directory>${pom.build.unitTestSourceDirectory}</directory> <includes> <include>**/*.xml</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/*AbstractTest.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>