snazy opened a new pull request, #2911: URL: https://github.com/apache/polaris/pull/2911
This change replaces the project's license URL in the parent POM from the AL-2.0 template to the `LICENSE` file in the project's root directory. Before (in `pom.xml`): ``` <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>; </license> </licenses> ``` With this change: ``` <licenses> <license> <name>Apache-2.0</name> <url>https://raw.githubusercontent.com/apache/polaris/HEAD/LICENSE</url>; <comments>NOTICE: https://raw.githubusercontent.com/apache/polaris/HEAD/NOTICE DISCLAIMER: https://raw.githubusercontent.com/apache/polaris/HEAD/DISCLAIMER</comments>; </license> </licenses> ``` -- 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]
