You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewGradleException("Found annotations that should have been removed:\n${offendingAnnotations.join('\n')}")
509
+
def verificationErrors = []
510
+
if (!annotationsThatShouldHaveBeenRemoved.isEmpty()) {
511
+
verificationErrors.add("Found annotations that should have been removed:\n${annotationsThatShouldHaveBeenRemoved.join('\n')}")
512
+
}
513
+
if (!unexpectedExternalAnnotations.isEmpty()) {
514
+
verificationErrors.add("Found unexpected external invisible annotations; add them to annotationsToRemoveFromShadedJar:\n${unexpectedExternalAnnotations.join('\n')}")
495
515
}
496
516
if (!graphqlContractFound) {
497
-
thrownewGradleException('graphql.Contract was removed from the shaded jar')
517
+
verificationErrors.add('graphql.Contract was removed from the shaded jar')
0 commit comments