搜索 Gradle 插件

版本 0.1(最新版)

0.1

创建于 2016 年 3 月 2 日。

C++源代码原生组件的 CppLint 集成

使用 plugins DSL

plugins {
  id("com.greenebeans.cpplint") version "0.1"
}

使用 旧插件应用

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

apply(plugin = "com.greenebeans.cpplint")

使用 plugins DSL

plugins {
  id "com.greenebeans.cpplint" version "0.1"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.greenebeans:gradle-cpplint-plugin:0.1"
  }
}

apply plugin: "com.greenebeans.cpplint"

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