Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for definition (0.15 sec)

  1. LICENSE

          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
          direction or management of such entity, whether by contract or
          otherwise, or (ii) ownership of fifty percent (50%) or more of the
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 11 20:39:30 GMT 2013
    - 11.1K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeployer.java

         * filename of the source file.
         *
         * @param basedir the directory where the artifact is stored
         * @param finalName the name of the artifact without extension
         * @param artifact the artifact definition
         * @param deploymentRepository the repository to deploy to
         * @param localRepository the local repository to install into
         * @throws ArtifactDeploymentException if an error occurred deploying the artifact
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

    import java.util.*;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.model.Plugin;
    
    /**
     * Lifecycle definition
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Lifecycle extends ExtensibleEnum {
    
        String CLEAN = "clean";
    
        String DEFAULT = "default";
    
        String SITE = "site";
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

            for (Lifecycle lifecycle : getLifeCycles()) {
                logger.debug("Lifecycle {}", lifecycle);
    
                for (String phase : lifecycle.getPhases()) {
                    // The first definition wins.
                    if (!phaseToLifecycleMap.containsKey(phase)) {
                        phaseToLifecycleMap.put(phase, lifecycle);
                    } else if (logger.isWarnEnabled()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java

     * under the License.
     */
    package org.apache.maven.lifecycle.mapping;
    
    import java.util.Collections;
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * Lifecycle definition for a packaging (multiple packagings share the same lifecycle id = usually "default").
     */
    public class Lifecycle {
        /**
         * Field id
         */
        private String id;
    
        /**
         * Field phases
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/SnapshotArtifactRepositoryMetadata.java

    import org.apache.maven.artifact.repository.ArtifactRepository;
    
    /**
     * Metadata for the artifact version directory of the repository.
     *
     * TODO split instantiation (versioning, plugin mappings) from definition
     */
    @Deprecated
    public class SnapshotArtifactRepositoryMetadata extends AbstractRepositoryMetadata {
        private Artifact artifact;
    
        public SnapshotArtifactRepositoryMetadata(Artifact artifact) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  7. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

          </description>
          <version>1.0.0+</version>
          <fields>
            <field>
              <name>toolchains</name>
              <version>1.0.0+</version>
              <description>The toolchain instance definition.</description>
              <association xml.itemsStyle="flat">
                <type>ToolchainModel</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
          </fields>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

     * under the License.
     */
    package org.apache.maven.lifecycle;
    
    import java.util.*;
    import java.util.stream.Collectors;
    
    import org.apache.maven.lifecycle.mapping.LifecyclePhase;
    
    /**
     * Lifecycle definition, with eventual plugin bindings (when they are not packaging-specific).
     */
    public class Lifecycle {
        public Lifecycle() {}
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterException.java

                    } catch (ClassNotFoundException e) {
                        // assume it is not assignable from Collection or Map
                    }
                }
    
                messageBuffer.append("Inside the definition for plugin '");
                messageBuffer.append(mojo.getPluginDescriptor().getArtifactId());
                messageBuffer.append("', specify the following:").append(LS).append(LS);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 09 23:46:02 GMT 2023
    - 6.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         * the list denotes the model on which the model builder was originally invoked. The last identifier will always be
         * an empty string that by definition denotes the super POM.
         *
         * @return The model identifiers from the lineage of models, never {@code null}.
         */
        @Nonnull
        List<String> getModelIds();
    
        /**
         * Gets the file model.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.5K bytes
    - Viewed (0)
Back to top