Search Gradle plugins

com.stehno.natives

Gradle plugin for managing native libraries associated with Java projects.

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

Version 0.2.2

Created 07 April 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.stehno.natives") version "0.2.2"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.stehno:gradle-natives:0.2.2"
  }
}

apply plugin: "com.stehno.natives"

Learn how to apply plugins to subprojects