mirror of
https://github.com/alibaba/testable-mock.git
synced 2025-01-10 20:30:11 +08:00
28 lines
582 B
Groovy
28 lines
582 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'com.alibaba.testable'
|
|
version = '1.0.0-SNAPSHOT'
|
|
sourceCompatibility = '8'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation('org.junit.jupiter:junit-jupiter:5.6.2')
|
|
testImplementation('com.alibaba.testable:testable-all:0.4.9')
|
|
testAnnotationProcessor('com.alibaba.testable:testable-processor:0.4.9')
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
|
|
test {
|
|
jvmArgs "-javaagent:${classpath.find { it.name.contains("testable-agent") }.absolutePath}"
|
|
useJUnitPlatform()
|
|
}
|