diff options
| author | Thanh Ha | 2013-01-11 18:01:44 +0000 |
|---|---|---|
| committer | Paul Webster | 2013-01-11 18:01:44 +0000 |
| commit | 6fb89fb456932aa71a150ce12ae9a02a0e066457 (patch) | |
| tree | 80e7a3f45ea2a4b1d8ec031ccc2d2baa8789048a | |
| parent | f34c3676468ab6768dd41ff500266878914498c6 (diff) | |
| download | eclipse.platform.ua-6fb89fb456932aa71a150ce12ae9a02a0e066457.tar.gz eclipse.platform.ua-6fb89fb456932aa71a150ce12ae9a02a0e066457.tar.xz eclipse.platform.ua-6fb89fb456932aa71a150ce12ae9a02a0e066457.zip | |
Bug 385967 - [CBI] ./eclipse.platform.ua/org.eclipse.help.webapp/ compiles JSPs using customBuildCallbacks
use jetty-jspc-maven-plugin to compile the jsps
| -rw-r--r-- | org.eclipse.help.webapp/pom.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/org.eclipse.help.webapp/pom.xml b/org.eclipse.help.webapp/pom.xml index 079ec6fa9..7256383a1 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.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>.</webAppSourceDirectory> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> |
