- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 132 for indent (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
indent = indent.substring(2); } @Override public void includeArtifact(Artifact artifact) { logger.debug(indent + artifact + " (selected for " + artifact.getScope() + ")"); } @Override public void omitForNearer(Artifact omitted, Artifact kept) { String omittedVersion = omitted.getVersion(); String keptVersion = kept.getVersion();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.8K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestrator.java
context.indent(); context.info("Processed: " + result.processedPoms().size() + " POMs"); context.success("Modified: " + result.modifiedPoms().size() + " POMs"); context.unindent(); } else { context.info("Strategy completed (no changes needed)"); context.indent(); context.info("Processed: " + result.processedPoms().size() + " POMs");Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
// last ANSI escape code is reset: no next color nextColor = ""; } } // effective line, with indent and reset if end is colored line = indent + line + ("".equals(nextColor) ? "" : ANSI_RESET); if ((i == lines.length - 1) && (context.options().showErrors().orElse(false)Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 11 17:20:46 GMT 2025 - 28.2K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/UpgradeContextTest.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Jul 15 09:35:08 GMT 2025 - 3.3K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeStrategy.java
context.info(getDescription() + " Summary:"); context.indent(); context.info(result.modifiedCount() + " POM(s) modified"); context.info(result.unmodifiedCount() + " POM(s) needed no changes"); if (result.errorCount() > 0) { context.info(result.errorCount() + " POM(s) had errors"); } context.unindent(); } /**
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 7.1K bytes - Click Count (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);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 16.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeContext.java
} /** * Increases the indentation level for nested logging. */ public void indent() { indentLevel++; } /** * Decreases the indentation level for nested logging. */ public void unindent() { if (indentLevel > 0) { indentLevel--; } } /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 4.7K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
// last ANSI escape code is reset: no next color nextColor = ""; } } // effective line, with indent and reset if end is colored line = indent + line + ("".equals(nextColor) ? "" : ANSI_RESET); if ((i == lines.length - 1) && (showErrors || (summary.getException() instanceof InternalErrorException))) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java
Document pomDocument = entry.getValue(); processedPoms.add(pomPath); context.info(pomPath + " (checking for Maven 4 compatibility issues)"); context.indent(); try { boolean hasIssues = false; // Apply all compatibility fixes hasIssues |= fixUnsupportedCombineChildrenAttributes(pomDocument, context);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 22.2K bytes - Click Count (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(
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 27.6K bytes - Click Count (0)