nebula.rxjava-project
Owner: Nebula Plugins
Template for RxJava projects
https://github.com/nebula-plugins/gradle-rxjava-project-plugin
Sources: https://github.com/nebula-plugins/gradle-rxjava-project-plugin.git
Version 4.0.0 (latest)
4.0.0
Created 10 February 2016.
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
Template for RxJava projects
Using the plugins DSL:
plugins {
id("nebula.rxjava-project") version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-rxjava-project-plugin:4.0.0")
}
}
apply(plugin = "nebula.rxjava-project")
Using the plugins DSL:
plugins {
id "nebula.rxjava-project" version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-rxjava-project-plugin:4.0.0"
}
}
apply plugin: "nebula.rxjava-project"