- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getCurrentVersion (0.14 sec)
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationMissingRule.java
public Violation maybeViolation(final JApiCompatibility member) { if (shouldSkipViolationCheckFor(member) || getRepository().isSince(getCurrentVersion(), member)) { return null; } return acceptOrReject(member, Violation.error(member, SINCE_ERROR_MESSAGE + getCurrentVersion())); } private boolean shouldSkipViolationCheckFor(JApiCompatibility member) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 21 16:02:23 UTC 2023 - 2.7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
writer.setIndent(" ") new Gson().toJson(acceptanceJson, AcceptedApiChange, writer) } return stringWriter.toString() } String getCurrentVersion() { return context.getUserData().get("currentVersion") } private String relativePathToMainApiChanges() { if (null != mainApiChangesJsonFile && null != projectRootDir) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:30:48 UTC 2024 - 10.4K bytes - Viewed (0)