Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for removed (0.18 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            if (!Objects.equals(omittedVersion, keptVersion)) {
                logger.debug(indent + omitted + " (removed - nearer found: " + keptVersion + ")");
            }
        }
    
        public void omitForCycle(Artifact omitted) {
            logger.debug(indent + omitted + " (removed - causes a cycle in the graph)");
        }
    
        public void updateScopeCurrentPom(Artifact artifact, String ignoredScope) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  2. maven-core/src/main/mdo/extension.mdo

                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
              <description><![CDATA[Artifacts in the format <code>groupId:artifactId</code>. All the ones listed here are filtered (i.e. removed) from plugin and build extension class realms,
              i.e. referencing any of those coordinates in plugin/build extension dependencies has no effect.]]>
              </description>
            </field>
          </fields>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

        // fully populated Plugin objects, including executions with goals and default configuration taken
        // from the plugin.xml inside a plugin.
        //
        // TODO This whole method could probably removed by injecting lifeCyclePluginAnalyzer straight into client site.
        // TODO But for some reason the whole plexus appcontext refuses to start when I try this.
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 7K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeployer.java

         * @param localRepository the local repository to install into
         * @throws ArtifactDeploymentException if an error occurred deploying the artifact
         * @deprecated to be removed before 2.0 after the install/deploy plugins use the alternate
         *             method
         */
        @Deprecated
        void deploy(
                String basedir,
                String finalName,
                Artifact artifact,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/ArtifactDescriptorReaderDelegate.java

    /**
     * Populates Aether {@link ArtifactDescriptorResult} from Maven project {@link Model}.
     * <p>
     * <strong>Note:</strong> This class is part of work in progress and can be changed or removed without notice.
     * @since 3.2.4
     */
    public class ArtifactDescriptorReaderDelegate {
        public void populateResult(InternalSession session, ArtifactDescriptorResult result, Model model) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

                    mojos.add(mojoExecution.getMojoDescriptor());
                }
            }
            return mojos;
        }
    
        // Used by m2e but will be removed, really.
        @Deprecated
        public List<MojoExecution> getExecutions() {
            return getMojoExecutions();
        }
    
        public int size() {
            return planItem.size();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  7. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchainManager#logger</exclude>
                  <!-- Remove plexus utils -->
                  <exclude>org.apache.maven.project.ProjectSorter#getDAG():METHOD_REMOVED</exclude>
                  <!-- classes moved to maven-compat -->
                  <exclude>org.apache.maven.plugin.PluginManager</exclude>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            this.projectMap = projectMap;
        }
    
        /** This is a provisional method and may be removed */
        public List<MavenProject> getAllProjects() {
            return allProjects;
        }
    
        /** This is a provisional method and may be removed */
        public void setAllProjects(List<MavenProject> allProjects) {
            this.allProjects = allProjects;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            // disown the parent
    
            // copy fields
            file = project.file;
            basedir = project.basedir;
    
            // don't need a deep copy, they don't get modified or added/removed to/from - but make them unmodifiable to be
            // sure!
            if (project.getDependencyArtifacts() != null) {
                setDependencyArtifacts(Collections.unmodifiableSet(project.getDependencyArtifacts()));
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

     * <tr><td><code>*</code></td>                 <td></td>               <td>system properties</td></tr>
     * </table>
     * <i>Notice:</i> <code>reports</code> was supported in Maven 2.x but was removed in Maven 3
     *
     * @see MavenSession
     * @see MojoExecution
     */
    public class PluginParameterExpressionEvaluator implements TypeAwareExpressionEvaluator {
        private MavenSession session;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Oct 17 17:55:08 GMT 2023
    - 16.7K bytes
    - Viewed (0)
Back to top