org.buildfs.gradle.buildfs-plugin
Owner: Thodoris Sotiropoulos
A Gradle Plugin that instruments a Gradle project so that it displays the dependencies, the inputs, and the outputs of every Gradle task
https://github.com/theosotr/buildfs-gradle-plugin
Sources: https://github.com/theosotr/buildfs-gradle-plugin.git
Version 1.0 (latest)
1.0
Created 16 October 2020.
A Gradle Plugin that instruments a Gradle project so that it displays the dependencies, the inputs, and the outputs of every Gradle task
Using the plugins DSL:
plugins {
id("org.buildfs.gradle.buildfs-plugin") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.buildfs.gradle.buildfs-plugin:buildfs-gradle-plugin:1.0")
}
}
apply(plugin = "org.buildfs.gradle.buildfs-plugin")
Using the plugins DSL:
plugins {
id "org.buildfs.gradle.buildfs-plugin" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.buildfs.gradle.buildfs-plugin:buildfs-gradle-plugin:1.0"
}
}
apply plugin: "org.buildfs.gradle.buildfs-plugin"