com.bugsnag.gradle
Owner: Bugsnag
Official BugSnag Gradle Plugin
Sources: https://github.com/bugsnag/bugsnag-gradle-plugin
Version 0.1.0 (latest)
0.1.0
Created 15 May 2024.
Official BugSnag Gradle Plugin
Using the plugins DSL:
plugins {
id("com.bugsnag.gradle") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bugsnag:bugsnag-gradle-plugin:0.1.0")
}
}
apply(plugin = "com.bugsnag.gradle")
Using the plugins DSL:
plugins {
id "com.bugsnag.gradle" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bugsnag:bugsnag-gradle-plugin:0.1.0"
}
}
apply plugin: "com.bugsnag.gradle"