Search Gradle plugins

Version 1.0.4 (latest)

Created 26 January 2024.

Gradle plugin for fetching specific maven repositories to local.

Using the plugins DSL:

plugins {
  id("io.github.yubyf.maven-offline") version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.yubyf.mavenoffline:maven-offline-gradle-plugin:1.0.4")
  }
}

apply(plugin = "io.github.yubyf.maven-offline")

Using the plugins DSL:

plugins {
  id "io.github.yubyf.maven-offline" version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.yubyf.mavenoffline:maven-offline-gradle-plugin:1.0.4"
  }
}

apply plugin: "io.github.yubyf.maven-offline"

Learn how to apply plugins to subprojects