/common/lib is part of the server's classpath. /client is not part of the classpath, it's there to provide the JARs that any clients of the server may need to interact with it.
As to why commons-lang is in /client but not /common/lib, I don't know, but it's likely there to satisfy a dependency of something else in /client.
I recommend against changing the contents of /common/lib. The JARs in there are very specific, and are used by the server itself. If your application requires commons-lang, it should go in the WAR or EAR's private lib directory.