ramackri commented on code in PR #1052:
URL: https://github.com/apache/ranger/pull/1052#discussion_r3550608006


##########
agents-common/pom.xml:
##########
@@ -182,6 +182,7 @@
             <groupId>org.graalvm.js</groupId>
             <artifactId>js</artifactId>
             <version>${graalvm.version}</version>
+            <type>pom</type>
         </dependency>

Review Comment:
   At GraalVM 25.1.3, org.graalvm.js:js is published as a POM aggregator, not a 
JAR:
   
   js-25.1.3.jar → 404 (does not exist)
   js-25.1.3.pom → exists, and pulls in js-language + truffle-runtime
   Without <type>pom</type>, Maven defaults to type=jar and will fail to 
resolve the dependency (or behave incorrectly).
   
   GraalVM’s own docs for 25.x require:
   
   <dependency>
       <groupId>org.graalvm.js</groupId>
       <artifactId>js</artifactId>
       <version>25.1.3</version>
       <type>pom</type>   <!-- required -->
   </dependency>



-- 
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]

Reply via email to