Sorry for spamming but I still can't get a working version.
This is what I did based on the suggestions here.
1) I've checked out a latest shindig version.
2) I added a Guice module
"org.apache.shindig.social.opensocial.jpa.spi.JPASocialModule:"
into java/server/src/main/webapp/WEB-INF/web.xml
3) I added java/samples into shindig/pom.xml for profile "all"
<profile>
<id>all</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>features</module>
<module>java/common</module>
<module>java/gadgets</module>
<module>java/social-api</module>
<module>java/samples</module>
<module>java/server</module>
<module>extras</module>
</modules>
</profile>
4) I compile the code with command
mvn package -Dmaven.test.skip
5) Than I go to the java/server and run "mvn jetty:run"
However it can't find a class
org.apache.shindig.social.opensocial.jpa.spi.JPASocialModule
java.lang.RuntimeException: java.lang.ClassNotFoundException:
org.apache.shindig.social.opensocial.jpa.spi.JPASocialModule
at
org.apache.shindig.common.servlet.GuiceServletContextListener.contextInitialized(GuiceServletContextListener.java:63)
I would be very happy if somebody could help or give a hint on what I am
doing wrong
Thanks in advance
Evgeny