Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for Motivation (0.2 sec)

  1. 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)
  2. 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)
  3. 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 Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * Return the requested activation(s) of project(s) in this execution.
         * @return requested (de-)activation(s) of project(s) in this execution. Never {@code null}.
         */
        ProjectActivation getProjectActivation();
    
        /**
         * Return the requested activation(s) of profile(s) in this execution.
         * @return requested (de-)activation(s) of profile(s) in this execution. Never {@code null}.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K 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-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)
  7. 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)
  8. pom.xml

    			</exclusions>
    		</dependency>
    		<dependency>
    			<groupId>jakarta.activation</groupId>
    			<artifactId>jakarta.activation-api</artifactId>
    			<version>${jakarta.activation.api.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>com.sun.activation</groupId>
    			<artifactId>jakarta.activation</artifactId>
    			<version>${jakarta.activation.version}</version>
    		</dependency>
    
    		<!-- logging -->
    		<dependency>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Apr 14 04:03:33 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  9. android/pom.xml

          <id>javadocs-jdk11-12</id>
          <activation>
            <jdk>[11,13)</jdk>
          </activation>
          <properties>
            <maven-javadoc-plugin.additionalJOptions>--no-module-directories</maven-javadoc-plugin.additionalJOptions>
          </properties>
        </profile>
        <profile>
          <id>open-jre-modules</id>
          <activation>
            <jdk>[9,]</jdk>
          </activation>
          <properties>
            <!--
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 12 20:26:18 GMT 2024
    - 19.4K 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