[ 
https://issues.apache.org/jira/browse/AXIS2-5780?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Veithen updated AXIS2-5780:
-----------------------------------
    Fix Version/s:     (was: 1.8.0)
                   1.7.4

> Invalid Configuration in Axis2 top-level Maven POM
> --------------------------------------------------
>
>                 Key: AXIS2-5780
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5780
>             Project: Axis2
>          Issue Type: Bug
>    Affects Versions: 1.7.3
>            Reporter: Jeff Thomas
>            Priority: Minor
>             Fix For: 1.7.4
>
>
> In the top-level Maven POM under the 1.7.3 branch (pom.xml) the execution 
> phase/goal for the {{maven-assembly-plugin}} is incorrectly located within 
> the configuration element.
> {code:xml}
> <plugin>
>   <artifactId>maven-assembly-plugin</artifactId>
>   <executions>
>     <execution>
>       <!-- Override the execution defined in org.apache:apache so that the 
> source-release assembly is not built. We define our own source distribution 
> in modules/distribution. -->
>       <id>source-release-assembly</id>
>       <configuration>
>         <phase>package</phase>
>         <goals>
>           <goal>single</goal>
>         </goals>
>         <skipAssembly>true</skipAssembly>
>       </configuration>
>     </execution>
>   </executions>
> </plugin>
> {code}
> IMHO it should be:
> {code:xml}
> <plugin>
>   <artifactId>maven-assembly-plugin</artifactId>
>   <executions>
>     <execution>
>       <!-- Override the execution defined in org.apache:apache so that the 
> source-release assembly is not built. We define our own source distribution 
> in modules/distribution. -->
>       <id>source-release-assembly</id>
>       <phase>package</phase>
>       <goals>
>         <goal>single</goal>
>       </goals>
>       <configuration>
>         <skipAssembly>true</skipAssembly>
>       </configuration>
>     </execution>
>   </executions>
> </plugin>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org

Reply via email to