se.bjurr.violations.violation-comments-to-github-gradle-plugin
Owner: Tomas Bjerre
Gradle plugin for Violation Comments to GitHub
https://github.com/tomasbjerre/violation-comments-to-github-gradle-plugin
Sources: https://github.com/tomasbjerre/violation-comments-to-github-gradle-plugin
Version 1.12
1.12
Created 03 October 2016.
Gradle plugin that will comment GitHub pull requests with results from static code analysis
Using the plugins DSL:
plugins {
id("se.bjurr.violations.violation-comments-to-github-gradle-plugin") version "1.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.se.bjurr.violations:violation-comments-to-github-gradle-plugin:1.12")
}
}
apply(plugin = "se.bjurr.violations.violation-comments-to-github-gradle-plugin")
Using the plugins DSL:
plugins {
id "se.bjurr.violations.violation-comments-to-github-gradle-plugin" version "1.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.se.bjurr.violations:violation-comments-to-github-gradle-plugin:1.12"
}
}
apply plugin: "se.bjurr.violations.violation-comments-to-github-gradle-plugin"