Apache Commons Codec Maven Dependency - RameshMF/java-json-processing-tutorial GitHub Wiki

The Apache Commons 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.

Apache Commons Codec Maven Dependency

Copy below Apache Commons Codec maven dependency and paste in your project pom.xml file:

<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
<dependency>
    <groupId>commons-codec</groupId>
    <artifactId>commons-codec</artifactId>
    <version>1.13</version>
</dependency>

Apache Commons Codec Gradle Dependency

Copy below Apache Commons Codec gradle dependency and paste in your project build.gradle file:

// https://mvnrepository.com/artifact/commons-codec/commons-codec
compile group: 'commons-codec', name: 'commons-codec', version: '1.13'

Download JAR File

https://repo1.maven.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.jar

Check for Latest Release

https://mvnrepository.com/artifact/commons-codec/commons-codec

Reference

https://mvnrepository.com/artifact/commons-codec/commons-codec

⚠️ **GitHub.com Fallback** ⚠️