com.greenebeans.cpplint
Owner: Sterling Greene
CppLint integration for native components with C++ sources
https://github.com/big-guy/gradle-cpplint-plugin
Sources: https://github.com/big-guy/gradle-cpplint-plugin
Version 0.1 (latest)
0.1
Created 02 March 2016.
CppLint integration for native components with C++ sources
Using the plugins DSL:
plugins {
id("com.greenebeans.cpplint") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.greenebeans:gradle-cpplint-plugin:0.1")
}
}
apply(plugin = "com.greenebeans.cpplint")
Using the plugins DSL:
plugins {
id "com.greenebeans.cpplint" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.greenebeans:gradle-cpplint-plugin:0.1"
}
}
apply plugin: "com.greenebeans.cpplint"