com.github.eugenesy.scapegoat
Owner: Eugene Sypachev
Gradle plugin for Scapegoat Scala compiler static analysis plugin
https://github.com/eugene-sy/gradle-scapegoat-plugin
Sources: https://github.com/eugene-sy/gradle-scapegoat-plugin
Version 0.2.0 (latest)
0.2.0
Created 02 June 2021.
Gradle plugin for Scapegoat Scala compiler static analysis plugin
Using the plugins DSL:
plugins {
id("com.github.eugenesy.scapegoat") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.eugenesy.scapegoat:gradle-scapegoat-plugin:0.2.0")
}
}
apply(plugin = "com.github.eugenesy.scapegoat")
Using the plugins DSL:
plugins {
id "com.github.eugenesy.scapegoat" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.eugenesy.scapegoat:gradle-scapegoat-plugin:0.2.0"
}
}
apply plugin: "com.github.eugenesy.scapegoat"