Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,562 for Done (0.18 sec)

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

    /**
     * Do not use!
     * <p>
     * Should only be implemented by DebugResolutionListener.  Remove this
     * when the ResolutionListener interface deprecation of the manageArtifact
     * method (and the [yet to be done] addition of these methods to that
     * interface) has had a chance to propagate to all interested plugins.
     */
    @Deprecated
    public interface ResolutionListenerForDepMgmt {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/shared/mvnvalidate

    while [ -h "$PRG" ] ; do
      ls=`ls -ld "$PRG"`
      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
      else
        PRG="`dirname "$PRG"`/$link"
      fi
    done
    
    saveddir=`pwd`
    
    MAVEN_HOME=`dirname "$PRG"`/..
    
    # make it fully qualified
    MAVEN_HOME=`cd "$MAVEN_HOME" && pwd`
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat May 23 07:59:32 GMT 2020
    - 418 bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

            Iterator<Restriction> i1 = r1.iterator();
            Iterator<Restriction> i2 = r2.iterator();
            Restriction res1 = i1.next();
            Restriction res2 = i2.next();
    
            boolean done = false;
            while (!done) {
                if (res1.getLowerBound() == null
                        || res2.getUpperBound() == null
                        || res1.getLowerBound().compareTo(res2.getUpperBound()) <= 0) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml

        <url>https://svn.apache.org/viewvc/spacy%20path</url>
      </scm>
      <issueManagement>
        <system>none</system>
        <url>https://issues.apache.org/spacy%20path</url>
      </issueManagement>
      <ciManagement>
        <system>none</system>
        <url>https://ci.apache.org/spacy%20path</url>
      </ciManagement>
      <distributionManagement>
        <repository>
          <id>dist</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                                        message);
                            }
                        } else {
                            done = true;
                        }
                    } else {
                        done = true;
                    }
                }
            } while (!done);
    
            ProjectRelocation rel = new ProjectRelocation();
            rel.project = project;
            rel.pomArtifact = pomArtifact;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 30.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

                    Collections.unmodifiableMap(lifecycles.stream().collect(toMap(Lifecycle::getId, identity())));
        }
    
        /**
         * Plexus: Populates the lifecycle map from the injected list of lifecycle mappings (if not already done).
         */
        private synchronized void initLifecycleMap() {
            if (lifecycleMap == null) {
                lifecycleMap = new HashMap<>();
    
                if (lifecycles != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:46:36 GMT 2024
    - 4K bytes
    - Viewed (0)
  7. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

        String SELF_COMBINATION_REMOVE = "remove";
    
        /**
         * In case of complex XML structures, combining can be done based on id.
         */
        String ID_COMBINATION_MODE_ATTRIBUTE = "combine.id";
    
        /**
         * In case of complex XML structures, combining can be done based on keys.
         * This is a comma separated list of attribute names.
         */
        String KEYS_COMBINATION_MODE_ATTRIBUTE = "combine.keys";
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Nov 27 23:11:34 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPathTranslator.java

                File file = new File(path);
                if (file.isAbsolute()) {
                    // path was already absolute, just normalize file separator and we're done
                    result = file.getPath();
                } else if (file.getPath().startsWith(File.separator)) {
                    // drive-relative Windows path, don't align with project directory but with drive root
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      If these mojos are to be first-class components, the configuration from these
      various sources must be consolidated and injected using the container.
    
      Currently, mojo configuration is done externally to the container, in the
      DefaultPluginManager in the maven-core API. In order to get from here to
      there, we need to do several things to add capability to the default
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 30 15:20:35 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/configuration-management.apt

     that currently we have information about a project scattered across the project.xml and the
     various properties files. What needs to be done is to encapsulate all of this in the POM.
    
     Typically users parameterize the use of plugins, or have custom values like ${user.name}
     for use in elements like the <developerConnection/>. It would be idea if we
    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)
Back to top