I\'m running a Java application and had the following error:
java.lang.ClassNotFoundException: org.apache.http.util.Args
I belie
And for the future: typically, your favorite search engine can tell you which jar file you need; searching for
"org.apache.http.util.Args which jar"
directly send me to
http://www.java2s.com/Code/Jar/h/Downloadhttpcore43beta1jar.htm
You need to add the follwoing dependency:
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4</version>
</dependency>