praneethchityala commented on issue #84:
URL: https://github.com/apache/airavata-mft/issues/84#issuecomment-1409513803

   The error is due to an incompatible version of guava:jar:31.0.1-android 
which is being installed from io.grpc:grpc-netty-shaded:jar:1.47.0.
   
   We need to install guava-31.1-jre before grpc-netty-shaded is installed to 
use the correct version of java.
   
   Update the pom.xml file in location "airavata-mft/standalone-service" as 
below:
   
   Add below lines in dependencies prior to any dependency:
   
   ```
   <dependency>
               <groupId>com.google.guava</groupId>
               <artifactId>guava</artifactId>
               <version>31.1-jre</version>
           </dependency>
   ```
   
   This would resolve the issue.


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