Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for prerequisites (0.05 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /** MNG-3843 */
        @Test
        void testPrerequisitesAreNotInherited() throws Exception {
            PomTestWrapper pom = buildPom("prerequisites-inheritance/child");
            assertSame(null, pom.getValue("prerequisites"));
        }
    
        @Test
        void testLicensesAreInheritedButNotAggregated() throws Exception {
            PomTestWrapper pom = buildPom("licenses-inheritance/child-2");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

            <!-- Build prerequisites                                                    -->
            <!-- ====================================================================== -->
    
            <field xdoc.separator="blank">
              <name>prerequisites</name>
              <version>4.0.0+</version>
              <description>Describes the prerequisites in the build environment for this project.</description>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

    import org.apache.maven.model.Organization;
    import org.apache.maven.model.Plugin;
    import org.apache.maven.model.PluginExecution;
    import org.apache.maven.model.PluginManagement;
    import org.apache.maven.model.Prerequisites;
    import org.apache.maven.model.Profile;
    import org.apache.maven.model.ReportPlugin;
    import org.apache.maven.model.ReportSet;
    import org.apache.maven.model.Reporting;
    import org.apache.maven.model.Repository;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                PluginIncompatibleException pie = new PluginIncompatibleException(
                        pluginDescriptor.getPlugin(),
                        "\nThe plugin " + pluginDescriptor.getId() + " has unmet prerequisites: \n\t" + messages);
                prerequisiteExceptions.forEach(pie::addSuppressed);
                throw pie;
            }
        }
    
        @Override
        @Deprecated
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java

         * @param p
         * @return List of prerequisite projects
         */
        protected List<MavenProject> getDependencies(MavenProject p) {
            return projectDependencyGraph.getUpstreamProjects(p, false);
        }
    
        /**
         * For the given {@link MavenProject} {@code p} return {@code p}'s uncompleted dependencies.
         *
         * @param p
         * @return List of uncompleted prerequisite projects
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginMavenPrerequisiteChecker.java

                    isRequirementMet = runtimeInformation.isMavenVersion(requiredMavenVersion);
                } catch (IllegalArgumentException e) {
                    logger.warn(
                            "Could not verify plugin's Maven prerequisite as an invalid version is given in "
                                    + requiredMavenVersion,
                            e);
                    return;
                }
                if (!isRequirementMet) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

        /**
         * Gets the upstream projects of the specified project. An upstream project is a project that directly or indirectly
         * is a prerequisite of the given project.
         *
         * @param project The project whose upstream projects should be retrieved, must not be {@code null}.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. api/maven-api-plugin/src/main/mdo/plugin.mdo

                @since Maven 4.0.0-alpha-3
              </description>
              <type>String</type>
            </field>
            <field xdoc.separator="blank">
              <name>mojos</name>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:28:41 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.23.md

      2. Adding the feature flag to the kubelet config:
         featureGates:
         `CSIMigrationRBD`: true
    
      As a Kubernetes cluster operator that administers storage, here are the prerequisites that you must complete before you attempt migration to the RBD CSI driver:
    
      * You must install the Ceph CSI driver (rbd.csi.ceph.com), v3.5.0 or above, into your Kubernetes cluster.
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top