Skip to content

Commit 11e6f8d

Browse files
committed
Build jsps with jetty-ee8-jspc-maven-plugin
Use same jetty version that we ship with instead of old Jetty 10 jspc maven plugin. This version finally allows to set the source/target compiler version to Java 21 to match the BREE.
1 parent 7b47341 commit 11e6f8d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ua/org.eclipse.help.webapp/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
<build>
2424
<plugins>
2525
<plugin>
26-
<groupId>org.eclipse.jetty</groupId>
27-
<artifactId>jetty-jspc-maven-plugin</artifactId>
28-
<version>10.0.24</version>
26+
<groupId>org.eclipse.jetty.ee8</groupId>
27+
<artifactId>jetty-ee8-jspc-maven-plugin</artifactId>
28+
<version>12.0.19</version>
2929
<executions>
3030
<execution>
3131
<id>jspc</id>
@@ -38,8 +38,8 @@
3838
</jspc>
3939
<webAppSourceDirectory>${basedir}</webAppSourceDirectory>
4040
<useProvidedScope>true</useProvidedScope>
41-
<sourceVersion>17</sourceVersion>
42-
<targetVersion>17</targetVersion>
41+
<sourceVersion>21</sourceVersion>
42+
<targetVersion>21</targetVersion>
4343
</configuration>
4444
</execution>
4545
</executions>

0 commit comments

Comments
 (0)