搜索Gradle插件

版本 1.0.0(最新版)

1.0.0

创建日期:2022年2月1日。

该插件可访问settings.xml中的所有凭证并在build.gradle中使用

使用 plugins DSL

plugins {
  id("com.github.gustavohssantorio.credentials") version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.gustavohssantorio:credentials:1.0.0")
  }
}

apply(plugin = "com.github.gustavohssantorio.credentials")

使用 plugins DSL

plugins {
  id "com.github.gustavohssantorio.credentials" version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.gustavohssantorio:credentials:1.0.0"
  }
}

apply plugin: "com.github.gustavohssantorio.credentials"

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