You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by "Chau, Jimmy" <jc...@tickets.com> on 2010/05/26 20:21:57 UTC

limiting verbose level of jspc-maven-plugin

The jspc-maven-plugin by default gives info message about every jsp
being compiled. 

 

How do I turn off the info message? What is the integer value for
<verbose> to turn info off? Tried a couple of random ones and didn't
seem to work?

 


            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jspc-maven-plugin</artifactId>

                

<configuration>


                <verbose>0</verbose>


                </configuration>


                <executions>
                    <execution>
                        <id>jspc</id>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <webXml>${basedir}/target/jspweb.xml</webXml>
                </configuration>
            </plugin>