If you are running Jetty from mvn (mvn jetty:run) you can use this setting in your pom.xml to enable white spaces and enable stacktraces in the browser:

                        <plugin>
                                <groupId>org.mortbay.jetty</groupId>
                                <artifactId>maven-jetty-plugin</artifactId>
                                <configuration>
                                        <systemProperties>
                                                <systemProperty>
                                                        
<name>tapestry.compress-whitespace</name>
                                                        <value>false</value>
                                                </systemProperty>               
                                                  
                                                <systemProperty>
                                                        
<name>tapestry.production-mode</name>
                                                        <value>false</value>
                                                </systemProperty>
                                        </systemProperties>
                                </configuration>
                        </plugin>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to