Skip to main content

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

Thanks for quick response and sharing tree structure. I will look into it.

On Tue, May 30, 2017 at 3:22 PM, Greg Wilkins <gregw@xxxxxxxxxxx> wrote:
gregw@Tile440: ~/src/jetty-9.4.x/apache-jsp ((jetty-9.4.5.v20170502))
[2014] mvn dependency:tree
[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building Jetty :: Apache JSP Implementation 9.4.5.v20170502
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-dependency-plugin:3.0.0:tree (default-cli) @ apache-jsp ---
[INFO] org.eclipse.jetty:apache-jsp:jar:9.4.5.v20170502
[INFO] +- org.eclipse.jetty:jetty-util:jar:9.4.5.v20170502:compile
[INFO] +- org.eclipse.jetty.toolchain:jetty-schemas:jar:3.1:compile
[INFO] +- javax.servlet:javax.servlet-api:jar:3.1.0:compile
[INFO] +- org.mortbay.jasper:apache-jsp:jar:8.5.9.1:compile
[INFO] |  \- org.mortbay.jasper:apache-el:jar:8.5.9.1:compile
[INFO] +- org.eclipse.jdt.core.compiler:ecj:jar:4.4.2:compile
[INFO] +- org.eclipse.jetty:jetty-servlet:jar:tests:9.4.5.v20170502:test
[INFO] |  \- org.eclipse.jetty:jetty-security:jar:9.4.5.v20170502:test
[INFO] |     \- org.eclipse.jetty:jetty-server:jar:9.4.5.v20170502:test
[INFO] |        +- org.eclipse.jetty:jetty-http:jar:9.4.5.v20170502:test
[INFO] |        \- org.eclipse.jetty:jetty-io:jar:9.4.5.v20170502:test
[INFO] +- org.eclipse.jetty:jetty-servlet:jar:9.4.5.v20170502:test
[INFO] \- org.eclipse.jetty.toolchain:jetty-test-helper:jar:4.0:test
[INFO]    +- junit:junit:jar:4.12:test
[INFO]    |  \- org.hamcrest:hamcrest-core:jar:1.3:test
[INFO]    \- org.hamcrest:hamcrest-library:jar:1.3:test
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.905 s
[INFO] Finished at: 2017-05-30T21:21:44+02:00
[INFO] Final Memory: 22M/407M
[INFO] ------------------------------------------------------------------------


On 30 May 2017 at 20:40, upendar devu <devulapalli8@xxxxxxxxx> wrote:
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>


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev



--

_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


Back to the top