搜索Gradle插件

br.com.prodist.native-tools

所有者: Pedro Lamarão

通过添加额外的本机工具扩展gradle-native

http://www.prodist.com.br/

来源: http://www.prodist.com.br/

版本 0.1(最新版)

0.1

创建于 2018年6月13日。

通过添加额外的本机工具扩展gradle-native

使用插件DSL

plugins {
  id("br.com.prodist.native-tools") version "0.1"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.br.com.prodist:native-tools:0.1")
  }
}

apply(plugin = "br.com.prodist.native-tools")

使用插件DSL

plugins {
  id "br.com.prodist.native-tools" version "0.1"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.br.com.prodist:native-tools:0.1"
  }
}

apply plugin: "br.com.prodist.native-tools"

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