File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
ext {
2
2
grailsVersion = projectVersion
3
3
isCiBuild = System . getenv(). get(' CI' ) as Boolean
4
- configuredTestParallel = System . getProperty (' maxTestParallel' ) as Integer ?: (isCiBuild ? 3 : Runtime . runtime. availableProcessors() * 3 / 4 as int ?: 1 )
4
+ configuredTestParallel = find (' maxTestParallel' ) as Integer ?: (isCiBuild ? 3 : Runtime . runtime. availableProcessors() * 3 / 4 as int ?: 1 )
5
5
excludeUnusedTransDeps = findProperty(' excludeUnusedTransDeps' )
6
6
7
7
// Directories created during the build which are related
Original file line number Diff line number Diff line change 21
21
ext. ' signing.password' = project. findProperty(' signing.password' ) ?: System . getenv(' SIGNING_PASSPHRASE' )
22
22
ext. ' signing.secretKeyRingFile' = project. findProperty(' signing.secretKeyRingFile' ) ?: " ${ System.properties['user.home']}${ File.separator} .gnupg${ File.separator} secring.gpg"
23
23
isCiBuild = System . getenv(). get(' CI' ) as Boolean
24
- configuredTestParallel = System . getProperty (' maxTestParallel' ) as Integer ?: (isCiBuild ? 3 : Runtime . runtime. availableProcessors() * 3 / 4 as int ?: 1 )
24
+ configuredTestParallel = findProperty (' maxTestParallel' ) as Integer ?: (isCiBuild ? 3 : Runtime . runtime. availableProcessors() * 3 / 4 as int ?: 1 )
25
25
}
26
26
if (isReleaseVersion) {
27
27
apply plugin : ' io.github.gradle-nexus.publish-plugin'
You can’t perform that action at this time.
0 commit comments