Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for parts (0.18 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

            Artifact s;
            String[] parts = coord.split(":");
            switch (parts.length) {
                case 3:
                    s = new DefaultArtifact(parts[0], parts[1], "*", "*", parts[2]);
                    break;
                case 4:
                    s = new DefaultArtifact(parts[0], parts[1], "*", parts[2], parts[3]);
                    break;
                case 5:
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  2. maven-core/src/main/mdo/extension.mdo

      <id>extension</id>
      <name>ExtensionDescriptor</name>
      <description><![CDATA[
        Extension descriptor, stored in <code>META-INF/maven/extension.xml</code> in an extension's jar artifact to
        precisely control parts of the extension and dependencies to expose in the API class loader.
        Maven uses Plexus Classworlds to build the class loader hierarchy, therefore some concepts used in this extensions
        stem from Plexus Classworlds originally.
    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/site/apt/offline-mode.apt

      carries out some analysis or other interaction with a SCM system
      will likely be unavailable when in offline mode.
    
    
    * Implications for Subsystems
    
    ** Maven-Wagon
    
      Parts of Wagon will continue to function normally. These include:
    
      * The file wagon, provided the referenced location is on a local
        filesystem.
    
        It is not possible to determine whether a file-based location will
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

             * <p>Split the expression into parts, tokenized on the dot ('.') character. Then,
             * starting at the root object contained in this value source, apply each part
             * to the object graph below this root, using either 'getXXX()' or 'isXXX()'
             * accessor types to resolve the value for each successive expression part.
             * Finally, return the result of the last expression part's resolution.</p>
             *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

        on the date Contributor first distributes or otherwise makes the
        Modifications available to a third party.
    
        (d) Notwithstanding Section 2.2(b) above, no patent license is
        granted: (1) for any code that Contributor has deleted from the
        Contributor Version; (2) for infringements caused by: (i) third
        party modifications of Contributor Version, or (ii) the combination
    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)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public java.util.Set entrySet(); public boolean equals(Object); public int hashCode(); } org/codehaus/plexus/util/cli/Commandline$Argument.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Argument { private String[] parts; public void Commandline$Argument(); public void setValue(String); public void setLine(String); public void setFile(java.io.File); public String[] getParts(); } org/codehaus/plexus/util/cli/Commandline$Marker.class package org.codehaus.plexus.util.cli;...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 164.6K bytes
    - Viewed (0)
  7. maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    public java.util.Set entrySet(); public boolean equals(Object); public int hashCode(); } org/codehaus/plexus/util/cli/Commandline$Argument.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Argument { private String[] parts; public void Commandline$Argument(); public void setValue(String); public void setLine(String); public void setFile(java.io.File); public String[] getParts(); } org/codehaus/plexus/util/cli/Commandline$Marker.class package org.codehaus.plexus.util.cli;...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 164.6K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

    /**
     * Wraps an active project instance to be able to receive updates from its artifact without affecting the original
     * attributes of this artifact.
     *
     * TODO I think this exposes a design flaw in that the immutable and mutable parts of an artifact are in one class and
     * should be split. ie scope, file, etc depend on the context of use, whereas everything else is immutable.
     */
    @Deprecated
    public class ActiveProjectArtifact implements Artifact {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                for (String modelId : result.getModelIds()) {
                    project.setInjectedProfileIds(modelId, getProfileIds(result.getActivePomProfiles(modelId)));
                }
    
                //
                // All the parts that were taken out of MavenProject for Maven 4.0.0
                //
    
                project.setProjectBuildingRequest(request);
    
                // pluginArtifacts
                Set<Artifact> pluginArtifacts = new HashSet<>();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    byte[] discardNonBase64(byte[]); public byte[] encode(byte[]); static void <clinit>(); } org/codehaus/plexus/util/cli/Commandline$Argument.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Argument { private String[] parts; public void Commandline$Argument(); public void setValue(String); public void setLine(String); public void setFile(java.io.File); public String[] getParts(); } org/codehaus/plexus/util/xml/pull/XmlSerializer.class package org.codehaus.plexus.util.xml.pull;...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160K bytes
    - Viewed (0)
Back to top