Search Gradle plugins

com.github.fluidsonic.fluid-library

Very optionated plugin to unify & simplify configuration of all the com.github.fluidsonic.* Kotlin libraries.

https://github.com/fluidsonic/fluid-library

Sources: https://github.com/fluidsonic/fluid-library.git

Version 0.9.1 (latest)

Created 05 February 2019.

Very optionated plugin to unify & simplify configuration of all the com.github.fluidsonic.* Kotlin libraries.

Using the plugins DSL:

plugins {
  id("com.github.fluidsonic.fluid-library") version "0.9.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.fluidsonic.fluid-library:fluid-library:0.9.1")
  }
}

apply(plugin = "com.github.fluidsonic.fluid-library")

Using the plugins DSL:

plugins {
  id "com.github.fluidsonic.fluid-library" version "0.9.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.fluidsonic.fluid-library:fluid-library:0.9.1"
  }
}

apply plugin: "com.github.fluidsonic.fluid-library"

Learn how to apply plugins to subprojects