nebula.integtest
所有者: Nebula Plugins
添加源集和任务以独立于单元测试运行集成测试
https://github.com/nebula-plugins/nebula-project-plugin
来源: https://github.com/nebula-plugins/nebula-project-plugin.git
使用plugins DSL
plugins {
id("nebula.integtest") version "9.6.3"
}
使用传统插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-project-plugin:9.6.3")
}
}
apply(plugin = "nebula.integtest")
使用plugins DSL
plugins {
id "nebula.integtest" version "9.6.3"
}
使用传统插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-project-plugin:9.6.3"
}
}
apply plugin: "nebula.integtest"