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 faf3bd4 commit a7c452fCopy full SHA for a7c452f
release.gradle
@@ -43,7 +43,8 @@ def verifySdkVersion(deployment) {
43
if (entry.getName().equals("sdk-version.txt")) {
44
def version = jar.text.trim();
45
if (!(version ==~ /\d+\.\d+\.\d+/)) {
46
- throw new GradleException("SDK version not in semantic versioning format: " + version);
+ throw new GradleException("SDK version not in semantic versioning format: " + version +
47
+ ". Try running './gradlew clean' before uploading archives.");
48
}
49
return
50
0 commit comments