com.neo4j.gradle.zendesk.ZenDeskPlugin
Owner: Neo4j OSS Projects
A plugin to publish articles to .ZenDesk from an HTML file and a YAML file that contains metadata
Sources: https://github.com/neo4j-contrib/zendesk-publish-gradle-plugin
Version 0.3.1 (latest)
0.3.1
Created 07 June 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 plugin to publish articles to .ZenDesk from an HTML file and a YAML file that contains metadata
Using the plugins DSL:
plugins {
id("com.neo4j.gradle.zendesk.ZenDeskPlugin") version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.neo4j.gradle.zendesk.ZenDeskPlugin:zendesk-publish-gradle-plugin:0.3.1")
}
}
apply(plugin = "com.neo4j.gradle.zendesk.ZenDeskPlugin")
Using the plugins DSL:
plugins {
id "com.neo4j.gradle.zendesk.ZenDeskPlugin" version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.neo4j.gradle.zendesk.ZenDeskPlugin:zendesk-publish-gradle-plugin:0.3.1"
}
}
apply plugin: "com.neo4j.gradle.zendesk.ZenDeskPlugin"