Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit e7a674d

Browse files
committed
Merge remote-tracking branch 'origin/7.0.x'
2 parents 347acaf + 447ef9d commit e7a674d

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff 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"

build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ logger.info("GORM VERSION = ${project.gormVersion}")
2525

2626
ext {
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}

grails-datastore-gorm-hibernate5/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ dependencies {
6060
}
6161

6262
test {
63-
if (isTravisBuild) {
63+
if (isTravisBuild || isCiBuild) {
6464
maxParallelForks = 1
6565
forkEvery = 10
6666
}

0 commit comments

Comments
 (0)