Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for greeting (0.2 sec)

  1. CONTRIBUTING.md

    + [Apache Maven JIRA project page](https://issues.apache.org/jira/projects/MNG/)
    + [Contributor License Agreement][cla]
    + [General GitHub documentation](https://help.github.com/)
    + [GitHub pull request documentation](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                // MNG-5368: Log a message instead of returning 'null' silently.
                this.logger.error(
                        String.format(
                                "Invalid version specification '%s' creating dependency artifact '%s'.", d.getVersion(), d),
                        e);
                return null;
            }
    
            Artifact artifact = artifactFactory.createDependencyArtifact(
                    d.getGroupId(),
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java

         *
         * @return The remote repositories to use, never {@code null}.
         */
        List<RemoteRepository> getRepositories();
    
        /**
         * Sets the remote repositories to use. Note: When creating a request from a project, be sure to use the
         * plugin repositories and not the regular project repositories.
         *
         * @param repositories The remote repositories to use.
         * @return This request, never {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactoryRequest.java

    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.NotThreadSafe;
    
    import static org.apache.maven.api.services.BaseRequest.nonNull;
    
    /**
     * A request for creating a {@link ArtifactCoordinate} object.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface ArtifactCoordinateFactoryRequest {
    
        @Nonnull
        Session getSession();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 10:30:20 GMT 2023
    - 7.4K bytes
    - Viewed (0)
  5. LICENSE

          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 11 20:39:30 GMT 2013
    - 11.1K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

                            Collections.emptyList());
                } catch (InvalidVersionSpecificationException e) {
                    throw new ArtifactMetadataRetrievalException("Invalid version creating artifacts", e, artifact);
                }
            }
    
            private String getKey(Artifact artifact) {
                return artifact.getDependencyConflictId();
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblemCollector.java

     * it delegates to other components that potentially encounter problems. Then, the problem reporter can focus on
     * providing a simple error message, leaving the donkey work of creating a nice model problem to this component.
     *
     */
    public interface ModelProblemCollector {
    
        /**
         * The collected problems.
         * @return a list of model problems encountered, never {@code null}
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/conf/toolchains.xml

     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -gt /path/to/global/toolchains.xml
     |
     | The sections in this sample file are intended to give you a running start at
     | getting the most out of your Maven installation.
     |-->
    <toolchains xmlns="http://maven.apache.org/TOOLCHAINS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 3.5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

     * <p>
     * It provides information about the file type (or extension) of the associated artifact,
     * its default classifier, and how the artifact will be used in the build when creating
     * class-paths or module-paths.
     * <p>
     * For example, the type {@code java-source} has a {@code jar} extension and a
     * {@code sources} classifier. The artifact and its dependencies should be added
     * to the build path.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 29 09:32:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                legacySupport.setSession(session);
    
                // NOTE: DuplicateArtifactAttachmentException is currently unchecked, so be careful removing this try/catch!
                // This is necessary to avoid creating compatibility problems for existing plugins that use
                // MavenProjectHelper.attachArtifact(..).
                try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 10.9K bytes
    - Viewed (0)
Back to top