Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for consumerPom (0.66 sec)

  1. api/maven-api-core/src/test/java/org/apache/maven/api/feature/FeaturesTest.java

                    Constants.MAVEN_DEPLOY_BUILD_POM, "false",
                    Constants.MAVEN_CONSUMER_POM, "false");
    
            assertFalse(Features.deployBuildPom(properties));
            assertFalse(Features.consumerPom(properties));
        }
    
        @Test
        void testConsistencyWithOtherFeatureMethodsTrue() {
            // Test that deployBuildPom behaves consistently with other feature methods when true
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 04 19:42:23 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java

            return doGet(userProperties, Constants.MAVEN_MAVEN3_PERSONALITY, false);
        }
    
        /**
         * Check if the consumer POM feature is active.
         */
        public static boolean consumerPom(@Nullable Map<String, ?> userProperties) {
            return doGet(userProperties, Constants.MAVEN_CONSUMER_POM, !mavenMaven3Personality(userProperties));
        }
    
        /**
         * Check if build POM deployment is enabled.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 04 19:42:23 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top