com.neo4j.gradle.wordpress.WordPressPlugin
Owner: Neo4j OSS Projects
A plugin to publish posts or pages to WordPress from an HTML file and a YAML file that contains metadata
Sources: https://github.com/neo4j-contrib/training-v3
Version 0.6.0 (latest)
0.6.0
Created 22 June 2020.
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 posts or pages to WordPress from an HTML file and a YAML file that contains metadata
Using the plugins DSL:
plugins {
id("com.neo4j.gradle.wordpress.WordPressPlugin") version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.neo4j.gradle.wordpress.WordPressPlugin:wordpress-publish-gradle-plugin:0.6.0")
}
}
apply(plugin = "com.neo4j.gradle.wordpress.WordPressPlugin")
Using the plugins DSL:
plugins {
id "com.neo4j.gradle.wordpress.WordPressPlugin" version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.neo4j.gradle.wordpress.WordPressPlugin:wordpress-publish-gradle-plugin:0.6.0"
}
}
apply plugin: "com.neo4j.gradle.wordpress.WordPressPlugin"