搜索Gradle插件

版本 0.8.54(最新版)

0.8.54

创建时间:2017年5月29日。

由于JCenter将永久重定向到Maven Central,该插件版本将不再解决,因为它只使用JCenter中可找到的依赖项。请参阅以下博客文章以获取详细信息:https://blog.gradle.org.cn/portal-jcenter-impact 发布工具和Gradle插件,自动化Mockito持续交付。

使用插件DSL

plugins {
  id("org.mockito.mockito-release-tools.auto-release-notes") version "0.8.54"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.mockito:mockito-release-tools:0.8.54")
  }
}

apply(plugin = "org.mockito.mockito-release-tools.auto-release-notes")

使用插件DSL

plugins {
  id "org.mockito.mockito-release-tools.auto-release-notes" version "0.8.54"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.mockito:mockito-release-tools:0.8.54"
  }
}

apply plugin: "org.mockito.mockito-release-tools.auto-release-notes"

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