Skip to content

Commit

Permalink
OF-2717: Plugins should use JSP compiler from new Jetty
Browse files Browse the repository at this point in the history
In this version of Openfire, Jetty is updated from 10 to 12 (using EE8). When a plugin compiles its JSPs against this version of Openfire, it should use the JSP-compiler of that Jetty version (the Maven artifacts of the compiler have changed).
  • Loading branch information
guusdk committed Nov 15, 2024
1 parent abc77eb commit e032592
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@
</plugin>
<!-- Compile the JSP pages -->
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
<groupId>org.eclipse.jetty.ee8</groupId>
<artifactId>jetty-ee8-jspc-maven-plugin</artifactId>
<version>${jetty.version}</version>
<configuration>
<webAppSourceDirectory>${project.build.sourceDirectory}/../web</webAppSourceDirectory>
Expand Down

0 comments on commit e032592

Please sign in to comment.