Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] Dependency sensitive for JSP support

Hi,

I just thought I would inform  you  that it is unusually 
Sensitive to jsp support. 

As soon I changed the  jsp support versions  ending with 20 the JSP  starting working. Making absolutely no code changes or any other changes and no error messages of any kind. Just didn't work before.

jetty.version>9.4.38.v20210224</jetty.version>
<jsp.version>9.4.35.v20201120</jsp.version>

</properties>

<dependencies>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jsp</artifactId>
<version>${jsp.version}</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>apache-jstl</artifactId>
<version>${jsp.version}</version>
<type>pom</type>
</dependency>

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

Back to the top