Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2014-11-27 09:20:15 +0000
committerAlexander Kurtakov2014-11-27 09:20:15 +0000
commita62fa3dbe16a5121a518cb038f38fff7e3deab20 (patch)
tree4559ebdb095aacea7abe99d1efc52de7c8bb5e37 /org.eclipse.help.webapp
parent96c3ea066a87df928522f6fc7fe018268c352db3 (diff)
downloadeclipse.platform.ua-a62fa3dbe16a5121a518cb038f38fff7e3deab20.tar.gz
eclipse.platform.ua-a62fa3dbe16a5121a518cb038f38fff7e3deab20.tar.xz
eclipse.platform.ua-a62fa3dbe16a5121a518cb038f38fff7e3deab20.zip
Bug 453379 - Make sure to precompile jsps with the same Jetty version
Use jetty-version property from eclipse-platform-parent pom so jsp files are precompiled with the same Jetty version shipped to minimize possible incompatibilities. A change is groupId is needed for version 9.x of jetty-jspc-maven-plugin. Change-Id: Icbc593dcd9600ffe157f977f0cd8c74aebedfc36 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.help.webapp')
-rw-r--r--org.eclipse.help.webapp/pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.help.webapp/pom.xml b/org.eclipse.help.webapp/pom.xml
index 517ee79fb..9d9ed479f 100644
--- a/org.eclipse.help.webapp/pom.xml
+++ b/org.eclipse.help.webapp/pom.xml
@@ -23,9 +23,9 @@
<build>
<plugins>
<plugin>
- <groupId>org.mortbay.jetty</groupId>
+ <groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
- <version>8.1.8.v20121106</version>
+ <version>${jetty-version}</version>
<executions>
<execution>
<id>jspc</id>

Back to the top