Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-dev] Jetty migration from 8.1.4 to 9.4.5 -- Need Jetty-jsp version

we are upgrading Jetty version from 8.1.4 to latest stable version 9.4.5.


We are using below libraries and also listed its maven dependencies. We could not able to find jetty-jsp  with 9.4.5 version. 

Could you please let me know which version of jetty-jsp we need to use ?

Thanks



-  jetty-xml-8.1.4.v20120524.jar
- jetty-webapp-8.1.4.v20120524.jar
- jetty-servlet-8.1.4.v20120524.jar
- jetty-security-8.1.4.v20120524.jar
- jetty-continuation-8.1.4.v20120524.jar
- jetty-util-8.1.4.v20120524.jar
- jetty-server-8.1.4.v20120524.jar
- jetty-io-8.1.4.v20120524.jar
- jetty-http-8.1.4.v20120524.jar
- jetty-client-8.1.4.v20120524.jar
- jetty-jsp-8.1.4.v20120524.jar


<jetty.version>8.1.4.v20120524</jetty.version>


<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
<scope>${default.dependency.scope}</scope>
</dependency>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp</artifactId>
<version>${jetty.version}</version>
<scope>${default.dependency.scope}</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
<version>${jetty.version}</version>
<scope>${default.dependency.scope}</scope>
</dependency>

<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
<version>${jetty.version}</version>
<executions>
<execution>
<id>jspc</id>
<goals>
<goal>jspc</goal>
</goals>
<configuration>
<packageRoot>org.apache.jsp</packageRoot>
</configuration>
</execution>
</executions>
 </plugin>


Back to the top