Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for Motivation (0.2 sec)

  1. build-logic-commons/build-platform/build.gradle.kts

            }
            api("com.google.code.findbugs:jsr305:3.0.2")
            api("commons-io:commons-io:2.8.0")
            api("commons-lang:commons-lang:2.6")
            api("io.mockk:mockk:1.12.4")
            api("javax.activation:activation:1.1.1")
            api("javax.xml.bind:jaxb-api:2.3.1")
            api("com.sun.xml.bind:jaxb-core:2.2.11")
            api("com.sun.xml.bind:jaxb-impl:2.2.11")
            api("junit:junit:4.13.2")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/ProjectActivation.java

            return this.activations.stream().filter(activation -> predicate.test(activation.activationSettings));
        }
    
        private Set<String> getProjectSelectors(final Predicate<ActivationSettings> predicate) {
            return getProjects(predicate).map(activation -> activation.selector).collect(toSet());
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/profile-dependencies-multiple-profiles/pom.xml

              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
          <id>profile-1</id>
          <activation>
            <property>
              <name>includeProfile</name>
            </property>
          </activation>
          <dependencies>
            <dependency>
              <groupId>org.apache.maven.its.it0021</groupId>
              <artifactId>a</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml

        </pluginManagement>
      </build>
    
      <profiles>
        <profile>
          <!-- NOTE: This test injects the plugin configuration via a profile -->
          <id>maven-core-it</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <build>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.its.plugins</groupId>
                <artifactId>maven-it-plugin-configuration</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-settings/test-pom-and-settings-interpolation/pom.xml

        <pomVsSettingsInterpolated>${pomVsSettings}</pomVsSettingsInterpolated>
      </properties>
    
      <profiles>
        <profile>
          <id>pom</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <properties>
            <pomProfile>applied</pomProfile>
            <pomVsSettings>pom</pomVsSettings>
          </properties>
        </profile>
      </profiles>
    
      <build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 11 18:17:16 GMT 2021
    - 2.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/subproject/pom.xml

      </build>
    
      <profiles>
        <profile>
          <!-- an active but empty profile to ensure profile injection does not interfere with plugin configuration -->
          <id>child</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml

            <version>2.1-SNAPSHOT</version>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
          <id>test</id>
          <activation>
            <property>
              <name>!skip-mng4416</name>
            </property>
          </activation>
          <build>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 4.4K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml

      <profiles>
        <profile>
          <!-- an active but empty profile to ensure profile injection does not interfere with plugin configuration -->
          <id>parent</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/profiles/ProfileManager.java

     * under the License.
     */
    package org.apache.maven.profiles;
    
    import java.util.List;
    import java.util.Map;
    import java.util.Properties;
    
    import org.apache.maven.model.Profile;
    import org.apache.maven.profiles.activation.ProfileActivationException;
    
    /**
     * ProfileManager
     */
    @Deprecated
    public interface ProfileManager {
    
        void addProfile(Profile profile);
    
        void explicitlyActivate(String profileId);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/pom.xml

        <interpolated>${overridden}</interpolated>
      </properties>
    
      <profiles>
        <profile>
          <id>it-parent</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
Back to top