搜索 Gradle 插件

com.exactpro.th2.gradle.grpc

插件帮助您配置项目以从 proto 文件生成用于 th2 组件的源代码

https://github.com/th2-net/th2-gradle-plugin

源码: https://github.com/th2-net/th2-gradle-plugin.git

版本 0.1.1 (最新版)

0.1.1

创建日期:2024年7月9日。

插件帮助您配置项目以从 proto 文件生成用于 th2 组件的源代码

使用 插件的 DSL

plugins {
  id("com.exactpro.th2.gradle.grpc") version "0.1.1"
}

使用 旧的插件应用程序

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

apply(plugin = "com.exactpro.th2.gradle.grpc")

使用 插件的 DSL

plugins {
  id "com.exactpro.th2.gradle.grpc" version "0.1.1"
}

使用 旧的插件应用程序

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

apply plugin: "com.exactpro.th2.gradle.grpc"

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