Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-11-28 15:04:19 +0000
committerAlexander Kurtakov2018-12-11 11:15:41 +0000
commit8ee73dcd9ffc78cf965d2f96e6326f25e9c0a6fa (patch)
treee48ee4dd2baca5476a65ac3f689e9c061bc8cf09
parent3494ce2de2354a8ad5649d5fe90ec0397faa8cee (diff)
downloadeclipse.platform.ua-8ee73dcd9ffc78cf965d2f96e6326f25e9c0a6fa.tar.gz
eclipse.platform.ua-8ee73dcd9ffc78cf965d2f96e6326f25e9c0a6fa.tar.xz
eclipse.platform.ua-8ee73dcd9ffc78cf965d2f96e6326f25e9c0a6fa.zip
Bug 453379 - Make sure to precompile jsps with the same Jetty versionI20181211-1800
jetty-jspc-maven-plugin exposes Jasper's JspC directly for configuration instead of mirroring properties. Set the source and target versions to match the bundle BREE. Change-Id: I66267953cec0a21d2f58c06bacdda8dfbd979ceb Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.help.webapp/pom.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/org.eclipse.help.webapp/pom.xml b/org.eclipse.help.webapp/pom.xml
index bc5b39373..74292d654 100644
--- a/org.eclipse.help.webapp/pom.xml
+++ b/org.eclipse.help.webapp/pom.xml
@@ -25,7 +25,7 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
- <version>9.0.7.v20131107</version>
+ <version>9.4.14.v20181114</version>
<executions>
<execution>
<id>jspc</id>
@@ -33,9 +33,13 @@
<goal>jspc</goal>
</goals>
<configuration>
- <packageRoot>org.eclipse.help.internal.webapp.jsp</packageRoot>
+ <jspc>
+ <package>org.eclipse.help.internal.webapp.jsp</package>
+ </jspc>
<webAppSourceDirectory>${basedir}</webAppSourceDirectory>
<useProvidedScope>true</useProvidedScope>
+ <sourceVersion>1.8</sourceVersion>
+ <targetVersion>1.8</targetVersion>
</configuration>
</execution>
</executions>

Back to the top