Browse Source

Improve GRADLE build Performance (#758)

Co-authored-by: Chen Zhang <340355960@qq.com>
pull/469/head
ChenZhangg 3 years ago committed by GitHub
parent
commit
192e806500
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      build.gradle

13
build.gradle

@ -40,6 +40,19 @@ ext {
}
allprojects {
tasks.withType(Test).configureEach {
maxParallelForks = 4
}
tasks.withType(Test).configureEach {
forkEvery = 100
}
tasks.withType(Test).configureEach {
reports.html.required = false
reports.junitXml.required = false
}
ext.displayName = null
ext.buildTimestamp = new Date().format('yyyy-MM-dd HH:mm:ss')

Loading…
Cancel
Save