Search Gradle plugins

org.factcenter.nativelibs

Gradle plugin to aid in managing native libraries associated with Java-based projects.

http://factcenter.github.io/gradle-nativelibs/

Sources: http://factcenter.github.io/gradle-nativelibs/

Version 0.9.2 (latest)

Created 09 November 2015.

Gradle plugin to aid in managing native libraries associated with Java-based projects.

Using the plugins DSL:

plugins {
  id("org.factcenter.nativelibs") version "0.9.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.factcenter:gradle-nativelibs:0.9.2")
  }
}

apply(plugin = "org.factcenter.nativelibs")

Using the plugins DSL:

plugins {
  id "org.factcenter.nativelibs" version "0.9.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.factcenter:gradle-nativelibs:0.9.2"
  }
}

apply plugin: "org.factcenter.nativelibs"

Learn how to apply plugins to subprojects