搜索 Gradle 插件

版本 1.5.1(最新版本)

1.5.1

创建日期:2016年5月13日。

生成一个由 'nebula.resolution-rules' 消耗的解析规则文件

使用 插件 DSL

plugins {
  id("nebula.resolution-rules-producer") version "1.5.1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:gradle-resolution-rules-plugin:1.5.1")
  }
}

apply(plugin = "nebula.resolution-rules-producer")

使用 插件 DSL

plugins {
  id "nebula.resolution-rules-producer" version "1.5.1"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:gradle-resolution-rules-plugin:1.5.1"
  }
}

apply plugin: "nebula.resolution-rules-producer"

学习如何将插件应用于子项目