iamsmkr commented on issue #13127:
URL: https://github.com/apache/arrow/issues/13127#issuecomment-1124600962

   Running the command `mvn dependency:purge-local-repository clean install -U` 
revealed that following properties were not getting substituted for the netty 
jar!
   ```
   ${os.detected.name}-${os.detected.arch}
   ```
   
   Had to add the following to the `pom.xml` to solve this issue.
   ```xml
   <project>
     <build>
       <extensions>
         <extension>
           <groupId>kr.motd.maven</groupId>
           <artifactId>os-maven-plugin</artifactId>
           <version>1.7.0</version>
         </extension>
       </extensions>
     </build>
   </project>
   ```
   
   Not sure if the user of the library should be responsible to add such 
dependencies that too without any documentation mentionning them explicitly!


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