This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
grails-datastore-gorm-hibernate5 Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,14 @@ updates:
66 interval : " daily"
77 labels :
88 - " type: dependency upgrade"
9+ - package-ecosystem : gradle
10+ directory : " /"
11+ schedule :
12+ interval : daily
13+ open-pull-requests-limit : 10
14+ target-branch : 7.0.x
15+ ignore :
16+ - dependency-name : com.gradle.build-scan
17+ versions :
18+ - 3.5.1
19+ - " 3.6"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ logger.info("GORM VERSION = ${project.gormVersion}")
2525
2626ext {
2727 isTravisBuild = System . getenv(). get(" TRAVIS" ) == ' true'
28- isCiBuild = project. hasProperty(" isCiBuild" )
28+ isCiBuild = project. hasProperty(" isCiBuild" ) || System . getenv() . get( " CI " ) as Boolean
2929 isBuildSnapshot = version. endsWith(' -SNAPSHOT' )
3030 isReleaseVersion = ! isBuildSnapshot
3131 nexusUsername = System . getenv(" SONATYPE_USERNAME" ) ?: project. hasProperty(" sonatypeOssUsername" ) ? project. sonatypeOssUsername : ' '
@@ -114,8 +114,6 @@ subprojects { project ->
114114 }
115115
116116 dependencies {
117- // TODO: Remove spring-boot-starter-webflux, and reactor-test once update to Spring Boot 2.4.1
118- implementation ' org.springframework.boot:spring-boot-starter-webflux'
119117 testImplementation " io.projectreactor:reactor-test:3.4.0"
120118 testImplementation " org.codehaus.groovy:groovy-test-junit5:$groovyVersion "
121119 testImplementation(" org.spockframework:spock-core:$spockVersion " ) { transitive = false }
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ dependencies {
6060}
6161
6262test {
63- if (isTravisBuild) {
63+ if (isTravisBuild || isCiBuild ) {
6464 maxParallelForks = 1
6565 forkEvery = 10
6666 }
You can’t perform that action at this time.
0 commit comments