jduo commented on PR #38336: URL: https://github.com/apache/arrow/pull/38336#issuecomment-1771412004
> > The release script is failing though. I'm not quite sure what the issue is yet. Seems to be complaining about `14.0.0-SNAPSHOT` vs `14.0.0`? > > Perhaps there's a list of files that a versioning script updates that needs to be updated to include the BOM pom. I see the problem. In utils-prepare.sh at https://github.com/jduo/arrow/blob/4c329d0da2ec5ce7d24134ac568ec40619358c08/dev/release/utils-prepare.sh#L68C3-L68C20 , the script uses mvn versions:set on the parent pom, which cascades to all child modules. However the Bill of Materials POM is explicitly not a child, but rather a side-module that the parent imports. The solution is either to run mvn versions:set -DprocessAllModules which includes updating any aggregated modules, or to simply also run against the BOM file directly. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
