You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/05/12 06:52:07 UTC

[GitHub] [arrow] iamsmkr commented on issue #13127: Cannot resolve io.netty:netty-transport-native-unix-common:4.1.72.Final

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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org