Gradle plugin to aid in managing native libraries associated with Java-based projects.
This Gradle plugin fills the native library support gap and provides a simple means of unpacking native libraries provided by your project dependencies into a well-known and usable location. Configuration is simple; just
add the following to your gradle.build
file:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.stehno:gradle-natives:0.3.1"
}
}
apply plugin: "com.stehno.natives"
Alternately, you can use the new plugins
block with Gradle 2.1 (and later):
plugins {
id 'com.stehno.natives' version '0.3.1'
}
See the main project page for more documentation, or you can take a look at the two blog posts I have written about the project:
Having issues or an idea for a new feature, let me know, just create an issue.