You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Jean-Baptiste Quenot (JIRA)" <ji...@apache.org> on 2007/05/08 22:28:15 UTC

[jira] Commented: (WICKET-319) No java source code in examples

    [ https://issues.apache.org/jira/browse/WICKET-319?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12494394 ] 

Jean-Baptiste Quenot commented on WICKET-319:
---------------------------------------------

Added this in jdk-1.5/wicket-examples/pom.xml:

{code:xml}
        <build>
                <plugins>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-war-plugin</artifactId>
                                <configuration>
                                        <webResources>
                                                <!--+
                                                        | Include Java source code in the examples
                                                        +-->
                                                <resource>
                                                        <directory>${basedir}/src/main/java</directory>
                                                        <targetPath>WEB-INF/classes</targetPath>
                                                        <includes>
                                                                <include>**/*.java</include>
                                                        </includes>
                                                </resource>
                                        </webResources>
                                </configuration>
                        </plugin>
                </plugins>
        </build>
{code}

> No java source code in examples
> -------------------------------
>
>                 Key: WICKET-319
>                 URL: https://issues.apache.org/jira/browse/WICKET-319
>             Project: Wicket
>          Issue Type: Bug
>          Components: site
>         Environment: Win XP, firefox 2.0.0.1
>            Reporter: Marc-Andre Houle
>         Assigned To: Jean-Baptiste Quenot
>             Fix For: 1.3
>
>
> Just grab this  while checking something in example at http://wicketstuff.org/wicket13/ .
> When clicking on "source file", the pop-up display but you only have html an properties.  There is no java class file.
> Thought it was worth letting the administrator know! :)
> Marc

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.