Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ActivationProperty (0.27 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/PropertyProfileActivator.java

    package org.apache.maven.internal.impl.model.profile;
    
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.model.Activation;
    import org.apache.maven.api.model.ActivationProperty;
    import org.apache.maven.api.model.Profile;
    import org.apache.maven.api.services.BuilderProblem;
    import org.apache.maven.api.services.ModelProblem;
    import org.apache.maven.api.services.ModelProblemCollector;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/profiles/manager/DefaultProfileManagerTest.java

            Profile syspropActivated = new Profile();
            syspropActivated.setId("syspropActivated");
    
            Activation syspropActivation = new Activation();
    
            ActivationProperty syspropProperty = new ActivationProperty();
            syspropProperty.setName("java.version");
    
            syspropActivation.setProperty(syspropProperty);
    
            syspropActivated.setActivation(syspropActivation);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                    .exists("exists" + Long.toHexString(entropy.nextLong()))
                    .missing("missing" + Long.toHexString(entropy.nextLong()))
                    .build();
            ActivationProperty ap = ActivationProperty.newBuilder()
                    .name("name" + Long.toHexString(entropy.nextLong()))
                    .value("value" + Long.toHexString(entropy.nextLong()))
                    .build();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

                activation.jdk(modelActivation.getJdk());
    
                org.apache.maven.api.model.ActivationProperty modelProp = modelActivation.getProperty();
    
                if (modelProp != null) {
                    ActivationProperty prop = ActivationProperty.newBuilder()
                            .name(modelProp.getName())
                            .value(modelProp.getValue())
                            .build();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

                activation.jdk(modelActivation.getJdk());
    
                org.apache.maven.api.model.ActivationProperty modelProp = modelActivation.getProperty();
    
                if (modelProp != null) {
                    ActivationProperty prop = ActivationProperty.newBuilder()
                            .name(modelProp.getName())
                            .value(modelProp.getValue())
                            .build();
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    stk.pop();
                }
            }
    
            @Override
            protected ActivationProperty.Builder transformActivationProperty_Name(
                    Supplier<? extends ActivationProperty.Builder> creator,
                    ActivationProperty.Builder builder,
                    ActivationProperty target) {
                stk.push(nextFrame("name"));
                try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  7. api/maven-api-settings/src/main/mdo/settings.mdo

              <description>
                Specifies that this profile will be activated when this property is specified.
              </description>
              <association>
                <type>ActivationProperty</type>
              </association>
            </field>
            <field>
              <name>file</name>
              <version>1.0.0+</version>
              <description>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.0.0+</version>
              <description>Specifies that this profile will be activated when this property is
                specified.</description>
              <association>
                <type>ActivationProperty</type>
              </association>
            </field>
            <field>
              <name>file</name>
              <version>4.0.0+</version>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top