I created a package out of the new maven pom made available.
I was able to bring the server up by resolving the dependencies using maven and starting the jar using the script.
Now am not able to see the analytics page
PAGE SCREENSHOT - http://twitpic.com/a45pv9/full
MY POM - https://gist.github.com/3053490
Here i have given following jetty dependencies -
org.eclipse.jetty
jetty-servlets
7.0.1.v20091125
org.eclipse.jetty
jetty-start
7.1.0.v20100505
org.eclipse.jetty
jetty-webapp
7.0.1.v20091125
org.eclipse.jetty
jetty-jsp-2.1
7.1.0.v20100505
org.eclipse.jetty
jetty-security
7.0.1.v20091125
But then i noticed that there are 2 jar files obtained using ivy build which i cant duplicate in maven build , they are -
./cache/org.eclipse/jetty/jars/jsp-api-2.1-7.0.1.v20091125.jar
./cache/org.eclipse/jetty/jars/jsp-2.1-7.0.1.v20091125.jar
I could only get the following alternatives for them in maven -
org/eclipse/jetty/jetty-jsp-2.1/7.1.0.v20100505/jetty-jsp-2.1-7.1.0.v20100505.jar
It would be helpful if someone can tell me what i am missing here.
Thanks
Vineeth