搜索 Gradle 插件

版本 0.1(最新版)

0.1

创建于 2020年6月3日。

DataStax.junitpytest - Gradle 插件

使用 插件 DSL

plugins {
  id("com.datastax.junitpytest") version "0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.datastax.junitpytest:pytest-gradle-plugin:0.1")
  }
}

apply(plugin = "com.datastax.junitpytest")

使用 插件 DSL

plugins {
  id "com.datastax.junitpytest" version "0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.datastax.junitpytest:pytest-gradle-plugin:0.1"
  }
}

apply plugin: "com.datastax.junitpytest"

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