Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for activation (0.22 sec)

  1. maven-core/src/test/resources-project-builder/profile-injected-dependencies/pom.xml

          <artifactId>b</artifactId>
          <version>0.1</version>
        </dependency>
      </dependencies>
    
      <profiles>
        <profile>
          <id>mng-1412</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <!-- profile dependencies last, in the order given -->
          <dependencies>
            <dependency>
              <!-- deliberately respecifying this dep to check merging behavior -->
    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. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java

                    dependencies.create("com.sun.xml.bind:jaxb-core:2.3.0.1"),
                    dependencies.create("com.sun.xml.bind:jaxb-impl:2.3.0.1"),
                    dependencies.create("javax.activation:activation:1.1.1")
            );
        }
    
        private Configuration resolveGuava() {
            Project project = getProject();
            DependencyHandler dependencies = project.getDependencies();
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 26 10:58:32 GMT 2023
    - 13.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

        }
    
        public List<String> getGoals() {
            return request.getGoals();
        }
    
        /**
         * Gets the user properties to use for interpolation and profile activation. The user properties have been
         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
         *
         * @return The user properties, never {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/profiles/activation/DetectedProfileActivator.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.profiles.activation;
    
    import org.apache.maven.model.Profile;
    
    /**
     * DetectedProfileActivator
     */
    @Deprecated
    public abstract class DetectedProfileActivator implements ProfileActivator {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivationException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.profiles.activation;
    
    /**
     * ProfileActivationException
     */
    @Deprecated
    public class ProfileActivationException extends Exception {
    
        private static final long serialVersionUID = -90820222109103638L;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  6. maven-core/plugin-manager.txt

    * installation
    * activation
    * update
    * deactivation
    * un-installation
    
    When a plugin is installed we may want to check the license and make users agree. We may also want to unpack the given plugin in a particular location.
    
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                </build>
            </profile>
            <profile>
                <id>restrict-doclint</id>
                <!-- doclint is only supported by JDK 8 -->
                <activation>
                    <jdk>[1.8,)</jdk>
                </activation>
                <build>
                    <plugins>
                        <plugin>
                            <artifactId>maven-compiler-plugin</artifactId>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 24.5K bytes
    - Viewed (0)
  8. apache-maven/pom.xml

            </executions>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
          <id>create-distribution-in-dir</id>
          <activation>
            <property>
              <name>distributionTargetDir</name>
            </property>
          </activation>
          <build>
            <plugins>
              <plugin>
                <groupId>org.apache.maven.plugins</groupId>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  9. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val jacksonCore = "com.fasterxml.jackson.core:jackson-core"
        val jacksonDatabind = "com.fasterxml.jackson.core:jackson-databind"
        val jakartaActivation = "com.sun.activation:jakarta.activation"
        val jakartaXmlBind = "jakarta.xml.bind:jakarta.xml.bind-api"
        val jansi = "org.fusesource.jansi:jansi"
        val jatl = "com.googlecode.jatl:jatl"
        val javaPoet = "com.squareup:javapoet"
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/index.apt

       * <<in a given phase, goals order is not expected to be guaranteed nor finely tuned>>:
         it is just a consequence of the order obtained during {{{../maven-model-builder/}effective model building}},
         which combines profile activation+injection and inheritance assembly from parents,
    
       * known limitations are notably that:
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jun 14 05:48:39 GMT 2023
    - 5.3K bytes
    - Viewed (0)
Back to top