This is an automated email from the ASF dual-hosted git repository. martijnvisser pushed a commit to branch release-1.0 in repository https://gitbox.apache.org/repos/asf/flink.git
commit ae93a300009587158aef16fe35aa847422f6f20e Author: Martijn Visser <[email protected]> AuthorDate: Wed Jan 21 14:57:49 2026 +0100 [hotfix][build] Pin scala-maven-plugin version in aggregate-scaladoc profile The aggregate-scaladoc profile was missing an explicit version for scala-maven-plugin, causing Maven to resolve to the latest version (4.9.8) which is incompatible with this legacy codebase. --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index ad858cc9c71..6e55b805aa5 100644 --- a/pom.xml +++ b/pom.xml @@ -539,6 +539,7 @@ under the License. <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> + <version>3.1.4</version> <executions> <execution> <id>doc</id>
