Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for printf (2.08 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                        if (entry.equals(v)) { // unless it's an entry point.
                            // currently processing the entry point - it should not have any entry incident edges
                            res.getEntry().getMd().setWhy("This is a graph entry point. No links.");
                        } else {
                            // System.out.println("--->"+v.getMd().toDomainString()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java

     */
    package org.apache.maven.api;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * An artifact points to a resource such as a jar file or war application.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface Artifact {
    
        /**
         * Returns a unique identifier for this artifact.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 15:48:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

        /**
         * Gets the identifier of the project that could not be built. The general format of the identifier is {@code
         * <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the exception
         * is thrown so this information is merely meant to assist the user.
         *
         * @return the identifier of the project or an empty string if not known, never {@code null}
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

    /**
     * Allows core extensions to participate in Maven build session lifecycle.
     *
     * All callback methods (will) follow beforeXXX/afterXXX naming pattern to
     * indicate at what lifecycle point it is being called.
     *
     * @see <a href="https://maven.apache.org/examples/maven-3-lifecycle-extensions.html">example</a>
     * @see <a href="https://issues.apache.org/jira/browse/MNG-4224">MNG-4224</a>
     * @since 3.0-alpha-3
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

         * be able to accept <code>relative</code> parameter values that
         * <ul>
         * <li>use either / or \ file path separator,</li>
         * <li>have .. parent directory references,</li>
         * <li>point either at file or directory.</li>
         * </ul>
         *
         * @param relative is the path of the requested source relative to this source
         * @return related source or <code>null</code> if no such source
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * (if applicable). This process will essentially remove duplicate repositories by merging them into one equivalent
         * repository. It is worth to point out that merging does not simply choose one of the input repositories and
         * discards the others but actually combines their possibly different policies.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

            artifact.setResolved(true);
        }
    
        /** {@inheritDoc} */
        public File getFile() {
            // we need to get the latest file for the project, not the artifact that was created at one point in time
            return project.getArtifact().getFile();
        }
    
        /** {@inheritDoc} */
        public String getGroupId() {
            return artifact.getGroupId();
        }
    
        /** {@inheritDoc} */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            assertPluginDescriptor( mojoDescriptor, "org.apache.maven.plugins", "maven-surefire-plugin", "2.4.2" );
    
            System.out.println( session.getCurrentProject().getBuild().getPluginsAsMap() );
    
            Xpp3Dom configuration = (Xpp3Dom) session.getCurrentProject().getBuild().getPluginsAsMap().get( plugin.getKey() ).getExecutions().get( 0 ).getConfiguration();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    if (parent.getRelativePath() == null || parent.getRelativePath().isEmpty()) {
                        buffer.append(" and 'parent.relativePath' points at no local POM");
                    } else {
                        buffer.append(" and 'parent.relativePath' points at wrong local POM");
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

            }
            return artifactGeneratorFactories;
        }
    
        protected Map<String, ArtifactGeneratorFactory> createArtifactGeneratorFactories() {
            // by default none, this is extension point
            return new HashMap<>();
        }
    
        private Map<String, ArtifactDecoratorFactory> artifactDecoratorFactories;
    
        public final Map<String, ArtifactDecoratorFactory> getArtifactDecoratorFactories() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 43.7K bytes
    - Viewed (0)
Back to top