.java files do not show up in the "Source code" popup of the examples
---------------------------------------------------------------------

                 Key: WICKET-3482
                 URL: https://issues.apache.org/jira/browse/WICKET-3482
             Project: Wicket
          Issue Type: Bug
          Components: wicket-examples
    Affects Versions: 1.5-RC2
            Reporter: Bertrand Guay-Paquet
            Priority: Minor


.java files do not show up in the "Source code" popup of the examples. Other 
files do appear however.

This happens when executing "mvn jetty:run" in the src\wicket-examples 
directory.

One way to fix this is to add the following in src\wicket-examples\pom.xml at 
the begining of the <build> section :
                <resources>
                        <resource>
                                <filtering>false</filtering>
                                <directory>${basedir}/src/main/java</directory>
                                <includes>
                                        <include>**/*.java</include>
                                </includes>
                        </resource>
                </resources>



-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to