Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java

        /**
         * Check if the consumer POM feature is active.
         */
        public static boolean consumerPom(@Nullable Properties userProperties) {
            return doGet(userProperties, Constants.MAVEN_CONSUMER_POM, true);
        }
    
        /**
         * Check if the consumer POM feature is active.
         */
        public static boolean consumerPom(@Nullable Map<String, String> userProperties) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Sep 11 16:31:06 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java

            if (Features.consumerPom(session.getUserProperties()) && consumerPomPresent(request.getArtifacts())) {
                request.setArtifacts(replacePom(request.getArtifacts()));
            }
            return request;
        }
    
        public DeployRequest remapDeployArtifacts(RepositorySystemSession session, DeployRequest request) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top