Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.5-RC2
Description
.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>