You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Andreas Veithen (JIRA)" <ji...@apache.org> on 2016/07/02 16:08:11 UTC

[jira] [Assigned] (AXIS2-5780) Invalid Configuration in Axis2 top-level Maven POM

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

Andreas Veithen reassigned AXIS2-5780:
--------------------------------------

    Assignee: Andreas Veithen

> 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
>            Assignee: Andreas Veithen
>            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-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org