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

Benoit Guerin commented on MGWT-317:
------------------------------------

See pull request on gwt-maven-plugin github account :
https://github.com/gwt-maven-plugin/gwt-maven-plugin/pull/24

> Goal css does not have default phase
> ------------------------------------
>
>                 Key: MGWT-317
>                 URL: https://jira.codehaus.org/browse/MGWT-317
>             Project: Maven 2.x GWT Plugin
>          Issue Type: Improvement
>    Affects Versions: 2.4.0
>            Reporter: Benoit Guerin
>            Priority: Minor
>
> instead of specifying this :
>       <plugin>
>         <groupId>org.codehaus.mojo</groupId>
>         <artifactId>gwt-maven-plugin</artifactId>
>         <version>2.4.0</version>
>         <executions>
>           <execution>
>             <goals>
>               <goal>css</goal>
>             </goals>
>           </execution>
>         <executions>
>       <plugin>
> one have to specify this :
>       <plugin>
>         <groupId>org.codehaus.mojo</groupId>
>         <artifactId>gwt-maven-plugin</artifactId>
>         <version>2.4.0</version>
>         <executions>
>           <execution>
>             <phase>generate-sources</phase>
>             <goals>
>               <goal>css</goal>
>             </goals>
>           </execution>
>         <executions>
>       <plugin>
> and because the css goal does not have a default phase, when you use multiple 
> goals of the plugin, you have to bind all to an explicit phase.

--
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