Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PropertyProfileActivator (0.14 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PropertyProfileActivator.java

     *
     * @see ActivationProperty
     * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead
     */
    @Named("property")
    @Singleton
    @Deprecated(since = "4.0.0")
    public class PropertyProfileActivator implements ProfileActivator {
    
        @Override
        public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) {
            Activation activation = profile.getActivation();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/PropertyProfileActivatorTest.java

    import org.junit.jupiter.api.Test;
    
    /**
     * Tests {@link PropertyProfileActivator}.
     *
     */
    @Deprecated
    class PropertyProfileActivatorTest extends AbstractProfileActivatorTest<PropertyProfileActivator> {
    
        @BeforeEach
        @Override
        void setUp() throws Exception {
            activator = new PropertyProfileActivator();
        }
    
        private Profile newProfile(String key, String value) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

    import org.apache.maven.model.profile.activation.OperatingSystemProfileActivator;
    import org.apache.maven.model.profile.activation.ProfileActivator;
    import org.apache.maven.model.profile.activation.PropertyProfileActivator;
    import org.apache.maven.model.superpom.DefaultSuperPomProvider;
    import org.apache.maven.model.superpom.SuperPomProvider;
    import org.apache.maven.model.validation.DefaultModelValidator;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top