Search Gradle plugins

io.github.cdsap.ipinfo

Retrieve geolocation information and includes it in the Build Scan

https://github.com/cdsap/IpInfo

Sources: https://github.com/cdsap/IpInfo

Version 0.1 (latest)

Created 21 December 2022.

Retrieve geolocation information and includes it in the Build Scan

Using the plugins DSL:

plugins {
  id("io.github.cdsap.ipinfo") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.cdsap:ipinfo:0.1")
  }
}

apply(plugin = "io.github.cdsap.ipinfo")

Using the plugins DSL:

plugins {
  id "io.github.cdsap.ipinfo" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.cdsap:ipinfo:0.1"
  }
}

apply plugin: "io.github.cdsap.ipinfo"

Learn how to apply plugins to subprojects