Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2013-01-11 18:03:36 +0000
committerPaul Webster2013-01-11 18:03:36 +0000
commit54ac80a9db5388c0a0a6a45c44dfddf5a4e7b019 (patch)
treecf7769052641638be17bc4adaa097fde94d22323
parentf6bcb461a3fc27e8860b7e176419d842547cc46b (diff)
downloadeclipse.platform.ua-54ac80a9db5388c0a0a6a45c44dfddf5a4e7b019.tar.gz
eclipse.platform.ua-54ac80a9db5388c0a0a6a45c44dfddf5a4e7b019.tar.xz
eclipse.platform.ua-54ac80a9db5388c0a0a6a45c44dfddf5a4e7b019.zip
Bug 385967 - [CBI] ./eclipse.platform.ua/org.eclipse.help.webapp/ compiles JSPs using customBuildCallbacks
compile JSPs using jetty-jspc-maven-plugin
-rw-r--r--org.eclipse.help.webapp/pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/org.eclipse.help.webapp/pom.xml b/org.eclipse.help.webapp/pom.xml
index 458a12c6b..b555eaf02 100644
--- a/org.eclipse.help.webapp/pom.xml
+++ b/org.eclipse.help.webapp/pom.xml
@@ -22,4 +22,26 @@
<artifactId>org.eclipse.help.webapp</artifactId>
<version>3.6.200-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty-jspc-maven-plugin</artifactId>
+ <version>8.1.8.v20121106</version>
+ <executions>
+ <execution>
+ <id>jspc</id>
+ <goals>
+ <goal>jspc</goal>
+ </goals>
+ <configuration>
+ <packageRoot>org.eclipse.help.internal.webapp.jsp</packageRoot>
+ <webAppSourceDirectory>.</webAppSourceDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top