You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Robert Scholte (Jira)" <ji...@apache.org> on 2020/07/05 08:29:00 UTC

[jira] [Closed] (MNG-6952) Fail fast if pom cannot be transformed

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

Robert Scholte closed MNG-6952.
-------------------------------
    Fix Version/s:  fixed before release
       Resolution: Fixed

Fixed in [2e66809e0efcf84c551664efff82113b66591a74|https://gitbox.apache.org/repos/asf?p=maven.git;a=commit;h=2e66809e0efcf84c551664efff82113b66591a74]

> Fail fast if pom cannot be transformed
> --------------------------------------
>
>                 Key: MNG-6952
>                 URL: https://issues.apache.org/jira/browse/MNG-6952
>             Project: Maven
>          Issue Type: Bug
>          Components: POM
>    Affects Versions: 3.7.0
>            Reporter: Robert Scholte
>            Assignee: Robert Scholte
>            Priority: Major
>             Fix For:  fixed before release
>
>
> {{maven-antrun-plugin\target\it\attach-artifact-test-with-prefix}} fails with the build/consumer.
> The pom contains this:
> {code:xml}
>             <configuration>
>               <customTaskPrefix>mvn</customTaskPrefix>
>               <target>
>                 <mvn:attachartifact file="test.txt" classifier="cl" />
>               </target>
>             </configuration>
> {code}
> And fails during {{install:install}} with 
> {noformat}
> org.xml.sax.SAXParseException; lineNumber: 44; columnNumber: 71; The prefix "mvn" for element "mvn:attachartifact" is not bound.
> {noformat}
> It is fine that Maven complains about invalid XML, but during install is too late.
> It should happen not at all, or already while making the buildplan.
> If inheritence of such configuration still works, I'd prefer to break the build early.
> The proper fix is to make it valid XML, by specifying the namespace like this:
> {code:xml}
>             <configuration xmlns:mvn="maven.apache.org/antrun">
>               <customTaskPrefix>mvn</customTaskPrefix>
>               <target>
>                 <mvn:attachartifact file="test.txt" classifier="cl" />
>               </target>
>             </configuration>
> {code}
> This already works (even with Maven 3.0), and ideally maven-antrun-plugin also provides an XSD, so it can be validated.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)