[ 
https://jira.codehaus.org/browse/MGWT-282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=280553#comment-280553
 ] 

Jeff MAURY commented on MGWT-282:
---------------------------------

This should be closed as it as been fixed by 2.4.0. This parameter is handled 
as a relative directory of the project base directory if it is a relative 
expression (like the default expression) or as an absolute directory

> out parameter for gwt:test configuration has wrong default
> ----------------------------------------------------------
>
>                 Key: MGWT-282
>                 URL: https://jira.codehaus.org/browse/MGWT-282
>             Project: Maven 2.x GWT Plugin
>          Issue Type: Bug
>    Affects Versions: 2.2.0
>            Reporter: Kazimierz Pogoda
>
> According to:
> http://mojo.codehaus.org/gwt-maven-plugin/test-mojo.html#out
> the {{out}} configuration parameter defaults to: {{target/www-test}}
> It is not correct for multi-module maven projects, because every {{gwt:test}} 
> run within specific module will output files to the {{target}} directory of 
> the master project (parent {{pom}}).
> Simple workaround is to specify the following {{out}} parameter for each 
> maven module which contains gwt tests:
> {code}
>   <build>
>     <plugins>
>       <plugin>
>         <groupId>org.codehaus.mojo</groupId>
>         <artifactId>gwt-maven-plugin</artifactId>
>         <executions>
>           <execution>
>             <goals>
>               <goal>test</goal>
>             </goals>
>             <configuration>
>               <out>${project.build.directory}/www-test</out>
>             </configuration>
>           </execution>
>         </executions>
>       </plugin>
>     </plugins>
>   </build>
> {code}
> It seems that this should be the default.

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

        

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to