搜索 Gradle 插件

版本 1.0.0 (最新)

1.0.0

创建于 2021 年 12 月 7 日。

一个插件,可在专用夜间构建服务器上仅执行 (j)Unit 测试

使用插件 DSL

plugins {
  id("com.visus.infrastructure.nightlytests") version "1.0.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.visus.infrastructure:NightlyTestsPlugin:1.0.0")
  }
}

apply(plugin = "com.visus.infrastructure.nightlytests")

使用插件 DSL

plugins {
  id "com.visus.infrastructure.nightlytests" version "1.0.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.visus.infrastructure:NightlyTestsPlugin:1.0.0"
  }
}

apply plugin: "com.visus.infrastructure.nightlytests"

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