Nenhuma Descrição

Justice-love 3cf15c6f8e git ignore 6 anos atrás
..
src 83894fe694 增加工程 6 anos atrás
target 83894fe694 增加工程 6 anos atrás
README.md 83894fe694 增加工程 6 anos atrás
html-plugin.iml 83894fe694 增加工程 6 anos atrás
pom.xml 83894fe694 增加工程 6 anos atrás

README.md

使用方式

通过配置maven插件方式集成使用,配置demo如下:

            <plugin>
                <groupId>com.ai.ipu</groupId>
                <artifactId>html-maven-plugin</artifactId>
                <version>1.0-SNAPSHOT</version>
                <configuration>
                    <serverPagePath>${project.basedir}/src/main/resources/server-page.xml</serverPagePath>
                    <prefix>${project.basedir}/src/main/webapp</prefix>
                    <!--<urlFilter>(.+?\.js)</urlFilter>-->
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>parse</goal>
                        </goals>
                        <phase>compile</phase>
                    </execution>
                </executions>
            </plugin>