5 Star 2 Fork 4

Gitee 极速下载/powermock

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/powermock/powermock
克隆/下载
build.gradle 2.07 KB
一键复制 编辑 原始数据 按行查看 历史
Sean C. Sullivan 提交于 2022-02-02 20:33 . mockito 4.3.1
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url 'https://repo.spring.io/plugins-release'
}
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'org.springframework.build.gradle:propdeps-plugin:0.0.7'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'net.researchgate:gradle-release:2.4.0'
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.4'
classpath 'org.shipkit:shipkit:2.3.4'
classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.4.1'
}
}
ext{
gradleScriptDir = "${rootProject.projectDir}/gradle"
byteBuddy = "1.12.7"
easymockVersion = "4.0.1"
hamcrestVersion = "1.3"
assertjVersion = "2.6.0"
cglibVersion = "3.2.9"
objenesisVersion = "3.2"
javassistVersion = "3.27.0-GA"
junitVersion = "4.12"
junitRulesVersion = "4.8.2"
testngVersion = "6.9.10"
xstreamVersion = "1.4.10"
mockitoVersion = "4.3.1"
servletVersion = "2.5"
jacocoVersion = "0.7.7.201606060606"
eclipseJdt = "3.3.0-v_771"
checkstyleVersion= "7.6.1"
systemRulesVersion="1.18.0"
}
apply plugin: 'org.shipkit.java'
description = 'PowerMock allows you to unit test code normally regarded as untestable.\n' +
' For instance it is possible to mock static methods, remove static initializers, allow mocking without dependency\n' +
' injection and more.\n' +
' PowerMock works by bytecode manipulation.\n' +
' PowerMock also contain some utilities that gives you easier access to an objects internal state.\n' +
' PowerMock can be used to test otherwise untestable code and also to achieve a cleaner separation between test\n' +
' and production code.'
apply from: "${gradleScriptDir}/version.gradle"
allprojects{
apply plugin: 'propdeps-idea'
}
apply from: "${gradleScriptDir}/modules.gradle"
jar{
enabled = false
}
task wrapper(type: Wrapper) {
gradleVersion = '4.10.2'
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/powermock.git
git@gitee.com:mirrors/powermock.git
mirrors
powermock
powermock
release/2.x

搜索帮助