com.stehno.natives
Owner: Christopher J. Stehno
Gradle plugin for managing native libraries associated with Java projects.
http://cjstehno.github.io/gradle-natives/
Version 0.3.0
0.3.0
Created 23 September 2016.
Gradle plugin to aid in handling native libraries associated with Java-based projects.
Using the plugins DSL:
plugins {
id("com.stehno.natives") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.stehno:gradle-natives:0.3.0")
}
}
apply(plugin = "com.stehno.natives")
Using the plugins DSL:
plugins {
id "com.stehno.natives" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.stehno:gradle-natives:0.3.0"
}
}
apply plugin: "com.stehno.natives"