Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for CIInfo (0.03 sec)

  1. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperRunner.java

     * under the License.
     */
    package org.apache.maven.cling.invoker.cisupport;
    
    import java.util.List;
    
    import org.apache.maven.api.cli.cisupport.CIInfo;
    
    public class CIDetectorHelperRunner {
        public static void main(String[] args) {
            List<CIInfo> detect = CIDetectorHelper.detectCI();
            if (detect.isEmpty()) {
                System.out.print("NONE;");
            } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/CIDetector.java

    import java.util.Optional;
    
    import org.apache.maven.api.cli.cisupport.CIInfo;
    
    /**
     * Service interface to detect CI system process runs on, if any.
     *
     * @since 4.0.0
     */
    public interface CIDetector {
        /**
         * Returns non-empty optional with CI information, if CI is detected, empty otherwise.
         */
        Optional<CIInfo> detectCI();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. CHANGELOG/CHANGELOG-1.35.md

    
    ## Dependencies
    
    ### Added
    - cyphar.com/go-pathrs: v0.2.1
    - github.com/Masterminds/semver/v3: [v3.4.0](https://github.com/Masterminds/semver/tree/v3.4.0)
    - github.com/gkampitakis/ciinfo: [v0.3.2](https://github.com/gkampitakis/ciinfo/tree/v0.3.2)
    - github.com/gkampitakis/go-diff: [v1.3.2](https://github.com/gkampitakis/go-diff/tree/v1.3.2)
    - github.com/gkampitakis/go-snaps: [v0.5.15](https://github.com/gkampitakis/go-snaps/tree/v0.5.15)
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 17 13:01:55 UTC 2025
    - 228.5K bytes
    - Viewed (0)
Back to top