Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 482 for What (0.15 sec)

  1. maven-core/plugin-manager.txt

     *
     * h3. plugins should be able to have specific metadata for a plugin model and that be translated -
     * dependencies - resources - configuration - extension points of plugins
     *
     * For a particular application plugin there will be a declarative descriptor for that plugin type.
     *
     * - nexus - the plugin class - UI to contribute - what JS to hook into the UI - what resources to
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/configuration-management.apt

     maven 1.x and 2.x is that all project parameterization occurs in the POM and not from properties
     files.
    
     For many of the more advanced features in Maven2 it is critical that POMs be available in the local repository.
     Features like transitive dependencies and the new parent specification mechanism. The problem we run into is
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java

        MavenExecutionResult setDependencyResolutionResult(DependencyResolutionResult result);
    
        DependencyResolutionResult getDependencyResolutionResult();
    
        // for each exception
        // - knowing what artifacts are missing
        // - project building exception
        // - invalid project model exception: list of markers
        // - xmlpull parser exception
        List<Throwable> getExceptions();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

    import org.apache.maven.execution.MavenSession;
    
    /**
     * Allows core extensions to participate in Maven build session lifecycle.
     *
     * All callback methods (will) follow beforeXXX/afterXXX naming pattern to
     * indicate at what lifecycle point it is being called.
     *
     * @see <a href="https://maven.apache.org/examples/maven-3-lifecycle-extensions.html">example</a>
     * @see <a href="https://issues.apache.org/jira/browse/MNG-4224">MNG-4224</a>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.9K bytes
    - Viewed (0)
  5. apache-maven/README.txt

                              Apache Maven
    
      What is it?
      -----------
    
      Maven is a software project management and comprehension tool. Based on
      the concept of a Project Object Model (POM), Maven can manage a project's
      build, reporting and documentation from a central piece of information.
    
      Documentation
      -------------
    
      The most up-to-date documentation can be found at https://maven.apache.org/.
    
      Release Notes
      -------------
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 13 20:21:20 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

        private static final String LS = System.lineSeparator();
    
        private Artifact artifact;
    
        // Needs to go away
        // These are really overrides now, projects defining dependencies for a plugin that override what is
        // specified in the plugin itself.
        private Set<Artifact> artifactDependencies;
    
        private ArtifactRepository localRepository;
    
        private List<ArtifactRepository> remoteRepositories;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java

            String id = artifact.getGroupId() + ":" + artifact.getArtifactId();
    
            boolean matched = false;
            for (Iterator<String> i = patterns.iterator(); i.hasNext() & !matched; ) {
                // TODO what about wildcards? Just specifying groups? versions?
                if (id.equals(i.next())) {
                    matched = true;
                }
            }
            return matched;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  8. maven-core/lifecycle-executor.txt

      .
      .
      .
    </plugins>
    
    We need this form so that the model builder can make the first pass at merging. Full merging cannot be done because we don't know what the version of the plugin is yet that the user has requested. For plugins in the default lifecycle they are typically defined in the plugin management section of the parent POM. When the merging is complete we are going to have something that looks like the following:
    
    <plugins>
      <plugin>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 9.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

        /**
         * Describes the source of an execution.
         */
        public enum Source {
    
            /**
             * An execution that originates from the direct invocation of a goal from the CLI.
             */
            CLI,
    
            /**
             * An execution that originates from a goal bound to a lifecycle phase.
             */
            LIFECYCLE,
        }
    
        private Source source = Source.LIFECYCLE;
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 15:52:23 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/conf/settings.xml

       | it to several places.
       |
       | That repository definition will have a unique id, so we can create a mirror reference for that
       | repository, to be used as an alternate download site. The mirror site will be the preferred
       | server for that repository.
       |-->
      <mirrors>
        <!-- mirror
         | Specifies a repository mirror site to use instead of a given repository. The repository that
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
Back to top