Search Gradle plugins

Version 1.0.13 (latest)

1.0.13

Created 11 July 2018.

Plugin for automatically gather project report into root folder for easier continuous integration

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.mobilesolutionworks.gradle.reporting") version "1.0.13"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.mobilesolutionworks.gradle:works-reporting:1.0.13")
      }
    }
    
    apply(plugin = "com.mobilesolutionworks.gradle.reporting")
  • Applying plugins to all subprojects .