Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for entire (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorContext.java

     * under the License.
     */
    package org.apache.maven.lifecycle.internal;
    
    import org.apache.maven.execution.MavenExecutionResult;
    
    /**
     * Context that is fixed for the entire reactor build.
     *
     * @since 3.0
     *         NOTE: This class is not part of any public api and can be changed or deleted without prior notice.
     */
    public class ReactorContext {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorBuildStatus.java

    import org.apache.maven.execution.ProjectDependencyGraph;
    import org.apache.maven.lifecycle.internal.builder.BuilderCommon;
    import org.apache.maven.project.MavenProject;
    
    /**
     * Contains status information that is global to an entire reactor build.
     *
     * @since 3.0
     */
    public class ReactorBuildStatus {
        private final ProjectDependencyGraph projectDependencyGraph;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationRequest.java

         * be unmarshalled.
         *
         * @param configuration The configuration to unmarshal, may be {@code null}.
         * @param element Configuration element name to unmarshal or {@code null} to unmarshal entire configuration.
         * @return This request for chaining, never {@code null}.
         */
        BeanConfigurationRequest setConfiguration(Object configuration, String element);
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

        1.13. "You" (or "Your") means an individual or a legal entity
        exercising rights under, and complying with all of the terms of,
        this License. For legal entities, "You" includes any entity which
        controls, is controlled by, or is under common control with You. For
        purposes of this definition, "control" means (a) the power, direct
        or indirect, to cause the direction or management of such entity,
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

     are available in the ${maven.home}/site-configuration directory
    
    +-----+
    ${maven.home}
         |
         +--- maven.properties
    +-----+
    
    * Group configuration
    
     As far as properties go for an entire build the maven.properties could be placed at
     the top of the group but I'm not really sure how this might work. There could probably
     also be a directory for plugins.xml and maven.properties.
    
    * Project configuration
    
    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)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

            public int compareTo(Item item) {
                if (item == null) {
                    if (size() == 0) {
                        return 0; // 1-0 = 1- (normalize) = 1
                    }
                    // Compare the entire list of items with null - not just the first one, MNG-6964
                    for (Item i : this) {
                        int result = i.compareTo(null);
                        if (result != 0) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 26K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

                derived from this one. This plugin configuration will not be resolved or bound to the
                lifecycle unless referenced. Any local configuration for a given plugin will override
                the plugin's entire definition here.</description>
              <association>
                <type>PluginManagement</type>
              </association>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java

            Set<String> artifacts = new LinkedHashSet<>();
            Set<String> packages = new LinkedHashSet<>();
    
            try {
                for (File entry : classpath) {
                    ExtensionDescriptor descriptor = BUILDER.build(entry);
                    if (descriptor != null) {
                        artifacts.addAll(descriptor.getExportedArtifacts());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 07:14:56 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

                    return rx - lx;
                } else {
                    return lx - rx;
                }
            };
    
            Map<String, Lifecycle> lifecyclesMap = lookupLifecycles();
    
            // ensure canonical order of standard lifecycles
            return lifecyclesMap.values().stream()
                    .peek(l -> Objects.requireNonNull(l.getId(), "A lifecycle must have an id."))
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

    @Named
    @Singleton
    public class DefaultMavenPluginManager implements MavenPluginManager {
    
        /**
         * <p>
         * PluginId =&gt; ExtensionRealmCache.CacheRecord map MavenProject context value key. The map is used to ensure the
         * same class realm is used to load build extensions and load mojos for extensions=true plugins.
         * </p>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
Back to top