搜索Gradle插件

版本 0.1.1(最新版)

0.1.1

创建于 2024年7月9日。

该插件有助于打包th2组件并为其构建Docker镜像做准备

使用 插件DSL

plugins {
  id("com.exactpro.th2.gradle.component") 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.component")

使用 插件DSL

plugins {
  id "com.exactpro.th2.gradle.component" 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.component"

学习如何将插件应用于子项目