[ 
https://issues.apache.org/jira/browse/AXIS2-5780?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15323266#comment-15323266
 ] 

Hudson commented on AXIS2-5780:
-------------------------------

SUCCESS: Integrated in axis2-1.7 #73 (See 
[https://builds.apache.org/job/axis2-1.7/73/])
AXIS2-5780: Merge r1747448 and r1747503 to the 1.7 branch. (veithen: rev 
1747577)
* axis2
* axis2/pom.xml


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