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.
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>
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'
https://repo1.maven.org/maven2/commons-codec/commons-codec/1.13/commons-codec-1.13.jar
https://mvnrepository.com/artifact/commons-codec/commons-codec
https://mvnrepository.com/artifact/commons-codec/commons-codec