搜索Gradle插件

版本 0.11.1 (最新版本)

0.11.1

创建日期 2024年7月1日。

用Kotlin编写的lambda函数的NEOMO约定

使用插件DSL

plugins {
  id("com.neomo.conventions.lambda") version "0.11.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.neomo.conventions:gradle-conventions:0.11.1")
  }
}

apply(plugin = "com.neomo.conventions.lambda")

使用插件DSL

plugins {
  id "com.neomo.conventions.lambda" version "0.11.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.neomo.conventions:gradle-conventions:0.11.1"
  }
}

apply plugin: "com.neomo.conventions.lambda"

学习如何应用到子项目插件