Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for notes (0.17 sec)

  1. apache-maven/README.txt

      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
      -------------
    
      The full list of changes can be found at https://maven.apache.org/docs/history.html.
    
      System Requirements
      -------------------
    
      JDK:
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Mar 13 20:21:20 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/offline-mode.apt

      of required artifacts and other classpath elements, this is assumed by the
      mojo API to be in a correct state, and will be handled by the Wagon
      modifications.
    
    
    * Implementation Notes
    
    ** Accessibility of offline status
    
      Offline status should be indicated in the MavenSettings instance, since it
      can conceivably be set from either the settings.xml or the command-line.
    
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * Shortcut for {@code getService(DependencyResolver.class).flatten(...)}.
         *
         * @param node node for which to get a flattened list
         * @param scope build path scope (main compile, test compile, etc.) of desired nodes
         * @return flattened list of node with the given build path scope
         * @throws org.apache.maven.api.services.DependencyResolverException if the dependency flattening failed
         *
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 30K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/MetadataGraphNode.java

    /**
     * MetadataGraph node - as it's a directed graph - holds adjacency lists for incident and exident nodes
     *
     *
     */
    @Deprecated
    public class MetadataGraphNode {
        /** node payload */
        MavenArtifactMetadata metadata;
    
        /** nodes, incident to this (depend on me) */
        List<MetadataGraphNode> inNodes;
    
        /** nodes, exident to this (I depend on) */
        List<MetadataGraphNode> exNodes;
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollector.java

     *
     * @since 4.0.0
     */
    @Experimental
    public interface DependencyCollector extends Service {
    
        /**
         * Collects the transitive dependencies and builds a dependency graph.
         * Note that this operation is only concerned about determining the coordinates of the
         * transitive dependencies and does not actually resolve the artifact files.
         *
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml

      <description>
        Verify that attributes in plugin configuration elements are not erroneously duplicated to other elements when
        plugin management and a profile are used.
      </description>
    
      <build>
        <!-- NOTE: This test used plugin management for the IT plugin -->
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml

              <artifactId>maven-it-plugin-configuration</artifactId>
              <version>2.1-SNAPSHOT</version>
              <inherited>true</inherited>
              <configuration>
                <listParam>
                  <!-- NOTE: These values are deliberately not in alpha order! -->
                  <listParam>PARENT-1</listParam>
                  <listParam>PARENT-3</listParam>
                  <listParam>PARENT-2</listParam>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolver.java

    @Deprecated
    public interface GraphConflictResolver {
        String ROLE = GraphConflictResolver.class.getName();
    
        /**
         * Cleanses the supplied graph by leaving only one directed versioned edge\
         * between any two nodes, if multiple exists. Uses scope relationships, defined
         * in <code>ArtifactScopeEnum</code>
         *
         * @param graph the "dirty" graph to be simplified via conflict resolution
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/GoalTask.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.lifecycle.internal;
    
    /**
     * A task that is a goal.
     * <p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public final class GoalTask extends Task {
        public GoalTask(String pluginGoal) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java

         * @return the assembled toolchains, never {@code null}
         */
        @Nonnull
        PersistedToolchains getEffectiveToolchains();
    
        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
         * {@link BuilderProblem.Severity#WARNING} and below are reported here. Problems with a higher severity level cause
         * the settings builder to fail with a {@link ToolchainsBuilderException}.
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.8K bytes
    - Viewed (0)
Back to top