Search Gradle plugins

com.neo4j.gradle.wordpress.WordPressPlugin

A plugin to publish posts or pages to WordPress from an HTML file and a YAML file that contains metadata

https://neo4j.com/

Sources: https://github.com/neo4j-contrib/training-v3

Version 0.3.0

Created 08 June 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.3.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.3.0")
  }
}

apply(plugin = "com.neo4j.gradle.wordpress.WordPressPlugin")

Using the plugins DSL:

plugins {
  id "com.neo4j.gradle.wordpress.WordPressPlugin" version "0.3.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.3.0"
  }
}

apply plugin: "com.neo4j.gradle.wordpress.WordPressPlugin"

Learn how to apply plugins to subprojects