搜索Gradle插件

版本 1.0.0(最新版)

1.0.0

创建于 2016年5月11日。

这是一个从maven凭证获取settings.xml的插件。

使用 插件DSL

plugins {
  id("info.boaventura.maven.credentials") version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.info.boaventura:gradle-plugin-maven-pass:1.0.0")
  }
}

apply(plugin = "info.boaventura.maven.credentials")

使用 插件DSL

plugins {
  id "info.boaventura.maven.credentials" version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.info.boaventura:gradle-plugin-maven-pass:1.0.0"
  }
}

apply plugin: "info.boaventura.maven.credentials"

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