Hi, Jigar
I don't think it's possible. We have a compile dependency for Jetty for a
reason. You can try to exclude the dependencies in Maven, but I doubt that
it will work.
Have you tried to check changes in Jetty configuration between 0.6 and 0.7.1?
Especially the parameter idleTimeout? If you use Apache Client with a
connection pool, the pool can contain stale connections already closed by
Jetty. If the client uses a stale connections, an I/O error happens.
By default Apache Client works around it by testing that a connection is stale,
but it's sometimes disabled for performance reason.
Check the client configuration and if errors happen after periods of
inactivity.
Artem