I did the following
- created a new play project using play new projectx
- added all relevant jars needed to access youtube api(through command-line to projectx/lib)
- did play eclipsify and imported the project in eclipse
- added a Java class to models, called YouTubeTest.
- run as "Java application"
it fails saying : in thread "main" java.lang.NoClassDefFoundError:
com/google/common/collect/Maps at com.google.gdata.wireformats.AltRegistry.(AltRegistry.java:118) at com.google.gdata.wireformats.AltRegistry.(AltRegistry.java:100) at com.google.gdata.client.Service.(Service.java:555) at models.YouTubeTest.main(YouTubeTest.java:29) Caused by: java.lang.ClassNotFoundException: com.google.common.collect.Maps at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:190) at java.lang.ClassLoader.loadClass(ClassLoader.java:307) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) at java.lang.ClassLoader.loadClass(ClassLoader.java:248) ... 4 more
I read importing google-collect-rc1.jar will fix it, so I added that jar to projectx/lib did eclipsify again and imported the project in eclipse again. It fails again with same error
I am new to this, so please help me out
Thank you
FIXED!!
I realized the google-collect jar was corrupted, then problem is resolved now
