com.redislabs.gradle.redislabs-parentbuild
Owner: Julien Ruaux
Parent build plugin for Redis Labs Projects
https://github.com/redis-developer/redislabs-parent
Sources: https://github.com/redis-developer/redislabs-parent
Version 0.1.0 (latest)
0.1.0
Created 03 August 2021.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Parent build plugin for Redis Labs Projects
Using the plugins DSL:
plugins {
id("com.redislabs.gradle.redislabs-parentbuild") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.redislabs.gradle:redislabs-parentbuild:0.1.0")
}
}
apply(plugin = "com.redislabs.gradle.redislabs-parentbuild")
Using the plugins DSL:
plugins {
id "com.redislabs.gradle.redislabs-parentbuild" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.redislabs.gradle:redislabs-parentbuild:0.1.0"
}
}
apply plugin: "com.redislabs.gradle.redislabs-parentbuild"