5 Star 10 Fork 8

Gitee 极速下载/Mockito-Framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/mockito/mockito
克隆/下载
settings.gradle.kts 1.69 KB
一键复制 编辑 原始数据 按行查看 历史
plugins {
id("com.gradle.enterprise") version "3.17.5"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
include(
"subclass",
"inlineTest",
"proxy",
"extTest",
"groovyTest",
"groovyInlineTest",
"kotlinTest",
"kotlinReleaseCoroutinesTest",
"android",
"junit-jupiter",
"junitJupiterExtensionTest",
"junitJupiterInlineMockMakerExtensionTest",
"module-test",
"memory-test",
"junitJupiterParallelTest",
"osgi-test",
"bom",
"errorprone",
"programmatic-test",
"java21-test"
)
// https://developer.android.com/studio/command-line/variables#envar
// https://developer.android.com/studio/build#properties-files
if (System.getenv("ANDROID_HOME") != null || File("local.properties").exists()) {
include("androidTest")
} else {
logger.info("Not including android test project due to missing SDK configuration")
}
rootProject.name = "mockito"
rootProject.children.forEach { project ->
val projectDirName = "subprojects/${project.name}"
project.projectDir = File(settingsDir, projectDirName)
project.buildFileName = "${project.name}.gradle"
require(project.projectDir.isDirectory) {
"Project directory ${project.projectDir} for project ${project.name} does not exist."
}
require(project.buildFile.isFile) {
"Build file ${project.buildFile} for project ${project.name} does not exist."
}
}
//Posting Build scans to https://scans.gradle.com
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
buildCache {
local {
isEnabled = !System.getenv().containsKey("CI")
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/Mockito-Framework.git
git@gitee.com:mirrors/Mockito-Framework.git
mirrors
Mockito-Framework
Mockito-Framework
main

搜索帮助