Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for general (0.21 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/api/services/model/PluginConfigurationExpander.java

    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles expansion of general build plugin configuration into individual executions.
     *
     */
    public interface PluginConfigurationExpander {
    
        /**
         * Merges values from general build plugin configuration into the individual plugin executions of the given model.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

            BASE,
            V20,
            V30,
            V31,
            V40
        }
    
        /**
         * Gets the identifier of the model from which the problem originated. While the general form of this identifier is
         * <code>groupId:artifactId:version</code> the returned identifier need not be complete. The identifier is derived
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java

         */
        public ModelBuilderResult getResult() {
            return result;
        }
    
        /**
         * Gets the identifier of the POM whose effective model could not be built. The general format of the identifier is
         * {@code <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the
         * exception is thrown so this information is merely meant to assist the user.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

            return merger.merge(child, parent, false, hints);
        }
    
        /**
         * Calculates the relative path from the base directory of the parent to the parent directory of the base directory
         * of the child. The general idea is to adjust inherited URLs to match the project layout (in SCM).
         *
         * <p>This calculation is only a heuristic based on our conventions.
         * In detail, the algo relies on the following assumptions: <ul>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom

      <artifactId>hamcrest-parent</artifactId>
      <version>1.3</version>
      <packaging>pom</packaging>
    
      <name>Hamcrest Maven Parent</name>
      <url>https://github.com/hamcrest/JavaHamcrest</url>
      <description>General parent POM for all hamcrest libraries.</description>
    
      <licenses>
        <license>
          <name>New BSD License</name>
          <url>http://www.opensource.org/licenses/bsd-license.php</url>
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultPluginConfigurationExpander.java

    import org.apache.maven.api.services.ModelProblemCollector;
    import org.apache.maven.api.services.model.PluginConfigurationExpander;
    import org.apache.maven.api.xml.XmlNode;
    
    /**
     * Handles expansion of general build plugin configuration into individual executions.
     *
     */
    @Named
    @Singleton
    public class DefaultPluginConfigurationExpander implements PluginConfigurationExpander {
    
        @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  7. maven-core/plugin-manager.txt

     * lib 1.0 and lib 2.0 when debugger hits a breakpoint inside a class from the library, IDE needs to
     * know which version of library the class comes from
     */
    
    This document outlines the concerns of a general plugin manager that would be used in conjunction with any Plexus-based application. The following outlined concerns are an attempt to describe what a plugin manager would need to do for Maven and for Nexus.
    
    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)
  8. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/apache/3/apache-3.pom

             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <!-- Shared parent. Doesn't define a lot of things about Apache like general mailing lists, but does
           define the settings common to all projects at Apache -->
      <groupId>org.apache</groupId>
      <artifactId>apache</artifactId>
      <version>3</version>
      <packaging>pom</packaging>
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 3.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

    import org.eclipse.aether.graph.DependencyFilter;
    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
     * Provides basic services to manage Maven plugins and their mojos. This component is kept general in its design such
     * that the plugins/mojos can be used in arbitrary contexts. In particular, the mojos can be used for ordinary build
     * plugins as well as special purpose plugins like reports.
     *
     * @since 3.0
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

    /**
     * Result of a project build call.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ProjectBuilderResult {
    
        /**
         * Gets the identifier of the project that could not be built. The general format of the identifier is {@code
         * <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the exception
         * is thrown so this information is merely meant to assist the user.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.6K bytes
    - Viewed (0)
Back to top