在GWT项目结构上运行jspc maven插件

时间:2011-04-28 03:48:01

标签: jsp gwt maven-2

我的基于GWT的Web应用程序遵循GWT项目结构,就像

中描述的那样

GWT Standard Directory and Package Layout

该项目在项目中几乎没有JSP,我想使用JSPC插件进行预编译和打包。

我已将maven插件添加为

<plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jspc-maven-plugin</artifactId>
            <executions>
                <execution>
                    <id>jspc</id>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                    <configuration>
                        <warSourceDirectory>${basedir}/war</warSourceDirectory>                         
                    </configuration>
                </execution>
            </executions>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.1</version>
            <configuration>
                <webappDirectory>${gwt.output.directory}</webappDirectory>
                ....

                <webXml>${basedir}/target/jspweb.xml</webXml>   
                <injectString>&lt;!-- [INSERT FRAGMENT HERE] --&gt;</injectString>
            </configuration>
        </plugin>

但在运行时,我收到以下错误

Failed to execute goal org.codehaus.mojo:jspc-maven-plugin:1.4.6:compile (jspc) on project fqng-webapp: JSPC Error: C:\MyWorkSpace\XXX\YYYY\src\main\webapp\WEB-INF\web.xml (The system cannot find the path specified) -> [Help 1]

似乎JSP Compiler正在寻找基于maven webapp结构的web.xml。有没有办法配置JSPC插件以使用GWT项目结构?

0 个答案:

没有答案