搜索Gradle插件

com.neo4j.gradle.wordpress.WordPressPlugin

所有者: Neo4j OSS项目

一个插件,可以从HTML文件和包含元数据的YAML文件发布帖子或页面到WordPress

https://neo4j.com/

源代码:https://github.com/neo4j-contrib/training-v3

版本 0.6.0(最新版本)

0.6.0

创建于 2020年6月22日。

由于JCenter将永久重定向到Maven Central,并且这个插件仅使用了在JCenter中可找到的依赖项,因此此插件版本将不再解决。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 一个插件,可以从HTML文件和包含元数据的YAML文件发布帖子或页面到WordPress

使用plugins DSL

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

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.neo4j.gradle.wordpress.WordPressPlugin:wordpress-publish-gradle-plugin:0.6.0")
  }
}

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

使用plugins DSL

plugins {
  id "com.neo4j.gradle.wordpress.WordPressPlugin" version "0.6.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.neo4j.gradle.wordpress.WordPressPlugin:wordpress-publish-gradle-plugin:0.6.0"
  }
}

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

了解如何将插件应用到子项目中