com.github.brent-hartwig.marklogic-data-hub-step-test
Owner: Brent Hartwig
"A Gradle plugin that assists with writing tests against MarkLogic Data Hub steps."
https://project.marklogic.com/repo/users/bhartwig/repos/marklogic-data-hub-step-test
Sources: https://project.marklogic.com/repo/users/bhartwig/repos/marklogic-data-hub-step-test.git
Version 1.0-alpha (latest)
1.0-alpha
Created 24 February 2021.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
"A Gradle plugin that assists with writing tests against MarkLogic Data Hub steps."
Using the plugins DSL:
plugins {
id("com.github.brent-hartwig.marklogic-data-hub-step-test") version "1.0-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/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")
Using the plugins DSL:
plugins {
id "com.github.brent-hartwig.marklogic-data-hub-step-test" version "1.0-alpha"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/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"