deniskuzZ commented on code in PR #6327: URL: https://github.com/apache/hive/pull/6327#discussion_r2833718388
########## standalone-metastore/metastore-rest-catalog/pom.xml: ########## @@ -19,12 +19,97 @@ <modelVersion>4.0.0</modelVersion> <artifactId>hive-standalone-metastore-rest-catalog</artifactId> <name>Hive Metastore REST Catalog</name> + <repositories> + <repository> + <id>central</id> + <url>https://repo.maven.apache.org/maven2</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + </repositories> <properties> <standalone.metastore.path.to.root>..</standalone.metastore.path.to.root> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <log4j2.debug>false</log4j2.debug> <iceberg.version>1.10.0</iceberg.version> + <spring-boot.version>2.7.18</spring-boot.version> + <!-- Override Spring Boot's Jetty 9.4.53 with Hive's 9.4.57 to avoid version conflicts --> + <jetty.version>9.4.57.v20241219</jetty.version> </properties> + <dependencyManagement> + <dependencies> + <!-- Align all Jetty artifacts to Hive's version; Spring Boot 2.7.18 defaults to 9.4.53 --> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-servlets</artifactId> + <version>${jetty.version}</version> Review Comment: isn't it define in dependency management somewhere? if not, maybe it should be -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
