I'm prepping a Google Data + App Engine article right now which uses the Java runtime. This is what I have regarding dependencies, specifically for the Documents List service:
--------------------------------------------------- To use the Google Data client library ( http://code.google.com/p/gdata-java-client/) in your App Engine application, you must first copy the JARs listed below from the lib directory of the gdata-java-client package to your app's war/WEB-INF/lib directory: gdata-client-1.0.jar gdata-client-meta-1.0.jar gdata-core-1.0.jar gdata-docs-3.0.jar gdata-docs-meta-3.0.jar gdata-media-1.0.jar google-collect-1.0-rc1.jar (from gdata/java/deps) Once all of these JARs are copied into war/WEB-INF/lib, they must be added to your app's build path. If you are building your application in Eclipse, just follow the instructions at http://www.wikihow.com/Add-JARs-to-Project-Build-Paths-in-Eclipse-%28Java%29. Otherwise, if you are using the sample ant build.xml file at http://code.google.com/appengine/docs/java/tools/ant.html#The_Complete_Build_File, all JARs in war/WEB-INF/lib should be added to your app's build path automatically. --------------------------------------------------- If you are not using the Google Documents List API, you will have to replace gdata-docs-3.0.jar and gdata-docs-meta-3.0.jar with the JARs for the service you're trying to use. Also, be sure you're following this FAQ: http://code.google.com/appengine/kb/java.html#googledata I hope this helps. - Jason On Wed, Mar 31, 2010 at 12:27 AM, Jeevan <[email protected]> wrote: > hello, > i am a final year computer science engineering student, am doing a > project called cloud based teaching system and am using blog as a part > of application. > We need include client libraries.Am using Eclipse 3.5.Am not getting > in which path we need to include those libraries and how. > please help me. > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-appengine%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
