Description
When the built jar "GoogleDocs-client.jar" is run, it fails with below error:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/wink/example/GoogleDocsClient
build.xml in "examples\client\GoogleDocs-client" has:
<attribute name="Main-Class" value="org.apache.wink.example.GoogleDocsClient" />
...<java classname="org.apache.wink.example.GoogleDocsClient">
These should instead be:
<attribute name="Main-Class" value="org.apache.wink.example.googledocs.GoogleDocsClient" />
...<java classname="org.apache.wink.example.googledocs.GoogleDocsClient">