br.dev.pedrolamarao.metal.commands
所有者: Pedro Lamarão
贡献一个任务以聚合compile_commands.json数据库
https://github.com/pedrolamarao/gradle-metal
源:https://github.com/pedrolamarao/gradle-metal.git
使用plugins DSL
plugins {
id("br.dev.pedrolamarao.metal.commands") version "0.4"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("br.dev.pedrolamarao.gradle.metal:plugins:0.4")
}
}
apply(plugin = "br.dev.pedrolamarao.metal.commands")
使用plugins DSL
plugins {
id "br.dev.pedrolamarao.metal.commands" version "0.4"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "br.dev.pedrolamarao.gradle.metal:plugins:0.4"
}
}
apply plugin: "br.dev.pedrolamarao.metal.commands"