Search Gradle plugins

com.github.krs.xrepo

Cross-repository Gradle plugin modifies dependency resolution to use artifacts built from the same branch even if they're in different repository.

https://github.com/krs/xrepo-gradle-plugin

Sources: https://github.com/krs/xrepo-gradle-plugin

Version 1.0.0 (latest)

Created 21 November 2018.

Cross-repository Gradle plugin modifies dependency resolution to use artifacts built from the same branch even if they're in different repository.

Using the plugins DSL:

plugins {
  id("com.github.krs.xrepo") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.krs.xrepo-gradle-plugin:xrepo-gradle-plugin:1.0.0")
  }
}

apply(plugin = "com.github.krs.xrepo")

Using the plugins DSL:

plugins {
  id "com.github.krs.xrepo" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.krs.xrepo-gradle-plugin:xrepo-gradle-plugin:1.0.0"
  }
}

apply plugin: "com.github.krs.xrepo"

Learn how to apply plugins to subprojects