Skip to content

Commit

Permalink
Merge pull request #420 from grails/gradleImprov
Browse files Browse the repository at this point in the history
Gradle Improvements
  • Loading branch information
Puneet Behl committed Dec 3, 2021
2 parents 751f380 + 1de340e commit a0b1ba0
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,7 @@ grailsVersion=5.0.0
micrometer.version=1.6.1
scaffoldingVersion=4.0.0.RC1
testingSupportVersion=2.2.0

org.gradle.caching=true
org.gradle.parallel=true
org.gradle.daemon=true
2 changes: 1 addition & 1 deletion grails-datastore-gorm-hibernate5/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dependencies {

test {
if (isTravisBuild || isCiBuild) {
maxParallelForks = 1
maxParallelForks = 2
forkEvery = 10
}
else {
Expand Down
17 changes: 17 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
plugins {
id "com.gradle.enterprise" version "3.7.2"
id 'com.gradle.common-custom-user-data-gradle-plugin' version '1.6.1'
}

gradleEnterprise {
server = 'https://ge.grails.org'
buildScan {
publishAlways()
publishIfAuthenticated()
uploadInBackground = System.getenv("CI") == null
capture {
taskInputFiles = true
}
}
}

// Core
include "grails-datastore-gorm-hibernate5"

Expand Down

0 comments on commit a0b1ba0

Please sign in to comment.