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.2.3
0.2.3
Created 09 April 2015.
Gradle plugin to aid in managing native libraries associated with Java-based projects.
Using the plugins DSL:
plugins {
id("com.stehno.natives") version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.stehno:gradle-natives:0.2.3")
}
}
apply(plugin = "com.stehno.natives")
Using the plugins DSL:
plugins {
id "com.stehno.natives" version "0.2.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.stehno:gradle-natives:0.2.3"
}
}
apply plugin: "com.stehno.natives"