Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.webapp/pom.xml')
-rw-r--r--org.eclipse.help.webapp/pom.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/org.eclipse.help.webapp/pom.xml b/org.eclipse.help.webapp/pom.xml
index 079ec6fa9..5c5adfde3 100644
--- a/org.eclipse.help.webapp/pom.xml
+++ b/org.eclipse.help.webapp/pom.xml
@@ -22,4 +22,27 @@
<artifactId>org.eclipse.help.webapp</artifactId>
<version>3.6.101-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>${basedir}</webAppSourceDirectory>
+ <useProvidedScope>true</useProvidedScope>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top