Search Gradle plugins

Version 1.2.0 (latest)

1.2.0

Created 05 February 2024.

Plugin to automatically upload ProGuard mapping files to Bugfender

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.bugfender.upload-mapping") version "1.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.bugfender:upload-mapping:1.2.0")
      }
    }
    
    apply(plugin = "com.bugfender.upload-mapping")
  • Applying plugins to all subprojects .