com.redis.gradle.redis-parentbuild
Owner: Julien Ruaux
Parent build plugin for Redis Projects
https://github.com/redis-developer/redis-parent
Sources: https://github.com/redis-developer/redis-parent
Version 0.2.0 (latest)
0.2.0
Created 25 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 Projects
Using the plugins DSL:
plugins {
id("com.redis.gradle.redis-parentbuild") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.redis.gradle:redis-parentbuild:0.2.0")
}
}
apply(plugin = "com.redis.gradle.redis-parentbuild")
Using the plugins DSL:
plugins {
id "com.redis.gradle.redis-parentbuild" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.redis.gradle:redis-parentbuild:0.2.0"
}
}
apply plugin: "com.redis.gradle.redis-parentbuild"