JSP issues with maven build

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

Resolved this by adding the following to pom.xml

org.apache.tomcat
jasper
6.0.35

Note that we’ll be finishing up much better maven support into the develop branch shortly (some of it is already there) and we’ve put up a nexus repository. We haven’t decided whether to move completely over to maven yet, but we’re thinking about it.

This is fixed on the develop branch and will be in 1.2

please move to maven.
among other benefits that would save me hours of IDE configuration by enabling Intellij to simple open the pom file.

If you install the IvyIDEA plugin and open the OG-Platform project file for it should work without any additional configuration. Have you tried the steps here?

http://docs.opengamma.com/display/DOC/Setting+up+IntelliJ+IDEA

If it doesn’t work for you let me know and I’ll look into it.

Chris