Search Gradle plugins

Version 1.3.0 (latest)

Created 27 March 2024.

Collect network data through code instrumentation

Using the plugins DSL:

plugins {
  id("com.contentsquare.error.analysis.network") version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.contentsquare.gradle:error-analysis-network:1.3.0")
  }
}

apply(plugin = "com.contentsquare.error.analysis.network")

Using the plugins DSL:

plugins {
  id "com.contentsquare.error.analysis.network" version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.contentsquare.gradle:error-analysis-network:1.3.0"
  }
}

apply plugin: "com.contentsquare.error.analysis.network"

Learn how to apply plugins to subprojects