Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for gwon (0.21 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java

                    }
                }
                if (idx < tok.length) {
                    qualifier = tok[idx++];
                    fallback = isDigits(qualifier);
                }
    
                // string tokenizer won't detect these and ignores them
                if (part1.contains("..") || part1.startsWith(".") || part1.endsWith(".")) {
                    fallback = true;
                }
    
                if (fallback) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Nov 17 15:50:51 GMT 2023
    - 6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                plugin = new Plugin();
                plugin.setGroupId(tok[0]);
                plugin.setArtifactId(tok[1]);
                plugin.setVersion(tok[2]);
                goal = tok[3];
    
                // This won't be valid, but it constructs something easy to read in the error message
                for (int idx = 4; idx < tok.length; idx++) {
                    goal += ":" + tok[idx];
                }
            } else if (numTokens == 3) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        /**
         * All dependencies that this project has, including transitive ones. Contents are lazily populated, so depending on
         * what phases have run dependencies in some scopes won't be included. e.g. if only compile phase has run,
         * dependencies with scope test won't be included.
         *
         * @return {@link Set} &lt; {@link Artifact} &gt;
         * @see #getDependencyArtifacts() to get only direct dependencies
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

            // workspace
            if (source == null) {
                try {
                    source = container.lookup(ArtifactMetadataSource.class);
                } catch (ComponentLookupException e) {
                    // won't happen
                }
            }
    
            if (listeners == null) {
                listeners = new ArrayList<>();
    
                if (logger.isDebugEnabled()) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 24.8K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      artifacts from invocation to invocation.
    
    Maven Modifications
    
    * DefaultPluginManager
    
      s/getMojoConfiguration()/getConfiguration()/g
    
      That should re-enable usage of mojo configuration. Ideally, we won't need any
      of the code that references this method, since the container should provide
      some way of recontextualizing the mojo, and all we would need to do is inject
      POM configuration via the lookup method or something.
    
    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)
  6. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

                        ArtifactVersion selected = artifact.getSelectedVersion();
                        // MNG-2123: null is a valid response to getSelectedVersion, don't
                        // assume it won't ever be.
                        if (selected != null) {
                            artifact.selectVersion(selected.toString());
                        } else {
                            throw new OverConstrainedVersionException(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.6K bytes
    - Viewed (0)
Back to top