搜索Gradle插件

com.stehno.natives

Gradle插件,用于管理与Java项目相关的原生库。

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

版本 0.3.1(最新版本)

0.3.1

创建于 2017年3月15日。

Gradle插件,帮助处理与Java项目相关的原生库。

使用插件DSL

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

使用旧版插件应用

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

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

使用插件DSL

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

使用旧版插件应用

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

apply plugin: "com.stehno.natives"

了解如何将插件应用到子项目中