搜索 Gradle 插件

com.github.fluidsonic.fluid-library

所有者: Marc Knaup

这是一款非常挑剔的插件,旨在统一和简化 com.github.fluidsonic.* 下的所有 Kotlin 库的配置。

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

来源: https://github.com/fluidsonic/fluid-library.git

版本 0.9.1 (最新)

0.9.1

创建于 2019 年 2 月 5 日。

由于 JCenter 成为了 Maven Central 的永久重定向,且此插件只使用在 JCenter 中找到的依赖,所以此插件版本将不再可用。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 这是一款非常挑剔的插件,旨在统一和简化 com.github.fluidsonic.* 下的所有 Kotlin 库的配置。

使用 插件 DSL

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

使用 旧的插件应用程序

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

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

使用 插件 DSL

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

使用 旧的插件应用程序

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

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

了解如何将插件应用到子项目中