Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] jsp support lib?

You can use the handy dependency that brings all the other necessary ones:

<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp</artifactId>
<version>${jetty-version}</version>

Jan

On 27 February 2013 15:04, S Ahmed <sahmed1020@xxxxxxxxx> wrote:
> My pom.xml so far has:
>
>  <jetty-version>7.6.9.v20130131</jetty-version>
> ..
>
>  <dependency>
>             <artifactId>jetty-server</artifactId>
>             <groupId>org.eclipse.jetty</groupId>
>             <version>${jetty-version}</version>
>         </dependency>
>         <dependency>
>             <groupId>org.eclipse.jetty</groupId>
>             <artifactId>jetty-servlet</artifactId>
>             <version>${jetty-version}</version>
>         </dependency>
>         <dependency>
>             <groupId>org.eclipse.jetty</groupId>
>             <artifactId>jetty-webapp</artifactId>
>             <version>${jetty-version}</version>
>         </dependency>
>
>
> Which jetty libraries do I need for jsp support?  (this is a spring mvc app)
>
> I have seen others use:
>
>   <dependency>
>             <groupId>org.eclipse.jetty</groupId>
>             <artifactId>jetty-jsp-2.1</artifactId>
>             <version>7.2.2.v20101205</version>
>         </dependency>
>         <dependency>
>             <groupId>org.mortbay.jetty</groupId>
>             <artifactId>jsp-2.1-glassfish</artifactId>
>             <version>2.1.v20100127</version>
>         </dependency>
>
> But can't seem to find the same versions for 7.6.9...
>
> _______________________________________________
> jetty-users mailing list
> jetty-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/jetty-users
>



-- 
Jan Bartel <janb@xxxxxxxxxxx>
www.webtide.com – Developer advice, services and support
from the Jetty & CometD experts.


Back to the top