Search Gradle plugins

Version 1.0.0-beta1

Created 09 December 2022.

Collect network data through code instrumentation

Using the plugins DSL:

plugins {
  id("com.contentsquare.error.analysis.network") version "1.0.0-beta1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.contentsquare.error.analysis.network" version "1.0.0-beta1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects