Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for addInHeader (0.33 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java

                secDispatcher.writeConfiguration(config);
            } else {
                context.addInHeader("");
                context.addInHeader("Values set:");
                context.addInHeader("defaultDispatcher=" + config.getDefaultDispatcher());
                for (Config c : config.getConfigurations()) {
                    context.addInHeader("  dispatcherName=" + c.getName());
                    for (ConfigProperty cp : c.getProperties()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 12K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/EncryptInvoker.java

                context.style = new AttributedStyle();
                context.addInHeader(
                        context.style.italic().bold().foreground(Colors.rgbColor("green")),
                        "Maven Encryption " + CLIReportingUtils.showVersionMinimal());
                context.addInHeader("Tool for secure password management on workstations.");
                context.addInHeader("This tool is part of Apache Maven 4 distribution.");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeInvoker.java

                context.style = new AttributedStyle();
                context.addInHeader(
                        context.style.italic().bold().foreground(Colors.rgbColor("green")),
                        "Maven Upgrade " + CLIReportingUtils.showVersionMinimal());
                context.addInHeader("Tool for upgrading Maven projects and dependencies.");
                context.addInHeader("This tool is part of Apache Maven 4 distribution.");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/EncryptContext.java

        public Map<String, Goal> goals;
    
        public List<AttributedString> header;
        public AttributedStyle style;
        public LineReader reader;
    
        public void addInHeader(String text) {
            addInHeader(AttributedStyle.DEFAULT, text);
        }
    
        public void addInHeader(AttributedStyle style, String text) {
            AttributedStringBuilder asb = new AttributedStringBuilder();
            asb.style(style).append(text);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeContext.java

        // Indentation control for nested logging
        private int indentLevel = 0;
        private String indentString = Indentation.DEFAULT;
    
        public void addInHeader(String text) {
            addInHeader(AttributedStyle.DEFAULT, text);
        }
    
        public void addInHeader(AttributedStyle style, String text) {
            AttributedStringBuilder asb = new AttributedStringBuilder();
            asb.style(style).append(text);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top