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.0.1
0.0.1
Created 10 April 2020.
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.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.neo4j.gradle:buildSrc:0.0.1")
}
}
apply(plugin = "com.neo4j.gradle.wordpress.WordPressPlugin")
Using the plugins DSL:
plugins {
id "com.neo4j.gradle.wordpress.WordPressPlugin" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.neo4j.gradle:buildSrc:0.0.1"
}
}
apply plugin: "com.neo4j.gradle.wordpress.WordPressPlugin"