- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for currentVersion (0.05 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java
String currentVersion; boolean isProperty = false; String propertyName = null; if (versionElement != null) { currentVersion = versionElement.textContentTrimmed(); // Check if version is a property reference if (currentVersion.startsWith("${") && currentVersion.endsWith("}")) { isProperty = true;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 37K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java
processedPoms.add(pomPath); String currentVersion = ModelVersionUtils.detectModelVersion(pomDocument); context.info(pomPath + " (current: " + currentVersion + ")"); context.indent(); try { if (currentVersion.equals(targetModelVersion)) { context.success("Already at target version " + targetModelVersion);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 16.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
processedPoms.add(pomPath); String currentVersion = ModelVersionUtils.detectModelVersion(pomDocument); context.info(pomPath + " (current: " + currentVersion + ")"); context.indent(); try { if (!ModelVersionUtils.isEligibleForInference(currentVersion)) { context.warning(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 27.6K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy
addSetupRule(AcceptedRegressionsRuleSetup, [acceptedApiChanges: acceptedChanges]) addSetupRule(SinceAnnotationRuleCurrentGradleVersionSetup, [currentVersion: currentVersion]) addSetupRule(BinaryCompatibilityRepositorySetupRule, [ (BinaryCompatibilityRepositorySetupRule.Params.sourceRoots): sourceRoots.collect { it.absolutePath } as Set,Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 5.7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle
} def isSnapshot = gradleModule.identity.snapshot inputs.files(acceptedViolationsFiles) inputs.property("baseline.version", compatibilityBaselineVersion) inputs.property("currentVersion", baseVersion) def apiSourceFolders = configurations.currentSources.incoming.artifactView { lenient(true) }.files inputs.files("apiSourceFolders", apiSourceFolders) inputs.files(currentClasspath)Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 8.9K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
new Gson().toJson(acceptanceJson, AcceptedApiChange, writer) } return stringWriter.toString() } String getCurrentVersion() { return context.getUserData().get("currentVersion") } private String relativePathToMainApiChanges() { if (null != mainApiChangesJsonFile && null != projectRootDir) { return projectRootDir.relativePath(mainApiChangesJsonFile)
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 10.5K bytes - Viewed (0)