Search Gradle plugins

Version 0.1.1

0.1.1

Created 24 August 2015.

Extension to gradle native plugins This plugin extends the gradle plugins for native code, it adds the following - Copy shared libraries depenencies as part of executable install - Add pre/post compile tasks - Add pre/post link tasks - Add pre/post install tasks Limitations - For the pluing to work correctly the shared library and executable must have the same variants Versions 0.1.1 Beta release patch 1 - Minor fix to plugin description 0.1.0 Beta release 0.0.0 Development test

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.xykivo.nativeextension") version "0.1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.xykivo.nativeextension:native_extension:0.1.1")
      }
    }
    
    apply(plugin = "com.xykivo.nativeextension")
  • Applying plugins to all subprojects .