Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setInactiveProfiles (0.09 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            copy.setUserProperties(original.getUserProperties());
            copy.setShowErrors(original.isShowErrors());
            copy.setActiveProfiles(original.getActiveProfiles());
            copy.setInactiveProfiles(original.getInactiveProfiles());
            copy.setTransferListener(original.getTransferListener());
            copy.setLoggingLevel(original.getLoggingLevel());
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        MavenExecutionRequest addInactiveProfiles(List<String> profiles);
    
        /**
         * @deprecated Since Maven 4: use {@link #getProfileActivation()}.
         */
        @Deprecated
        MavenExecutionRequest setInactiveProfiles(List<String> profiles);
    
        /**
         * @return The list of profiles that the user wants to de-activate.
         * @deprecated Since Maven 4: use {@link #getProfileActivation()}.
         */
        @Deprecated
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top