Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TeamCity (0.05 sec)

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

     */
    package org.apache.maven.cling.invoker.cisupport;
    
    import java.util.Optional;
    
    import org.apache.maven.api.cli.cisupport.CIInfo;
    
    /**
     * TeamCity CI support.
     */
    public class TeamcityCIDetector implements CIDetector {
        public static final String NAME = "TeamCity";
    
        private static final String TEAMCITY_VERSION = "TEAMCITY_VERSION";
    
        @Override
        public Optional<CIInfo> detectCI() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperTest.java

        }
    
        @Test
        void circleci() throws Exception {
            assertEquals(CircleCIDetector.NAME + ";", runner(Map.of("CIRCLECI", "true")));
        }
    
        @Test
        void teamcity() throws Exception {
            assertEquals(TeamcityCIDetector.NAME + ";", runner(Map.of("TEAMCITY_VERSION", "1.2.3")));
        }
    
        @Test
        void github() throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top