- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for CIDetectorHelper (0.08 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelper.java
* one element, it will remove the {@link GenericCIDetector} result, assuming a more specific one is also present. */ public final class CIDetectorHelper { private CIDetectorHelper() {} public static List<CIInfo> detectCI() { ArrayList<CIInfo> result = ServiceLoader.load(CIDetector.class).stream() .map(ServiceLoader.Provider::get)Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 1.9K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperRunner.java
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 { detect.forEach(d -> System.out.print(d.name() + (d.isVerbose() ? "+VERBOSE" : "") + ";")); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 1.3K bytes - Click Count (0)