搜索 Gradle 插件

版本 1.0-alpha (最新版)

1.0-alpha

创建于 2021 年 2 月 24 日。

由于此插件版本使用的依赖项仅在 JCenter 中可用,因此 JCenter 成为 Maven Central 的永久重定向后,此插件版本将无法解析。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact "一个帮助编写针对 MarkLogic Data Hub 步骤的测试的 Gradle 插件。"

使用 插件 DSL

plugins {
  id("com.github.brent-hartwig.marklogic-data-hub-step-test") version "1.0-alpha"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.brent-hartwig:marklogic-data-hub-step-test:1.0-alpha")
  }
}

apply(plugin = "com.github.brent-hartwig.marklogic-data-hub-step-test")

使用 插件 DSL

plugins {
  id "com.github.brent-hartwig.marklogic-data-hub-step-test" version "1.0-alpha"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.brent-hartwig:marklogic-data-hub-step-test:1.0-alpha"
  }
}

apply plugin: "com.github.brent-hartwig.marklogic-data-hub-step-test"

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