We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e3e261 + 29735e6 commit 79b3541Copy full SHA for 79b3541
build.gradle
@@ -257,11 +257,11 @@ subprojects {
257
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
258
maven { url 'https://repo.spring.io/milestone' }
259
if (version.endsWith('-SNAPSHOT') || version.contains('-SNAPSHOT-')) { //classic or customized snapshots
260
- if (System.getenv()["bamboo_buildNumber"] == null) {
+ if (System.getenv()["GITHUB_ACTION"] == null) {
261
mavenLocal()
262
}
263
else {
264
- println 'Bamboo CI detected, avoiding use of mavenLocal()'
+ println 'GitHub Action detected, avoiding use of mavenLocal()'
265
266
maven { url 'https://repo.spring.io/snapshot' }
267
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
0 commit comments