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.
1 parent d33e849 commit 1b84af1Copy full SHA for 1b84af1
build.gradle
@@ -65,6 +65,12 @@ configure(allprojects) {
65
apply plugin: "propdeps-eclipse"
66
apply plugin: "io.spring.dependency-management"
67
68
+ afterEvaluate { subproject ->
69
+ if (subproject.description == null || subproject.description.isEmpty()) {
70
+ throw new InvalidUserDataException("A project description is required for publishing to maven central")
71
+ }
72
73
+
74
apply from: "${rootProject.projectDir}/publish-maven.gradle"
75
76
repositories {
0 commit comments