Can't i have commons-httpclient.jar
and httpclient-4.2.3 jar
as referenced libraries in my project build path ?
The ant-build fails with message
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
I tried passing -Xlint:unchecked option to javac within ant, and now all my unchecked castings in the projects are getting thrown as errors and warnings. Is there a way to successfully build my project by having both jars ?
Any help is appreciated
Thanks