Search Gradle plugins

com.stehno.natives

Gradle plugin for managing native libraries associated with Java projects.

http://cjstehno.github.io/gradle-natives/

Version 0.3.1 (latest)

Created 15 March 2017.

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.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.stehno:gradle-natives:0.3.1")
  }
}

apply(plugin = "com.stehno.natives")

Using the plugins DSL:

plugins {
  id "com.stehno.natives" version "0.3.1"
}

Using legacy plugin application:

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"

Learn how to apply plugins to subprojects