Jeff Thomas created AXIS2-5780:
----------------------------------

             Summary: 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, 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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to