File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ buildscript {
33 mavenCentral()
44 gradlePluginPortal()
55 if (project. projectVersion. endsWith(' -SNAPSHOT' )) {
6- maven { url " https://s01.oss.sonatype.org/content/repositories/snapshots/" }
6+ maven {
7+ url = " https://s01.oss.sonatype.org/content/repositories/snapshots/"
8+ }
79 }
810 }
911 dependencies {
@@ -29,7 +31,9 @@ allprojects {
2931 repositories {
3032 mavenCentral()
3133 if (project. projectVersion. endsWith(' -SNAPSHOT' )) {
32- maven { url " https://s01.oss.sonatype.org/content/repositories/snapshots/" }
34+ maven {
35+ url = " https://s01.oss.sonatype.org/content/repositories/snapshots/"
36+ }
3337 }
3438 }
3539}
@@ -175,7 +179,7 @@ subprojects {
175179
176180 afterEvaluate {
177181 signing {
178- required { isReleaseVersion && gradle. taskGraph. hasTask(" publish" ) }
182+ required = isReleaseVersion && gradle. taskGraph. hasTask(" publish" )
179183 sign publishing. publications. maven
180184 }
181185 }
You can’t perform that action at this time.
0 commit comments