搜索Gradle插件

版本 0.0.1 (最新版)

0.0.1

创建于 2021年1月6日。

派生自 ros2-java/ament_gradle_plugin

使用 插件的DSL

plugins {
  id("com.github.liu-shichao.gradles") version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.liushichao.gradles:plugin:0.0.1")
  }
}

apply(plugin = "com.github.liu-shichao.gradles")

使用 插件的DSL

plugins {
  id "com.github.liu-shichao.gradles" version "0.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.liushichao.gradles:plugin:0.0.1"
  }
}

apply plugin: "com.github.liu-shichao.gradles"

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