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

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.neo4j.gradle.wordpress.WordPressPlugin") version "0.3.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.neo4j.gradle.wordpress.WordPressPlugin:wordpress-publish-gradle-plugin:0.3.0")
      }
    }
    
    apply(plugin = "com.neo4j.gradle.wordpress.WordPressPlugin")
  • Applying plugins to all subprojects .