Using Gradle with native dependencies
问题 I am trying to use Sigar in a Gradle project. Sigar distribution is by default provided with 2 types of files: a JAR that contains classes some native files (.so, dylib, .dll) My purpose is to repackage these files so that I can use them as dependencies deployed and downloaded on-demand from a personal Maven repository. My first try was to define dependencies as files in order to check that my application is working as expected before to repackage. Below is the Gradle code I used for my first