搜索 Gradle 插件

版本 0.1.1(最新版)

0.1.1

创建于 2024 年 8 月 9 日。

根据 GraphQL 定义生成 Java DTO 和 protobuf

使用 插件 DSL

plugins {
  id("org.graphoenix") version "0.1.1"
}

使用 经典插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.graphoenix:graphoenix-gradle-plugin:0.1.1")
  }
}

apply(plugin = "org.graphoenix")

使用 插件 DSL

plugins {
  id "org.graphoenix" version "0.1.1"
}

使用 经典插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.graphoenix:graphoenix-gradle-plugin:0.1.1"
  }
}

apply plugin: "org.graphoenix"

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