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)

0.9.2

Created 09 November 2015.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.factcenter:gradle-nativelibs:0.9.2")
      }
    }
    
    apply(plugin = "org.factcenter.nativelibs")
  • Applying plugins to all subprojects .