Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CIInfo (0.02 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            public Path topDirectory;
    
            @Nullable
            public Path rootDirectory;
    
            @Nullable
            public List<CoreExtensions> extensions;
    
            @Nullable
            public CIInfo ciInfo;
    
            @Nullable
            public Options options;
    
            public Map<String, String> extraInterpolationSource() {
                Map<String, String> extra = new HashMap<>();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                if (context.options().nonInteractive().orElse(false)) {
                    return false;
                } else {
                    if (context.invokerRequest.ciInfo().isPresent()) {
                        CIInfo ci = context.invokerRequest.ciInfo().get();
                        context.logger.info(
                                "Making this build non-interactive, because CI detected. Disable this detection by adding --force-interactive.");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

            boolean quiet = context.options().quiet().orElse(false);
            boolean logFile = context.options().logFile().isPresent();
            boolean quietCI = context.invokerRequest.ciInfo().isPresent()
                    && !context.options().forceInteractive().orElse(false);
    
            TransferListener delegate;
            if (quiet || noTransferProgress || quietCI) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
Back to top